I hereby claim:
- I am gschizas on github.
- I am gschizas (https://keybase.io/gschizas) on keybase.
- I have a public key ASD4uKtSwtlHfeC5nRdobKjAsWo_Eh7qGd7PWyTmtpYbZAo
To claim this, I am signing this object:
| [ | |
| { | |
| "backcolor": "#403030", | |
| "name": "Amstrad CPC 664" | |
| }, | |
| [ | |
| { | |
| "x": 17.25, | |
| "c": "#90A0C0", | |
| "t": "#101010", |
| [ | |
| { | |
| "backcolor": "", | |
| "name": "Amstrad CPC 464", | |
| "background": { | |
| "name": "PBT Black", | |
| "style": "background-image: url('/bg/plastic/pbt-black.png');" | |
| } | |
| }, | |
| [ |
| [ | |
| { | |
| "name": "Amstrad CPC 6128", | |
| "background": { | |
| "name": "PBT Black", | |
| "style": "background-image: url('/bg/plastic/pbt-black.png');" | |
| }, | |
| "pcb": false | |
| }, | |
| [ |
I hereby claim:
To claim this, I am signing this object:
| Import-Module WebAdministration | |
| # Get the latest certificate in store that applies to my site | |
| $cert = (Get-ChildItem Cert:\LocalMachine\My | | |
| Where-Object {$_.Subject.Contains('*.example.com')} | | |
| Sort-Object -Descending {[System.DateTime]::Parse($_.GetExpirationDateString())} | | |
| Select-Object -First 1) | |
| Set-Location IIS:\Sites |
| # coding: utf-8 | |
| import urllib.parse | |
| import praw | |
| import configparser | |
| import datetime | |
| import http.server | |
| import webbrowser | |
| from dateutil.parser import parse as dateparser |
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| import sys | |
| import requests | |
| import struct | |
| import uuid | |
| def java_uuid_hash_code(uuid): | |
| leastSigBits, mostSigBits = struct.unpack('>QQ', uuid.bytes) | |
| l1 = leastSigBits & 0xFFFFFFFF |
| #!/usr/bin/env python3 | |
| import struct | |
| import re | |
| class Wad(object): | |
| """Encapsulates the data found inside a WAD file""" | |
| def __init__(self, wadFile): | |
| """Each WAD files contains definitions for global attributes as well as map level attributes""" |
| Function HexDump(text) | |
| hexdigits = "" | |
| plaintext = "" | |
| output = "" | |
| For i = 1 to Len(text) | |
| current = Mid(text, i, 1) | |
| hexdigits = hexdigits & Right("0" & Hex(Asc(current)), 2) & " " | |
| if Asc(current) >= 32 And Asc(current) < 127 Then | |
| plaintext = plaintext & current | |
| Else |
| import win32clipboard | |
| # set clipboard data | |
| win32clipboard.OpenClipboard() | |
| win32clipboard.SetClipboardText('testing 123') | |
| win32clipboard.CloseClipboard() | |
| # get clipboard data | |
| win32clipboard.OpenClipboard() | |
| data = win32clipboard.GetClipboardData() |