Skip to content

Instantly share code, notes, and snippets.

View figitaki's full-sized avatar
🌴

Carey Janecka figitaki

🌴
View GitHub Profile
  1. Restart the daemon with an additional -file-log-level INFO. The full command is as follows:
    coda daemon -peer-list-file ~/peers.txt -block-producer-key ~/keys/my-wallet -block-producer-password "password" -generate-genesis-proof true -file-log-level INFO
    
  2. Wait for the daemon to sync.
  3. Once the daemon is synced, let it run for the 2 hour period from to . The timing is important to ensure that all the logs collected during this window have more or less the same set of blocks. There can be a maximum 40 blocks in 2 hours and we are expecting at least 20
  4. Right after , export logs using the coda client export-local-logs command and send it to logs@o1labs.org with the subject "Block Latency".
@figitaki
figitaki / meetcard.json
Last active August 16, 2019 07:47
MeetCard
{
"name": "Carey Janecka Nº1",
"description": "Developer. Designer. Musician",
"external_url": "https://figitaki.com",
"background_color": "F8E5BC",
"image": "https://i.ibb.co/ZHjPVhq/zkmeet.png"
}
This post links my 3Box profile to my Github account! Web3 social profiles by 3Box.
✅ did:muport:QmewkKEB1oprLuusKz4tP4RqAuA5qo1P2y5hwtEpgC5GXB ✅
Create your profile today to start building social connection and trust online at https://3Box.io/
@figitaki
figitaki / keybase.md
Last active March 12, 2018 18:15
keybase.io

Keybase proof

I hereby claim:

  • I am figitaki on github.
  • I am figitaki (https://keybase.io/figitaki) on keybase.
  • I have a public key whose fingerprint is F67F 2B03 6C1F D72C 2C9E E67D 4449 AD6A 0B30 E1BD

To claim this, I am signing this object:

name: "ResNet-101"
input: "data"
input_shape{
dim: 1
dim: 3
dim: 224
dim: 224
}
input: "rois"
@figitaki
figitaki / Bot.kt
Last active August 31, 2017 03:06
fun main(args: Array<String>) {
// Twitter configuration
while (true) {
// Make a new status with a photo from Flickr
var photo = randomPhoto()
try {
// Post the photo using our extension function
val message = twitter.updateStatus(photo.twitterStatus)
@figitaki
figitaki / Bot.kt
Last active August 31, 2017 03:34
import twitter4j.*
import flickr4java.*
import flickr4java.photos.Photo
fun randomPhoto(): Photo? {
val apiKey = "<flickr-api-key>"
val secret = "<flickr-secret>"
val flickr = Flickr(apiKey, secret, REST())
@figitaki
figitaki / Bot.kt
Last active August 30, 2017 18:56
package BHLTwitterBot
import twitter4j.*
fun main(args: Array<String>) {
// Configuration for our Twitter client
val cb = ConfigurationBuilder()
cb.setDebugEnabled(true)
.setOAuthConsumerKey("<CONSUMER_KEY>")
.setOAuthConsumerSecret("<CONSUMER_SECRET>")
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
compile "org.twitter4j:twitter4j-core:4.0.6"
compile "com.flickr4java:flickr4java:2.17"
compile "com.vdurmont:emoji-java:3.3.0"
}