Skip to content

Cloudxtreme/experiments

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Experiment Repository 
---------------------

Experiments, tests, random babble. Mostly a collection of "Hello World"
examples for various languages.

This directory is served off 0xfe.muthanna.com.

------------------------------------

To clone this repository (Read/Write):

$ git clone git@github.com:0xfe/experiments.git

To clone this repository (Read-Only HTTP):

$ git clone http://github.com/0xfe/experiments.git

------------------------------------

$ git config --global user.name "Your Name Comes Here"
$ git config --global user.email you@yourdomain.example.com

$ git config --global color.diff auto
$ git config --global color.status auto
$ git config --global color.branch auto

------------------------------------
Repository administration:

To bring the local working directory in sync with HEAD:

$ git reset --hard HEAD
-------------------------------------

Ignore list in .gitignore (in project root). Contents:

# Lines starting with '#' are considered comments.
# Ignore any file named foo.txt.
foo.txt
# Ignore (generated) html files,
*.html
# except foo.html which is maintained by hand.
!foo.html
# Ignore objects and archives.
*.[oa]
ruby_sess.*
.*.swp
.hi
*.pyc

------------------------------------

Workflow:

$ git branch newthingaby

$ git branch
  newthingaby
* master

$ git checkout newthingaby
... do stuff ...

$ git commit -a

$ git checkout master

$ git merge newthingaby

(If conflicts, fix them, then submit.)

$ git branch -d newthingaby

$ git push

About

Tests, experiments, etc. etc.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 34.6%
  • Python 21.8%
  • Haskell 14.3%
  • JavaScript 6.9%
  • HTML 5.7%
  • Scala 5.4%
  • Other 11.3%