Skip to content

Instantly share code, notes, and snippets.

# DER format:
30 77
02 01 01
04 20 d90240a21005dd3b7df94c165fd18cf03d5cf91845d556e5ac737678f8c0dd42 # private key
a0 0a
06 08 2a8648ce3d030107
a1 44
03 42 00
0425d856bbc6d4f79288c10ba887f9cd8c0612a70b7e270cda59f7486ccdf39d # public key (found through openssl ec -text)
fc5196b5121eb05945149dbadfbafcc2b516253e39eea53cfe2a7a4292ad5891c3
@ashtuchkin
ashtuchkin / keybase.md
Created February 24, 2014 22:35
keybase.md

Keybase proof

I hereby claim:

  • I am ashtuchkin on github.
  • I am as (https://keybase.io/as) on keybase.
  • I have a public key whose fingerprint is 022B 0CA3 495A 0072 506E 7B14 C528 7AC1 79F4 8968

To claim this, I am signing this object:

@ashtuchkin
ashtuchkin / gist:5635834
Last active December 17, 2015 15:59
Blended Labs design

Blended Labs Design job description

Early stage education startup looks for a creative director or design agency on contract to cover branding, graphic design and web/interaction design needs.

Who we are

Blended Labs is transforming professional education as we know it today. We start with blended online + offline entrepreneurship program to be launched in hundreds of cities worldwide in fall '13.

The program will provide the best features of online education (world-class, latest curriculum presented by practicing entrepreneurs from Silicon Valley, plus the comfort of home chair when you watch it), as well as offline, local education (local experts giving you face-to-face feedback and advice, networking with experts and peers, additional motivation).

One of our advantages is that the program is result- and project-oriented. Students get points not from synthetic tests or exams, but from real results they get in their OWN projects while studying with us.

@ashtuchkin
ashtuchkin / shortcuts.txt
Created November 8, 2012 10:26
My ubuntu shortcuts.
# Ubuntu keyboard shortcuts
## Global
Alt+F1 : Keyboard focus on launchbar
Alt+F2 : Launch program
Ctrl+Alt+T : Terminal
Win : Search Unity
Alt : Enter Command for current apps & top bar
Ctrl+Alt+Del : Log out
Ctrl+Alt+L : Lock computer
@ashtuchkin
ashtuchkin / Code excerpts.cpp
Created August 15, 2012 19:55
Node.js "Idle Notification"
// We need to notify V8 when we're idle so that it can run the garbage
// collector. The interface to this is V8::IdleNotification(). It returns
// !! "not" true if the heap hasn't be fully compacted, and needs to be run again.
// Returning false means that it doesn't have anymore work to do.
//
// A rather convoluted algorithm has been devised to determine when Node is
// idle. You'll have to figure it out for yourself.
static uv_check_t gc_check; // -> Check() Called once right after the event loop unblocks.
static uv_idle_t gc_idle; // This is called in loop when the event loop dont have anything to do (until stopped).
static uv_timer_t gc_timer; // Usual timer.