This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var path = require('path'); | |
var fs = require('fs'); | |
var nodeModules = {}; | |
fs.readdirSync('node_modules') | |
.filter(function(x) { | |
return ['.bin'].indexOf(x) === -1; | |
}) | |
.forEach(function(mod) { | |
nodeModules[mod] = 'commonjs ' + mod; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for p in $(ls); do cd $p && git fetch && git reset --hard && git clean -xfd && git checkout master && git pull origin master && cd ..; done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
drwxrwxrwx 1 pfrozi pfrozi 4096 Sep 2 17:57 . | |
drwxrwxrwx 1 pfrozi pfrozi 4096 Oct 2 2017 .. | |
-rwxrwxrwx 1 pfrozi pfrozi 624 Sep 2 17:58 .obsolete | |
drwxrwxrwx 1 pfrozi pfrozi 4096 Apr 12 2018 JohnyGeorges.jetjet-theme-1.0.0 | |
drwxrwxrwx 1 pfrozi pfrozi 4096 May 15 17:18 aaron-bond.better-comments-2.0.5 | |
drwxrwxrwx 1 pfrozi pfrozi 4096 Jan 29 2019 abusaidm.html-snippets-0.2.1 | |
drwxrwxrwx 1 pfrozi pfrozi 4096 Jun 27 2018 adamgirton.gloom-0.1.8 | |
drwxrwxrwx 1 pfrozi pfrozi 4096 Sep 2 13:44 ahmadawais.shades-of-purple-5.21.0 | |
drwxrwxrwx 1 pfrozi pfrozi 4096 Feb 12 2019 akamud.vscode-theme-onelight-2.1.0 | |
drwxrwxrwx 1 pfrozi pfrozi 4096 Aug 15 10:33 alefragnani.bookmarks-10.5.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
code --list-extensions | |
code --install-extension ms-vscode.cpptools | |
code --uninstall-extension ms-vscode.csharp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
az account list-locations -o table |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xmllint --schema xsd/ACCC406.xsd ACCC406_92874270_20200331_00004.xml --noout |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery._data( document.getElementById('btnPesquisaPickListGrid'), "events" ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git log --pretty=format:" * [%h](https://gitlab.com/$(git remote get-url origin | sed -r 's/.*\:(.*)\.git.*/\1/')/commit/%h) %s" ^v1.0.2-rc1 HEAD |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dotnet publish -p:VersionPrefix=1.8.4 -p:VersionSuffix=rc1 -c Release -o staging/ Poc.IdentityServer.ApiA.csproj |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# pattern1 | |
HasColumnType\("(.+)\(([0-9]+)\)"\) | |
HasColumnType("$1").HasMaxLength($2) | |
# pattern2 | |
HasColumnType\("(.+)\(([0-9]+)\,\s*([0-9]+)\)"\) | |
HasColumnType("$1").HasPrecision($2, $3) | |
# pattern3 | |
HasColumnType\("(.+)\(\,\s*([0-9]+)\)"\) | |
HasColumnType("$1").HasPrecision(38, $2) |