Forking has been fixed, but the old repositories will still be corrupted.
The method page
will create a new page:
page "home" do
"Hello, world!"
""" | |
Simple Bot to reply to Telegram messages taken from the python-telegram-bot examples. | |
Deployed using heroku. | |
Author: liuhh02 https://medium.com/@liuhh02 | |
""" | |
import logging | |
from telegram.ext import Updater, CommandHandler, MessageHandler, Filters | |
import os |
#!/bin/bash | |
set -e | |
function cleanup() { | |
# clean up our temp folder | |
rm -rf "${TMPDIR}" | |
} | |
trap cleanup EXIT |
#!/usr/bin/env bash | |
############### USAGE ############### | |
# | |
# 1. Create a new workspace on Cloud9 using the "Blank" template | |
# | |
# 2. Run this command in the console: | |
# bash <(curl -fsSL https://gist.githubusercontent.com/padde/3c6301f15cbd5025e131740dae33aa95/raw/c9-elixir.sh) | |
# | |
# 3. There is no step 3! |
// Reference: http://www.blackdogfoundry.com/blog/moving-repository-from-bitbucket-to-github/ | |
// See also: http://www.paulund.co.uk/change-url-of-git-repository | |
$ cd $HOME/Code/repo-directory | |
$ git remote rename origin bitbucket | |
$ git remote add origin https://github.com/mandiwise/awesome-new-repo.git | |
$ git push origin master | |
$ git remote rm bitbucket |
/************************************************* | |
* This is a simple Monte Carlo simulation to see | |
* whether we should | |
* go for X BIG deal and/or Y SMALL deals. | |
* | |
* What is the best blend? | |
* | |
* Author: Ido Green | plus.google.com/+greenido | |
* Date: 16 July 2013 | |
* |
require 'mechanize' | |
require 'hpricot' | |
class Orkut | |
def initialize(email, pass) | |
@agent = WWW::Mechanize.new | |
@email = email | |
@pass = pass | |
end |