Skip to content

Instantly share code, notes, and snippets.

View danielfilho's full-sized avatar

Daniel danielfilho

  • Germany
  • 23:34 (UTC +02:00)
View GitHub Profile
=Navigating=
visit('/projects')
visit(post_comments_path(post))
=Clicking links and buttons=
click_link('id-of-link')
click_link('Link Text')
click_button('Save')
click('Link Text') # Click either a link or a button
click('Button Value')

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:

@danielfilho
danielfilho / httpdump
Last active August 29, 2015 14:16 — forked from peterc/httpdump
# Monitor HTTP requests being made from your machine with a one-liner..
# Replace "en1" below with your network interface's name (usually en0 or en1)
sudo tcpdump -i en1 -n -s 0 -w - | grep -a -o -E "Host\: .*|GET \/.*"
# OR.. to be able to use as "httpdump" from anywhere, drop this into ~/.bash_profile:
# (again replace "en1" with correct network interface name)
alias httpdump="sudo tcpdump -i en1 -n -s 0 -w - | grep -a -o -E "Host\: .*|GET \/.*""
# All the above tested only on OS X.
@danielfilho
danielfilho / upgrade.sh
Last active August 29, 2015 14:14 — forked from dserodio/upgrade.sh
if [ -z $1 ]
then
if [ "$OS" == "Darwin" ]
then
echo "Updating…"
brew update
echo "Upgrading…"
brew upgrade
else
sudo apt-get update

Screencapture and animated gifs

I say "animated gif" but in reality I think it's irresponsible to be serving "real" GIF files to people now. You should be serving gfy's, gifv's, webm, mp4s, whatever. They're a fraction of the filesize making it easier for you to deliver high fidelity, full color animation very quickly, especially on bad mobile connections. (But I suppose if you're just doing this for small audiences (like bug reporting), then LICEcap is a good solution).

Capturing (Easy)

  1. Launch quicktime player
  2. do Screen recording

screen shot 2014-10-22 at 11 16 23 am

Desenvolvedor Front-end para Startup Agressora

Agrid

Belo Horizonte || Remoto

  • regime: PJ
  • conhecimento necessário:
    • html (5)
    • css (4)
  • javascript (3)

desenvolvedor front-end jr

Trendi

(região da berrini, são paulo - sp)

  • regime: CLT
  • escolaridade: segundo grau completo
  • conhecimento necessário:
    • html (5)
  • css (5)
@danielfilho
danielfilho / braziljs-2014-talks.md
Last active November 27, 2022 21:04
Talks, slides and links from BrazilJS 2014

#BrazilJS 2014

Talks: slides & Links

Day Talk Speaker Links
1 Why ServiceWorker may be the next big thing Renato Mangini interview · slides · video
1 Frontend at Scale - The Tumblr Story Chris Miller interview · slides · video
1 Intro to GFX: Raw WebGL Nick Desaulniers interview · slides · video
<!DOCTYPE html>
<html>
<head>
<title>video</title>
<style>
.wraper { position: relative; }
.videoHolder, .cover { position: absolute; }
.videoHolder {
display: none;
z-index: 1;
@danielfilho
danielfilho / hrdwr.js
Created June 21, 2014 03:52
If you're going to work with spark core and want to have an arduino for faster development in flaky wifi connections (or whatever reason), use the pin set as an object, so you can change everywhere at once, when switching devices.
var pins = {
spark: {
servo: 'D0',
button: 'D7',
red: 'A0',
green: 'A1',
blue: 'A4'
},
arduino: {
servo: 10,