[ Launch: firstcollision ] d4d9993ed18e1ae24584 by omniwired
๐
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
#!/bin/sh | |
#CPU | |
TARGET_GPU='83000'; | |
TARGET_CPU='83000'; | |
SENSOR_DATA=$(more /sys/class/drm/card0/device/drm/card0/device/hwmon/hwmon1/temp1_input); | |
#CPU | |
cpu_temp[0]=$(more /sys/bus/platform/devices/coretemp.0/temp2_input); | |
cpu_temp[1]=$(more /sys/bus/platform/devices/coretemp.0/temp3_input); | |
cpu_temp[2]=$(more /sys/bus/platform/devices/coretemp.0/temp4_input); | |
cpu_temp[3]=$(more /sys/bus/platform/devices/coretemp.0/temp5_input); |
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
{ | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
"default_line_ending": "unix", | |
"font_face": "Ubuntu Mono", | |
"font_options": | |
[ | |
"subpixel_antialias" | |
], | |
"font_size": 18.0, | |
"highlight_line": true, |
[ Launch: fireworks ] 26e97a21b360f5d08131 by omniwired
[ Launch: trigonometric bars ] 769430d6258ff107d6f8 by omniwired
[ Launch: atom ] f88367fa08647a14a8ad by omniwired
[ Launch: atom ] 69159627c9f6f4e0cac9 by omniwired[ Launch: atom ] f88367fa08647a14a8ad by omniwired
[ Launch: math clock ] 6e47f69f89e02ae18ee4 by omniwired
I hereby claim:
- I am omniwired on github.
- I am omniwired (https://keybase.io/omniwired) on keybase.
- I have a public key whose fingerprint is 1D68 9218 A03C 5BAD FE14 0A2A 6657 A829 3E11 373D
To claim this, I am signing this object:
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/python | |
target = "/Applications/Spotify.app/Contents/MacOS/Spotify" | |
with open(target) as infile: | |
bytes = infile.read() | |
with open("./Spotify", "wb") as backup: | |
backup.write(bytes) | |
fixed = bytes.replace("VACUUM;", "xxxxxx;") | |
with open (target, "wb") as outfile: | |
outfile.write(fixed) |
OlderNewer