Skip to content

Instantly share code, notes, and snippets.

@esperanca
esperanca / roadrunner.txt
Last active December 4, 2021 07:28
Road Runner Design Principles
Rule 1
the road runner cannot harm the coyote except by going "beep-beep!"
Rule 2
No outside force can harm the coyote - only his own ineptitude or the failure of the acme products.
Rule 3
The coyote could stop anytime - if he were not a fanatic.
(repeat: "a fanatic is one who redoubles his effort when he has forgotten his aim." -george santayana)
Rule 4
No dialogue ever, except "beep-beep!"
Rule 5
@esperanca
esperanca / weeknotes.txt
Last active January 11, 2021 19:07
Weeknotes Template
Short paragraph with something you learned about the process of writing your weeknotes.
Links for other people weeknotes, blog posts or articles. General announcements.
## Top 3 links
Curation of 3 links I found useful this week
## Good things
### Most important thing at work
@esperanca
esperanca / icebreakers.txt
Last active July 8, 2020 12:26
Icebreakers
If money and time were no object, where would you most like to go on holiday?
Give an example of something you’ve done this week that you feel proud of.
If you weren’t on this call, what would you like to be doing?
If you could eat any dish right now, what would it be?
If money and time were no object, where would you most like to go on holiday?
If you could have one superpower, what would it be and why?
Tell us your name and why that's your name?
What was your favorite childhood movie?
What is one item you couldn’t live without?
If you could only eat one food for the rest of your life, what would it be?
<?php
// PHP example
// create a new cURL resource
$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "https://demo.socialcast.com/api/messages.xml");
curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
<?php
// PHP example
// create a new cURL resource
$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "https://demo.socialcast.com/api/messages.xml");
curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);