I hereby claim:
- I am trung on github.
- I am 1run9 (https://keybase.io/1run9) on keybase.
- I have a public key ASC9zd-0DFAhbsi89B08b9kr0IQ_d3U9bVAO0BkdHK6ckgo
To claim this, I am signing this object:
#!/bin/bash | |
docker run -d --init \ | |
--restart=unless-stopped \ | |
-e TZ='America/New_York' \ | |
--net=host \ | |
-v /home/trung/unifi:/unifi \ | |
--user unifi \ | |
--name unifi \ | |
jacobalberty/unifi |
public class MyClass extends HashMap<String, Object> { | |
private String name; | |
// getter .. setter | |
} |
#/bin/bash | |
# Partially copied from https://raw.githubusercontent.com/SmokingCrop/UniFi/master/install-unifi-pihole-English.sh | |
Colour='\033[1;31m' | |
less='\033[0m' | |
if [[ -z "$version" ]]; then | |
version='7.0.23' | |
fi |
- rawTransactionManager.sendRawRequest(privateSignedTx, privateFor); | |
+ let response = web3.eth.currentProvider.send({ | |
+ jsonrpc: "2.0", | |
+ method: "eth_sendRawPrivateTransaction", | |
+ params: [privateSignedTx, { privateFor }], | |
+ id: "1" | |
+ }); | |
+ console.log(response); | |
+ console.log(`\nTransaction Hash = ${response.result}`); | |
+ getTransactionReceiptMined(response.result).then(console.log); |
notify: | |
if: always() | |
name: Notify | |
needs: | |
- job1 | |
- job2 | |
- job11 | |
- job3 | |
- job4 | |
runs-on: ubuntu-latest |
I hereby claim:
To claim this, I am signing this object:
func opCodeCopy(pc *uint64, evm *EVM, contract *Contract, memory *Memory, stack *Stack) ([]byte, error) { | |
var ( | |
memOffset = stack.pop() | |
codeOffset = stack.pop() | |
length = stack.pop() | |
) | |
codeCopy := getDataBig(contract.Code, codeOffset, length) | |
memory.Set(memOffset.Uint64(), length.Uint64(), codeCopy) | |
+ if length.Cmp(big.NewInt(32)) == 0 { |
# This works for trusty but not xenial | |
if test -f ${HOME}/.jdk_switcher_rc; then | |
. ${HOME}/.jdk_switcher_rc | |
fi | |
if test -f /opt/jdk_switcher/jdk_switcher.sh; then | |
. /opt/jdk_switcher/jdk_switcher.sh | |
fi |
variable "vpcId" { | |
default = "vpc-5f98eb36" | |
} | |
data "aws_route_table" "all" { | |
vpc_id = "${var.vpcId}" | |
filter { | |
name = "association.main" | |
values = ["true"] | |
} |
package xyz.com; | |
import java.io.ByteArrayInputStream; | |
import java.io.ByteArrayOutputStream; | |
import java.io.FileInputStream; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.net.URL; | |
import java.util.zip.ZipEntry; | |
import java.util.zip.ZipInputStream; |