Skip to content

Instantly share code, notes, and snippets.

INSERT INTO my_table (col_a, col_b, col_c)
VALUES
(1, 2, 3)
, (4, 5, 6)
, (7, 8, 9)
@ChrisHastieIW
ChrisHastieIW / Atom Installation Error Log
Created February 11, 2020 16:21
Atom Installation Error Log
272> 2017-07-29 17:40:08> Program: Starting Squirrel Updater: --install .
272> 2017-07-29 17:40:08> Program: Starting install, writing to C:\Users\chris\AppData\Local\SquirrelTemp
272> 2017-07-29 17:40:08> Program: About to install to: C:\Users\chris\AppData\Local\Discord
272> 2017-07-29 17:40:08> SingleGlobalInstance: Grabbing lockfile with timeout of 00:00:10
272> 2017-07-29 17:40:08> CheckForUpdateImpl: Reading RELEASES file from C:\Users\chris\AppData\Local\SquirrelTemp
272> 2017-07-29 17:40:08> CheckForUpdateImpl: Remote version 0.0.297 differs from local
272> 2017-07-29 17:40:08> CheckForUpdateImpl: First run or local directory is corrupt, starting from scratch
272> 2017-07-29 17:40:08> ApplyReleasesImpl: Writing files to app directory: C:\Users\chris\AppData\Local\Discord\app-0.0.297
272> 2017-07-29 17:40:11> ApplyReleasesImpl: Moving file C:\Users\chris\AppData\Local\Discord\app-0.0.297\lib\net45\blink_image_resources_200_percent.pak to C:\Users\chris\AppData\Local\Discord\app-0.0.297\blink_image_res
@ChrisHastieIW
ChrisHastieIW / crack.c
Last active December 10, 2019 07:46
In command line, execute Make crack followed by ./crack 50cI2vYkF0YU2
#include <cs50.h>
#include <stdio.h>
#include <crypt.h>
#include <string.h>
int check_inputs(string argv[]);
bool check_salt(string input_string);
bool check_is_alphanumeric(char input_char);
bool check_is_alpha(char input_char);
char * retrieve_salt(string input_string);