Skip to content

Instantly share code, notes, and snippets.

@lesterzone
lesterzone / audio.css
Last active May 17, 2018 14:55
React.js Html5 audio tag
.audio {
position: relative;
}
.audio > canvas {
position: absolute;
top: 0;
left: 0;
pointer-events: none;
}
.audio-play {
@josephmosby
josephmosby / stripe_test.py
Created October 16, 2014 14:03
Walk through a default JS-powered Stripe Checkout using Python and Selenium
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import unittest as ut
import time
class NewPaymentTest(ut.TestCase):
def setUp(self):
self.browser = webdriver.Firefox()
self.browser.implicitly_wait(3)
@sebmarkbage
sebmarkbage / react-terminology.md
Last active January 9, 2023 22:47
React (Virtual) DOM Terminology
@dergachev
dergachev / GIF-Screencast-OSX.md
Last active May 17, 2024 02:53
OS X Screencast to animated GIF

OS X Screencast to animated GIF

This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.

Screencapture GIF

Instructions

To capture the video (filesize: 19MB), using the free "QuickTime Player" application:

@KWMalik
KWMalik / interviewitems.MD
Created September 16, 2012 22:04 — forked from amaxwell01/interviewitems.MD
My answers to over 100 Google interview questions

##Google Interview Questions: Product Marketing Manager

  • Why do you want to join Google? -- Because I want to create tools for others to learn, for free. I didn't have a lot of money when growing up so I didn't get access to the same books, computers and resources that others had which caused money, I want to help ensure that others can learn on the same playing field regardless of their families wealth status or location.
  • What do you know about Google’s product and technology? -- A lot actually, I am a beta tester for numerous products, I use most of the Google tools such as: Search, Gmaill, Drive, Reader, Calendar, G+, YouTube, Web Master Tools, Keyword tools, Analytics etc.
  • If you are Product Manager for Google’s Adwords, how do you plan to market this?
  • What would you say during an AdWords or AdSense product seminar?
  • Who are Google’s competitors, and how does Google compete with them? -- Google competes on numerous fields: --- Search: Baidu, Bing, Duck Duck Go
@OsamuTakahashi
OsamuTakahashi / BridgeBase.h
Created December 13, 2009 13:20
bridge between C++ and Objective-C
#import <Foundation/Foundation.h>
@interface BridgeBase : NSObject {
}
@end