sudo turbostat --Summary --quiet --show Busy%,Avg_MHz,PkgTmp,PkgWatt --interval 1
This file contains 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
user www-data; | |
worker_processes auto; | |
pid /run/nginx.pid; | |
error_log /var/log/nginx/error.log; | |
include /etc/nginx/modules-enabled/*.conf; | |
events { | |
worker_connections 768; | |
# multi_accept on; | |
} |
This file contains 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
REM*****BASIC***** | |
Sub Main | |
On error resume next | |
Wait 100 | |
oDoc = ThisComponent | |
oSheet = oDoc.CurrentController.ActiveSheet | |
SD = oSheet.createSearchDescriptor() | |
SD.SearchRegularExpression = TRUE |
This file contains 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
REM*****BASIC***** | |
Sub Main | |
On error resume next | |
Wait 100 | |
oDoc = ThisComponent | |
oSheet = oDoc.CurrentController.ActiveSheet | |
SD = oSheet.createSearchDescriptor() | |
SD.SearchRegularExpression = TRUE |
This file contains 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://github.com/conduit/for_you_feed | |
https://github.com/dashboard/changelog | |
https://github.com/conduit/filter | |
https://github.com/dashboard/recent-activity |
This file contains 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
GIF89a/*<svg/onload=alert(1)>*/=alert(document.domain)//; |
I hereby claim:
- I am mirandaniel on github.
- I am mirandaniel (https://keybase.io/mirandaniel) on keybase.
- I have a public key ASCz1-REQk2Szd90DRTPQrBYcK1vuec4R6EbxHM4WOBVYgo
To claim this, I am signing this object:
This file contains 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
import json | |
count = 10 # change this to the total count of endsong files | |
files = [f"endsong_{i}.json" for i in range(count+1)] | |
mstotal = 0 | |
total = 0 | |
for i in files: | |
data = json.load(open(i)) |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<scriptfile> | |
<settings program="actiona" version="3.10.1" scriptVersion="1.1.0" os="GNU/Linux"/> | |
<actions> | |
<action name="ActionClick" version="1.0.0"/> | |
<action name="ActionGoto" version="1.0.0"/> | |
<action name="ActionKey" version="1.0.0"/> | |
<action name="ActionKeyboardKeyCondition" version="1.0.0"/> | |
</actions> | |
<parameters/> |
This file contains 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
fetch('/api/vm/running') | |
.then(r => r.json()) | |
.then(vms => | |
vms.forEach(vm => | |
fetch('/api/vm/terminate', { | |
method: 'POST', | |
body: JSON.stringify({ code: vm.roomId }), | |
headers: { | |
'csrf-token': csrfToken, | |
'Content-Type': 'application/json' |
NewerOlder