Skip to content
View ambiguoustexture's full-sized avatar
πŸͺœ
πŸͺœ

Block or report ambiguoustexture

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
ambiguoustexture/README.md

Hi there, I'm ambiguousStr πŸ‘‹

  • πŸ”­ I’m currently working on automated/low-latency trading as a always junior system developer.
  • 😟 Experiencing endless imposter syndrome still, and even worse.
Other      7 hrs 53 mins   β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‘β–‘β–‘β–‘β–‘   80.37 %
Bash       36 mins         β–ˆβ–“β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘   06.10 %
Python     35 mins         β–ˆβ–“β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘   06.10 %
sh         24 mins         β–ˆβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘   04.11 %
SQL        9 mins          β–’β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘   01.65 %

Pinned Loading

  1. shell script for cropping two-page v... shell script for cropping two-page vertically.
    1
    for file in *.jpg; do
    2
      echo $file
    3
      # identify $file
    4
      # ... 1600x1166 ...
    5
      convert $file -crop 800x1166 $file
  2. RAII In C RAII In C
    1
    [gcc provides a cleanup extension](https://gcc.gnu.org/onlinedocs/gcc/Common-Variable-Attributes.html#Common-Variable-Attributes)
    2
    ```C
    3
    int var_target;
    4
    extern int __attribute__ ((alias ("var_target"))) var_alias;
    5
    ```
  3. make without makefile and two jokes ... make without makefile and two jokes in TCPL
    1
    ```Shell
    2
    > ls 
    3
    dt.c
    4
    > cat dt.c; make dt; ./dt
    5
    #include <stdio.h>
  4. call it by another way call it by another way
    1
    alias dtDS="sudo find ~ -name ".DS_Store" -delete"
    2
    alias rm="trash -v"
    3
    alias ncdu="ncdu --color off"
    4
    alias l="ls -l"
    5
    alias vssh="vagrant up; vagrant ssh"