Hi,
You can use the below scrip to send thank you notes to your friends who wished for your birthday on your Facebook timeline.
Instructions:
#Get the Facebook access token:
a: blah | |
c: hello |
def test(): | |
pass | |
Feature: Editing Posts | |
In order to be able to edit posts | |
As a user | |
I want to be able to do this via an interface | |
Background: |
################################################################################ | |
# conway.py | |
# | |
# Author: electronut.in | |
# | |
# Description: | |
# | |
# A simple Python/matplotlib implementation of Conway's Game of Life. | |
################################################################################ |
import random | |
import time | |
import pickle | |
## Initial constants | |
initial_human = 100 | |
human = initial_human | |
human_dead = 0 | |
initial_beast = 25 | |
beast = initial_beast | |
beast_dead = 0 |
# Initial eclipsing binary star intro | |
# http://www.physics.sfasu.edu/astro/ebstar/ebstar.html | |
# | |
class LightCurve(object): | |
""" | |
This class represents light curve of an astronomical object. Light curve means | |
curve between time and magnitude (visual magnitude in this case). | |
""" | |
def __init__(self, start_date, time_unit): | |
self._points = [] |
from collections import defaultdict, deque | |
def find_number_universe(keylog): | |
numbers = set() | |
for attempt in keylog: | |
for num in attempt: | |
numbers.add(num) | |
return numbers |
Hi,
You can use the below scrip to send thank you notes to your friends who wished for your birthday on your Facebook timeline.
Instructions:
#Get the Facebook access token:
# How to echobot with XMPP, BOSH, and Strophe | |
1. Setup ejabberd(http://www.ejabberd.im/) server and setup account [email protected] | |
NOTE: localhost should be enough. If you setup something else, make sure you add it at /etc/hosts like this | |
#/etc/hosts | |
127.0.0.1 localhost.local | |
NOTE: Also download Psi(http://psi-im.org/), and make sure you can connect to your ejabberd server. | |
2. Download strophe(http://code.stanziq.com/strophe/) and place it (eg: /Users/makoto/work/sample/strophejs-1.0) |
I hereby claim:
To claim this, I am signing this object:
How to create a portable windows application without an installer from an electron project:
git clone https://github.com/electron/electron-quick-start