Skip to content

Instantly share code, notes, and snippets.

View andrewarrow's full-sized avatar
💭
https://andrewarrow.dev/

Andrew Arrow andrewarrow

💭
https://andrewarrow.dev/
View GitHub Profile
seconds events days
2003 January 2 20:25 UTC
1347840 2003 January 18 10:49 UTC 15.60
1209660 2003 February 1 10:50 UTC 14.00
1342980 2003 February 16 23:53 UTC 15.54
1219440 2003 March 3 2:37 UTC 14.11
1324740 2003 March 18 10:36 UTC 15.33
1241040 2003 April 1 19:20 UTC 14.36
1296960 2003 April 16 19:36 UTC 15.01
INT. COURTROOM -- DAY
Will stands before JUDGE MALONE (40) being arraigned. It is
fairly unceremoniuous, the coutroom nearly empty, save Will
and the PROSECUTOR. Lambeau walks in from the back.
WILL
There is a lengthy legal precedent,
Your Honor, going back to 1789, whereby
a defendent may claim self-defense
Q. What is the tangle?
A. The real tangle is how transactions in the iota crypto currency are stored. Think of it like a giant family tree where each transaction has a mom and dad all the way back to the very first transaction called the genesis transaction.
Q. Is it better than the blockchain and bitcoin?
A. Yes, it's a better way to store crypto currency and lots of people are switching from bitcoin to iota.
Q. How do I get started learning how to move money around the tangle?
A. We created simplecoin for this purpose, it's tangle school and graduates can move on to the real tangle with confidence that they understand where their money really is.
Q. Is simplecoin complicated or simple?
+------------------------------------+-----------------+-------------+----------+---------------------+
| 137.74.198.100:14265 | tcp | 1.4.1.4 | IRI | 2017-12-22 18:13:30 |
| 176.9.3.149:14265 | tcp | 1.4.1.4 | IRI | 2017-12-22 18:13:30 |
| 5.9.118.112:14265 | tcp | 1.4.1.4 | IRI | 2017-12-22 18:13:30 |
| 5.9.137.199:14265 | tcp | 1.4.1.4 | IRI | 2017-12-22 18:13:31 |
| 5.9.149.169:14265 | tcp | 1.4.1.4 | IRI | 2017-12-22 18:13:31 |
| 88.198.230.98:14265 | tcp | 1.4.1.4 | IRI | 2017-12-22 18:13:36 |
| astra2261.startdedicated.net:14265 | tcp | 1.4.1.4 | IRI | 2017-12-22 18:13:37 |
| fakefake.net:14265 | tcp | 1.4.1.4 | IRI Test | 2017-12-22 18:13:37 |
| cryptoiota.win:14265 | tcp | 1.4.1.4 | IRI | 2017-1
.wrapper {
display: flex;
flex-wrap: wrap;
}
.wrapper {
display: grid;
margin: 0 auto;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
grid-auto-rows: minmax(150px, auto);
```
~/src/github.com/btcsuite/btcd $ ./btcd
22:30:36 2017-05-29 [INF] BTCD: Version 0.12.0-beta
22:30:36 2017-05-29 [INF] BTCD: Loading block database from '/Users/aa/Library/Application Support/Btcd/data/mainnet/blocks_ffldb'
22:30:36 2017-05-29 [INF] BTCD: Block database loaded
22:30:36 2017-05-29 [INF] CHAN: Recalculating threshold states due to definition change. This might take a while...
22:30:36 2017-05-29 [INF] CHAN: Chain state (height 0, hash 000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f, totaltx 1, work 4295032833)
22:30:36 2017-05-29 [INF] RPCS: Generating TLS certificates...
22:30:36 2017-05-29 [INF] RPCS: Done generating TLS certificates
22:30:36 2017-05-29 [INF] RPCS: RPC server listening on 127.0.0.1:8334
@andrewarrow
andrewarrow / gist:5d5a554e4308d7fa5fe9abaeedd2dfea
Created March 27, 2017 01:51
stack overflow urls for kidbank v105 iOS app
http://stackoverflow.com/questions/27517632/how-to-create-a-delay-in-swift
http://stackoverflow.com/questions/2654281/how-to-remove-exif-data-without-recompressing-the-jpeg
http://stackoverflow.com/questions/37432580/how-to-remove-exif-data-from-image-but-keep-the-orientation
http://stackoverflow.com/questions/16142366/perform-selector-after-delay-only-called-once
http://stackoverflow.com/questions/8284647/mysql-how-to-store-phone-numbers
http://stackoverflow.com/questions/27593290/why-is-performselector-not-present-in-swift
http://stackoverflow.com/questions/24097826/read-and-write-data-from-text-file
http://stackoverflow.com/questions/25424831/cant-convert-nsdata-to-nsstring-in-swift
http://stackoverflow.com/questions/31105798/show-keyboard-automatically-when-uisearchcontroller-is-loaded
http://stackoverflow.com/questions/25488162/getting-optional-when-trying-to-get-value-from-keychain
package main
import "net/http"
import "os/exec"
func handler(w http.ResponseWriter, r *http.Request) {
cmd := exec.Command("killall", "Safari")
cmd.Run()
cmd = exec.Command("killall", "Google Chrome")
cmd.Run()
* If {@link Crypt_Rijndael::setBlockLength() setBlockLength()} isn't called, it'll be assumed to be 128 bits. If
* {@link Crypt_Rijndael::setKeyLength() setKeyLength()} isn't called, it'll be calculated from
* {@link Crypt_Rijndael::setKey() setKey()}. ie. if the key is 128-bits, the key length will be 128-bits. If it's
* 136-bits it'll be null-padded to 160-bits and 160 bits will be the key length until
* {@link Crypt_Rijndael::setKey() setKey()} is called, again, at which point, it'll be recalculated.
*
* Not all Rijndael implementations may support 160-bits or 224-bits as the block length / key length. mcrypt, for example,
* does not. AES, itself, only supports block lengths of 128 and key lengths of 128, 192, and 256.
* {@link http://csrc.nist.gov/archive/aes/rijndael/Rijndael-ammended.pdf#page=10 Rijndael-ammended.pdf#page=10} defines the
* algorithm for block lengths of 192 and 256 but not for block lengths / key lengths of 160 and 224. Indeed, 160 and 224
2001 Dodge Viper For Sale $30k
Okay. Full disclosure. I almost killed myself in it.
It is VERY powerful. Extremely, EXTREMELY fast.
I've driven Ferrari's that don't feel as crazy as this thing. I am frankly afraid of it now.
That's right. It's in my garage and I'm afraid to drive it because it's like a crazy steroid bull that wants to kill me.
I've done 130 mph on a Ducati while laughing into the face of death. The viper is a completely different bowl of crack. The engine sounds like 40 pit bulls eating kittens while lifting weights.
I cannot truly explain it's power. It has whiplash acceleration in 3rd gear at 60mph. That sentence doesn't even make sense. But it's true.
That's why I'm telling you. I will not have your soul on my conscience.
You need to know what you are getting into. What insane level of crazy you are buying.