• Stars
    star
    128
  • Rank 281,044 (Top 6 %)
  • Language
    Java
  • Created over 14 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Tests, experiments, etc. etc.
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 [email protected]: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 [email protected]

$ 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

More Repositories

1

vexflow

A JavaScript library for rendering music notation and guitar tablature.
JavaScript
3,881
star
2

vexchords

JavaScript Chord Charts
JavaScript
815
star
3

vextab

A VexTab Parser for VexFlow
JavaScript
564
star
4

vexwarp

Audio Time Stretching and Pitch Shifting
JavaScript
216
star
5

hacking-stellar

A hacker's guide to using the Stellar blockchain platform.
88
star
6

lumen

A commandline client for the Stellar blockchain
Go
75
star
7

rubyrefresher

A Ruby language refresher.
Ruby
67
star
8

fretboard

Vex Fretboard as seen on my.vexflow.com.
CoffeeScript
64
star
9

mobot

mobot: A Telegram Bot Library in Rust
Rust
42
star
10

vex

Public Stuff
JavaScript
39
star
11

microstellar

An easy-to-use Go Library for the Stellar payment network
Go
38
star
12

cryptopals

Cryptopals Cryptography Challenge Solutions in Go (Sets 1 - 6)
Go
19
star
13

pennywall

A self-hosted donation / tip wall for sharing content
JavaScript
5
star
14

vexruby_heap

A Binary-Heap / Priority-Queue implementation for Ruby.
Ruby
4
star
15

mp3renamer

Reorganize your audio directories by artist/album/title. Useful for reclaiming music from your iPod or iTunes library.
Python
4
star
16

deepears

Audio analysis using DNNs
Jupyter Notebook
3
star
17

pennyauth

A captcha based on micropayments
JavaScript
2
star
18

vexflow.com

Vexflow Public Website
HTML
2
star
19

pennyjar

A digital penny jar that uses micropayments
JavaScript
2
star
20

arkin.ninja

Arkin's home page
HTML
1
star
21

cryptopals-rust

Cryptopals Cryptography Challenge Solutions in Rust
Rust
1
star
22

clue

A Capture-The-Flag contract on Ethereum
JavaScript
1
star
23

vexcron

A drop in replacement for the Cron daemon.
Go
1
star
24

drfoo

DrFoo is an OpenAI client and framework for Rust
Rust
1
star
25

pennyauth-server

A captcha service based on micropayments (server)
JavaScript
1
star
26

sweartax

A digital swear jar using 0xfe/pennyjar
JavaScript
1
star
27

hype

hype is a programmable load balancer
Rust
1
star