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
Open Powershell - 3 different ways: | |
Get-ChildItem 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP' -Recurse | Get-ItemProperty -Name Version,Installpath -EA 0 | Where { $_.PSChildName -Match '^(?!S)\p{L}'} | Select PSChildName, Version, Installpath | |
dotnet --list-sdks | |
dotnet --list-runtimes |
This file has been truncated, but you can view the full file.
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
AA | |
AAA | |
Aachen | |
Aachener | |
Aachenerin | |
Aachenerinnen | |
Aachenern | |
Aacheners | |
Aachens | |
Aal |
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
https://golem.de/*/sp_*_rc.jpg | |
||golem.de/*/sp_*_rc.jpg | |
https://www.welect.de | |
*.snapshotAd.* | |
onvista.de##.snapshotAd.* | |
netzwelt.de##.as-oil-content-overlay | |
netzwelt.de##.as-oil__intro-txt |
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
#ScreenWidth = 1024 ; Feel free to change this to see the pixel filling speed ! | |
#ScreenHeight = 768 | |
If InitSprite() = 0 Or InitKeyboard() = 0 | |
MessageRequester("Error", "DirectX is needed.",0) | |
EndIf | |
Structure Pixel | |
Pixel.l |
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
1 PP=2 | |
10 HOME | |
12 PRINT | |
20 A$ = "0123456789ABCDEF" | |
30 FOR I = 1 TO 19 | |
31 IF I = 9 THEN GOSUB 1000 | |
40 L$ = "" | |
45 FOR J = 1 TO 9 | |
50 L1 = INT ( RND (1) * 15 ) + 1: L2 = INT ( RND (1) * 15 ) + 1 | |
60 L$ = L$ + MID$ (A$,L1,1) + MID$(A$,L2,1) + ": " |
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
; AutoHotKey Script | |
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
#Persistent | |
Hotkey, #c, CloseThis ; Enable Windows + C Hotkey | |
SetTimer, Klicker, 2000 | |
return |
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
echo run as admin | |
cd / | |
powercfg /? | |
powercfg -energy -output c:\energy.html |
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
using System; | |
using System.Security.Cryptography; | |
using System.Text; | |
using RestSharp; | |
using RestSharp.Authenticators; | |
namespace httpsPriceParser | |
{ | |
class Program | |
{ |
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
#!/usr/bin/awk -f | |
# Authors: @esperlu, @artemyk, @gkuenning, @dumblob | |
# FIXME detect empty input file and issue a warning | |
function printerr( s ){ print s | "cat >&2" } | |
BEGIN { | |
if( ARGC != 2 ){ |
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
using System; | |
using System.IO; | |
using System.Linq; | |
namespace SQLdumpParser | |
{ | |
class Program | |
{ | |
//see https://www.mysqltutorial.org/mysql-sample-database.aspx |
NewerOlder