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
GateKind = enum | |
gateNot | |
gateAnd | |
gateOr | |
gateNand | |
gateNor | |
gateXor | |
let kind = | |
case kindStr |
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
GateKind = enum | |
gateNot | |
gateAnd | |
gateOr | |
gateNand | |
gateNor | |
gateXor | |
proc raiseValue[T](e: ref Exception): T = | |
raise e |
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
import nimbench | |
from math import countBits | |
bench(countBits8, m): | |
var x = 0 | |
for i in 1..m: | |
x += countBits(uint8(i)) | |
doNotOptimizeAway(x) | |
bench(countBits16, m): |
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
import nimbench | |
from math import countBits32 | |
bench(countBits32, m): | |
var x = 0 | |
for i in 1..m: | |
x += countBits32(int32(i)) | |
doNotOptimizeAway(x) | |
runBenchmarks() |
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
hashcat (v3.10) starting in benchmark-mode... | |
OpenCL Platform #1: NVIDIA Corporation | |
====================================== | |
- Device #1: GeForce GTX 1060 6GB, 1517/6069 MB allocatable, 10MCU | |
Hashtype: MD4 | |
Speed.Dev.#1.: 19674.9 MH/s (96.43ms) |
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
with import <nixpkgs> {}; | |
stdenv.mkDerivation { | |
name = "my-texlive-env"; | |
buildInputs = [ | |
pkgs.texlive.combine { | |
inherit (pkgs.texlive) scheme-basic; | |
} | |
]; | |
} |
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
Hi, | |
I am writing to enquire as to whether we will be reimbursed for travel expenses incurred during SR2016. I emailed my receipts and bank details this address ([email protected]) shortly after the competition, and well before the stated deadline of 14th May 2016. I have not yet received a reply to this email, and a number of other volunteers I have spoken to also reported that they did not hear back from their reimbursement requests either. | |
This issue has also had the effect of deterring volunteers from mentoring in SR2017, as they are unsure whether they will be left out of pocket or not. | |
Could you please clarify the situation, and confirm whether reimbursement for mentoring and/or competition travel expenses will occur for SR2017? | |
Regards, | |
Kier Davis |
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
Heart Whispers - use the heart on people! | |
Clockwork Collector - kill clockwork soldiers (all??) | |
Occult Carver - carve bonecharms | |
Black Market Burglar - rob a Black Market shop | |
Royal Spymaster - all journals and audiographs on ship | |
Combat: | |
The Lovers - domino on two people attacking each other | |
Sliding Marksman - headshot while sliding | |
Fatal Redirect - deflect a bullet |
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
extraBuildCommands = '' | |
if [ -e lib/vendors ]; then | |
mkdir -p etc/OpenCL | |
ln -s lib/vendors etc/OpenCL/vendors | |
fi | |
''; |
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
Jan 17 19:16:03 coloris slim[2479]: pam_unix(slim:session): session opened for user kier by (uid=0) | |
Jan 17 19:16:03 coloris systemd[1]: Created slice User Slice of kier. | |
Jan 17 19:16:03 coloris systemd[1]: Starting User Manager for UID 1000... | |
Jan 17 19:16:03 coloris systemd[1]: Started Session 3 of user kier. | |
Jan 17 19:16:03 coloris systemd-logind[2035]: New session 3 of user kier. | |
Jan 17 19:16:03 coloris systemd[2504]: pam_unix(systemd-user:session): session opened for user kier by (uid=0) | |
Jan 17 19:16:03 coloris systemd[2504]: Reached target Paths. | |
Jan 17 19:16:03 coloris systemd[2504]: Reached target Sockets. | |
Jan 17 19:16:03 coloris systemd[2504]: Reached target Timers. | |
Jan 17 19:16:03 coloris systemd[2504]: Reached target Basic System. |