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
{"pinks-purples-color-group":[ | |
{"name":"pink","code":"#ffc0cb"}, | |
{"name":"lightpink","code":"#ffb6c1"}, | |
{"name":"hotpink","code":"#ff69b4"}, | |
{"name":"deeppink","code":"#ff1493"}, | |
{"name":"palevioletred","code":"#db7093"}, | |
{"name":"mediumvioletred","code":"#c71585"}, | |
{"name":"purpl","code":"colors"}, | |
{"name":"lavender","code":"#e6e6fa"}, | |
{"name":"thistle","code":"#d8bfd8"}, |
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
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" | |
choco feature enable -n=allowGlobalConfirmation | |
choco install googlechrome | |
choco install firefox | |
choco install brave | |
choco install greenshot | |
choco install microsoft-teams | |
choco install python | |
choco install octopustools | |
choco install foxitreader |
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
 | |
$CLSID_KEY = 'HKLM:\SOFTWARE\Classes\CLSID' | |
If ( Test-Path $CLSID_KEY\$clsid) { | |
$name = (Get-ItemProperty -Path $CLSID_KEY\$clsid).'(default)' | |
$dll = (Get-ItemProperty -Path $CLSID_KEY\$clsid\InProcServer32).'(default)' | |
} | |
$name, $dll |
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
BlackArch Linux Former Developers & Contributors - Hall of Fame | |
BlackArch Linux is backed by a team of volunteers. Below are the names of those who helped the project. | |
Former Developers & Contributors | |
Name Nickname E-Mail GPG Key Role | |
Evan Teitelman paraxor [email protected] 0xEA87E4E3 Founder, Developer | |
Javier nrz [email protected] 0x7C03DD86 Developer | |
Ellis Kenyo elken [email protected] 0x0F4093D1 Developer | |
Louis Dion-Marcil ldionmarcil [email protected] 0x0E61E739 Developer | |
Halit Alptekin rapt0r [email protected] 0x17F838F9 Contributor |
- Factorial: https://github.com/theodesp/go-hackerearth/blob/master/basic-programming/Factorial.go
- Get Prime Numbers: https://github.com/theodesp/go-hackerearth/blob/master/basic-programming/PrimeNumber.go
- Count bits in number:
- Transpose Matrix:
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
<!doctype html> | |
<title>Site Maintenance</title> | |
<style> | |
body { text-align: center; padding: 150px; } | |
h1 { font-size: 50px; } | |
body { font: 20px Helvetica, sans-serif; color: #333; } | |
article { display: block; text-align: left; width: 650px; margin: 0 auto; } | |
a { color: #dc8100; text-decoration: none; } | |
a:hover { color: #333; text-decoration: none; } | |
</style> |
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
Type: AWS::CloudFormation::Stack | |
Properties: | |
NotificationARNs: | |
- String | |
Parameters: | |
Key : Value | |
Tags: | |
- Tag | |
TemplateURL: String |
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
for /l %x in (1, 1, 100) do <cmd> | |
# two %s if it's in a batch file | |
for /l %%x in (1, 1, 100) do <cmd> | |
# ultiple commands for each iteration | |
for /l %x in (1, 1, 100) do ( | |
echo %x | |
copy %x.txt z:\whatever\etc |