Skip to content
View nadsella's full-sized avatar
🦛
i'm not a robot
🦛
i'm not a robot

Block or report nadsella

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
nadsella/README.md
  • 👋 Hi, I’m @nadsella
  • 👀 I’m currently working at @cuvva
  • 🌱 I’m currently learning, all things AWS & Go

Pinned Loading

  1. example-laravel-docker-env example-laravel-docker-env Public

    Just an example Laravel app built with docker-compose.

    PHP

  2. Run SQL query and save data into spe... Run SQL query and save data into specified file
    1
    mysql -A -D <db_name> -h <db_host> -u<user> -p -e "<query>"|tail -n +2 > <file_name>
  3. Run SQL using data from specified file Run SQL using data from specified file
    1
    while read -r id0; do
    2
      for num in {1..9}; do read -r id${num}; done;
    3
      mystring=$(for num in {0..9}; do myvar="id$num"; echo -n "${!myvar} "; done|tr ' ' ','|sed -e 's/[,]*$//');
    4
      mysql -A -D <database> -h<host> -u<user> -p<password> -e "UPDATE something in something where id IN ($mystring);";
    5
    done < <filename>
  4. club-bookings club-bookings Public

    Cli app to play around with bookings for the club

    Go

  5. gin-test gin-test Public

    Test repo/code for playing with gin

    Go