I hereby claim:
- I am neilrobbins on github.
- I am neilrobbins (https://keybase.io/neilrobbins) on keybase.
- I have a public key ASAKOSp_oy9wgl97yNBGB_z6JigdNoyDV7-O183TUwD_wwo
To claim this, I am signing this object:
| ORG=PUT_THE_ORG_NAME_HERE;ACCESS_TOKEN=PUT_THE_TOKEN_HERE; curl --header "PRIVATE-TOKEN: $ACCESS_TOKEN" "https://gitlab.com/api/v4/groups/$ORG/projects" | sed 's/,/\'$'\n''/g' | grep -e 'ssh_url_to_repo*' | cut -d \" -f 4 | xargs -L1 git clone |
I hereby claim:
To claim this, I am signing this object:
| ORG=PUT_THE_ORG_NAME_HERE;PAGE=1;ACCESS_TOKEN=PUT_THE_TOKEN_HERE; curl "https://api.github.com/orgs/$ORG/repos?page=$PAGE&per_page=100&access_token=$ACCESS_TOKEN" | grep -e 'git_url*' | cut -d \" -f 4 | xargs -l1 git clone |
| twistd -n web -p 8888 --path . |
| Put the commands to execute in here |
| public abstract class Alias | |
| { | |
| protected readonly string Value; | |
| protected Alias(string value) | |
| { | |
| if (value == null) throw new ArgumentNullException("value"); | |
| if (string.Empty.Equals(value, StringComparison.InvariantCultureIgnoreCase)) | |
| throw new ArgumentException("Value must not be empty.", "value"); | |
| Value = value; |
| -- DROP THE CONSTRAINTS | |
| DECLARE @database nvarchar(50); | |
| DECLARE @schemaName nvarchar(50); | |
| DECLARE @sql nvarchar(300); | |
| SET @database = ''; -- set the catalog name | |
| SET @schemaName = ''; -- set the database name | |
| SELECT @sql = 'USE ' + @database +';'; | |
| EXEC sp_executesql @sql; |
| public static void M(string[] args) | |
| { | |
| var builder = new VerticaConnectionStringBuilder | |
| { | |
| Host = "54.83.238.208", | |
| Database = "Test", | |
| User = "dbadmin", | |
| Password = "password", | |
| Port = 5433, | |
| Pooling = true, |
| public class WeekKey | |
| { | |
| private int value; | |
| public static implicit operator int(WeekKey weekKey) { return weekKey.value; } | |
| public static implicit operator WeekKey(int weekKey) { return new WeekKey { value = weekKey }; } | |
| } |
| #==== change text file end-of-line from DOS (Windows) to Linux ====# | |
| find . -name "*.sh" -exec sed -i 's/\r\+$//g' '{}' \; | |
| #==== hardware/system info ==== | |
| numactl --hardware | |
| dmesg |