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
winget install nordvpn Bitwarden.Bitwarden Obsidian.Obsidian Microsoft.VisualStudioCode Schniz.fnm Beeper.Beeper JanDeDobbeleer.OhMyPosh Microsoft.PowerToys 7zip.7zip Hugo.Hugo.Extended Inkscape.Inkscape GIMP.GIMP.3 dotPDN.PaintDotNet Spotify.Spotify Evolus.Pencil IrfanSkiljan.IrfanView IrfanSkiljan.IrfanView.PlugIns KDE.Krita WinDirStat.WinDirStat Ngrok.Ngrok StefansTools.grepWin WinMerge.WinMerge vim.vim Microsoft.SQLServer.2022.Developer Microsoft.SQLServerManagementStudio Microsoft.PowerShell Microsoft.Sysinternals.ProcessExplorer StefansTools.grepWin --accept-source-agreements --silent --accept-package-agreements |
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
.tabbrowser-tab { | |
visibility: collapse; | |
} | |
.titlebar-button { | |
height: 27px !important; | |
} | |
#nav-bar { | |
margin-top: -42px; | |
margin-right: 140px; |
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
namespace minimal; | |
public void Main() | |
{ | |
Console.WriteLine("test"); | |
} |
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
{"version":1,"resource":"file:///c%3A/st/src/Directory.Packages.props","entries":[{"id":"cSa5.props","timestamp":1661369240480}]} |
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
#$GitPromptSettings.DefaultPromptWriteStatusFirst = $true | |
#$GitPromptSettings.DefaultPromptBeforeSuffix.Text = '`n' | |
#$GitPromptSettings.DefaultPromptEnableTiming = $true | |
#$GitPromptSettings.DefaultPromptPrefix = "" | |
New-Alias -Name vi -Value 'C:\Program Files (x86)\vim\vim80\vim.exe' | |
New-Alias -Name vim -Value 'C:\Program Files (x86)\vim\vim80\vim.exe' | |
# Include this if you like a vim command line experience |
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
{ | |
"$help": "https://aka.ms/terminal-documentation", | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"actions": [], | |
"defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
"profiles": | |
{ | |
"defaults": | |
{ | |
"font": |
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
$wc = New-Object System.Net.WebClient | |
For ($i=1; $i -le 100; $i++) { | |
$url = "https://membros.myvtmi.im/qrcode/http/cerimonias.myvtmi.im/cerimonia-$i" | |
$wc.DownloadFile($url, "c:\tmp\cerimonia-$i.png") | |
} |
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
choco install -y irfanview 7zip.install checksum firacode slack paint.net inkscape gimp irfanview-shellextension irfanviewplugins spotify nuget.commandline soapui pencil krita windirstat ngrok | |
choco install -y archive archiver grepwin procexp winmerge vim bat powertoys evernote nodejs.install audacity zoom-client powershell-core sql-server-management-studio zoomit visualstudio2019community | |
choco install visualstudiocode-insiders --pre -y |
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
{"lastUpload":"2021-07-10T03:58:02.482Z","extensionVersion":"v3.4.3"} |
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
create table #test_data(col1 varchar(100), col2 varchar(100)) | |
declare @i int = 0 | |
while (@i < 1000000) | |
begin | |
insert into #test_data(col1, col2) | |
values ('col1_' + right('00000000' + cast(@i as varchar(9)), 9), CONVERT(varchar(255), NEWID())) | |
set @i = @i + 1 | |
end |
NewerOlder