Skip to content

Instantly share code, notes, and snippets.

View GlassGhost's full-sized avatar

GlassGhost GlassGhost

View GitHub Profile
@GlassGhost
GlassGhost / game.txt
Last active December 28, 2015 19:09
game
ς
α β γ δ ε ζ η θ ι κ λ μ ν ξ ο π ρ σ τ υ φ χ ψ ω
Α Β Γ Δ Ε Ζ Η Θ Ι Κ Λ Μ Ν Ξ Ο Π Ρ Σ Τ Υ Φ Χ Ψ Ω
l e a e p e t h o a a u u i m i h i a p h h s m
p t m l s t a e t p m i o g u s i i i e
h a m t i a t a p b c m i g
a a a l a a d r a l a
o a o o
n n n
owner@UBUNTU-K53TA:~$ bash '/home/owner/Documents/GitDeb/tcc.sh'
38 extracted
Note: checking out 'release_0_9_26'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by performing another checkout.
If you want to create a new branch to retain commits you create, you may
@GlassGhost
GlassGhost / directions.txt
Created April 28, 2014 01:42
frontline recorder
save the "movie_20001.dmx" in the \Steam\SteamApps\common\Team Fortress 2\tf\replay\client\movies\ folder
#EXTM3U
#EXTINF:371,Tool - Wings For Marie (Pt 1)
./Tool - Studio Discography 1991 - 2006 [FLAC] [h33t] - Kitlope/Tool - 10 000 Days 2006/03 - Wings For Marie (Pt 1).flac
#EXTINF:224,The Black Keys - Gold On The Ceiling
./The Black Keys-Gold On The Ceiling.mp3
#EXTINF:372,Bird Peterson - Goro's Theme
./05 Goro's Theme.m4a
#EXTINF:241,Sunna - Power Struggle
./Sunna-Power Struggle.mp3
#EXTINF:183,Mikael Karlsson - Snowy Mountains
@GlassGhost
GlassGhost / test.html
Last active August 29, 2015 14:06
test.html
<!doctype html><html lang="en"><head><meta charset="utf-8"><title>test</title>
<!--______________________________________________Built-In Scripts and Styles-->
<style type="text/css"></style>
<script language=javascript type='text/javascript'></script>
<!--________________________________________________Scripts and Styles by URL-->
<link rel="stylesheet" type="text/css" href="./katex/katex.min.css">
<script src="./katex/katex.min.js" type="text/javascript"></script>
<!--____________________________________________________________--></head><body>
<tex>c = \pm\sqrt{a^2 + b^2}</tex><br/>
@GlassGhost
GlassGhost / derives.ss
Created October 24, 2014 04:33
The simplifier from the 1986 SICP Video Lecture 4a
#!/usr/bin/env racket
#lang planet neil/sicp
;SICP lang module documentation http://goo.gl/BTQetA
(define mapcar map)(define (atom? x) (not (pair? x)))(define user-initial-environment (scheme-report-environment 5))
;SICP Book: http://goo.gl/AmyAhS SICP Video Lectures: http://goo.gl/3uwWXK
(define (display-all . vs) (for-each display vs))
;_______________________________________________________________________________
;work in progress to get same affect as the above for other schemes like gambit
;#lang r5rs
;(define mapcar map)(define (atom? x) (not (pair? x)))(define user-initial-environment (scheme-report-environment 5))
@GlassGhost
GlassGhost / derive.ss
Created October 27, 2014 02:56
SICP Simplifier
#!/usr/bin/env racket
#lang r5rs
;#!/usr/bin/env scheme-r5rs
;R5RS: goo.gl/z6HMWx SICP-Book: goo.gl/AmyAhS SICP-Video-Lectures: goo.gl/3uwWXK
(define (display-all . vs) (for-each display vs))
;______________________________Work in progress to get SICP code to work in R5RS
;provides the following for compatibilty with SICP
;λ user-initial-environment mapcar atom? true false inc dec nil identity
;the-empty-stream stream-null? cons-stream
(define-syntax λ (syntax-rules () ((_ param body ...) (lambda param body ...))))
@GlassGhost
GlassGhost / sha12.scm
Last active August 29, 2015 14:10 — forked from cky/sha12.scm
;;;; SHA-1 and SHA-2 implementations.
;;;; Uses R7RS bytevector and byte I/O interfaces.
;;;; Requires SRFIs 1, 26, 43, and 60.
;;; Auxiliary definitions to avoid having to use giant tables of constants.
(define primes80 '(2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73
79 83 89 97 101 103 107 109 113 127 131 137 139 149 151 157
163 167 173 179 181 191 193 197 199 211 223 227 229 233 239
241 251 257 263 269 271 277 281 283 293 307 311 313 317 331
@GlassGhost
GlassGhost / DRIVERS
Last active August 29, 2015 14:17 — forked from anonymous/lshw.txt
Chipset:
http://support.amd.com/en-us/download/mobile?os=Windows%207%20-%2064
Graphics:
http://support.amd.com/en-us/download/mobile?os=Windows%207%20-%2064
Touchpad:
http://www.synaptics.com/en/drivers.php
RTL8188EE Wireless Network Adapter:
' VBS Script to get the Windows(R) 7 Product Key from a PC's registry.
'
' Save the VBScript as "getWin7Key.vbs" somewhere on your Windows7 PC.
' Now, when you double-click the local script file an alertbox pops up
' displaying the product key stored in the machine's Windows registry.
'
'http://www.howtogeek.com/124286/how-to-uninstall-your-windows-product-key-before-you-sell-your-pc/
'http://goo.gl/x3eO0x
Set WshShell = WScript.CreateObject("WScript.Shell")