I hereby claim:
- I am naps62 on github.
- I am naps62 (https://keybase.io/naps62) on keybase.
- I have a public key ASCgeJAumr5xLBTtCR3h6Q1FSxG9FlM1QUs9sKqAvW6Y9Qo
To claim this, I am signing this object:
const toTxHash = (value) => { | |
if (typeof value === "string") { | |
// this is probably a tx hash already | |
return value; | |
} else if (typeof value.receipt === "object") { | |
// this is probably a tx object | |
return value.receipt.transactionHash; | |
} else { | |
throw "Unsupported tx type: " + value; | |
} |
I hereby claim:
To claim this, I am signing this object:
# spec/support/webpack.rb | |
module WebpackTestBuild | |
TS_FILE = Rails.root.join("tmp", "webpack-spec-timestamp") | |
class << self | |
attr_accessor :already_built | |
end | |
def self.run_webpack | |
puts "running webpack-test" |
# Install ARCH Linux with encrypted file-system and UEFI | |
# The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description. | |
# Download the archiso image from https://www.archlinux.org/ | |
# Copy to a usb-drive | |
dd if=archlinux.img of=/dev/sdX bs=16M && sync # on linux | |
# Boot from the usb. If the usb fails to boot, make sure that secure boot is disabled in the BIOS configuration. | |
# Set swedish keymap |
Escreve um programa o mais pequeno possível para decifrar mensagens. Podes usar C, C++, Java, Perl, Python3, Ruby 2.3.1, Pascal ou Haskell.
O teu objetivo é descodificar mensagens cifradas utilizando um método de dupla cifra. O método de cifrar é o seguinte:
Overall, I like the path where this is headed, but I have some big concerns with the current functionality. here's a quick list:
See the screenshot below, taken a couple of days ago:
This is a list of open PRs on a client project. Some were already reviewed by me, other's weren't. For the ones I haven't reviewed, the green check mark also shows up, because our CI was green. There was no way for me to tell which ones I still haven't reviewed without opening each one individually.
[ | |
{ | |
"backcolor": "#333333", | |
"name": "naps62 Ergodox - Media Layer", | |
"author": "Miguel Palhas <[email protected]>", | |
"radii": "20px", | |
"switchMount": "cherry", | |
"switchBrand": "cherry", | |
"switchType": "MX1A-G1xx", | |
"pcb": false, |
[ | |
{ | |
"backcolor": "#333333", | |
"name": "naps62 Ergodox - Base Layer", | |
"author": "Miguel Palhas <[email protected]>", | |
"radii": "20px", | |
"switchMount": "cherry", | |
"switchBrand": "cherry", | |
"switchType": "MX1A-G1xx", | |
"pcb": false, |
[ | |
{ | |
"backcolor": "#333333", | |
"name": "naps62 Ergodox - Coder Layer", | |
"author": "Miguel Palhas <[email protected]>", | |
"radii": "20px", | |
"switchMount": "cherry", | |
"switchBrand": "cherry", | |
"switchType": "MX1A-G1xx", | |
"pcb": false, |
#!/bin/sh | |
# grab screen width and height | |
resolution=$(xrandr | grep '*' | head -n1 | tr -s ' ' | cut -d ' ' -f2) | |
resolution_width=$(echo $resolution | cut -d 'x' -f1) | |
resolution_height=$(echo $resolution | cut -d 'x' -f2) | |
# overlay will have full width, 80px height | |
width=$resolution_width | |
height=80 |