Recent public codes are listed below. You can filter them by the following programming languages:
- view
- All
- Ada
- Assembler
- Assembler
- AWK (gawk)
- AWK (mawk)
- Bash
- bc
- Brainf**k
- C
- C#
- C++
- C++0x
- C99 strict
- CLIPS
- Clojure
- COBOL
- COBOL 85
- Common Lisp (clisp)
- D (dmd)
- Erlang
- F#
- Factor
- Falcon
- Forth
- Fortran
- Go
- Groovy
- Haskell
- Icon
- Intercal
- Java
- Java7
- JavaScript (rhino)
- JavaScript (spidermonkey)
- Lua
- Nemerle
- Nice
- Nimrod
- Objective-C
- Ocaml
- Oz
- Pascal (fpc)
- Pascal (gpc)
- Perl
- Perl 6
- PHP
- Pike
- Prolog (gnu)
- Prolog (swi)
- Python
- Python 3
- R
- Ruby
- Scala
- Scheme (guile)
- Smalltalk
- SQL
- Tcl
- Text
- Unlambda
- VB.NET
- Whitespace
-
1 2 3 4 5 6 7
z=float(input()) b=2 e=0 while b<z: b=b*b e=e+1 print e
-
1 2 3 4 5 6 7 8 9
#!/usr/bin/python3 _cache = {} def sums(addends, sum): """Return list of tuples of @addends addends that sums up to @sum.""" global _cache if addends < 1 or sum < addends: return [] if (addends, sum) not in _cache:
...
-
1 2 3 4 5 6 7 8 9
#!/usr/bin/python3 _cache = {} def sums(addends, sum): """Return list of tuples of @addends addends that sums up to @sum.""" global _cache if addends < 1 or sum < addends: return [] if (addends, sum) not in _cache:
...
-
1 2
import urllib2 p = urllib2.urlopen("http://www.example.com")
-
1 2 3 4 5
import re m = re.search('<a href=([^"]*)".*?>','awlkdjk<a href="www.test.de"awdilj>adawd"',) print(m.group(0))
-
1 2 3 4 5
import re m = re.search("<a href=([^\"]*)\".*?>",'awlkdjk<a href="www.test.de"awdilj>adawd"',) print(m.group(1))
-
1 2 3 4 5
import re m = re.search("<a href=([^\"]*)\".*?>",'awlkdjk<a href="www.test.de"awdilj>adawd"',) print(m.group(0))
-
1 2 3 4 5
import re m = re.search("<a href=[^\"]*\".*?>",'awlkdjk<a href="www.test.de"awdilj>adawd"',) print(m.group(1))
-
1 2 3 4 5
import re m = re.search("<a href=[^\"]*\".*?>",'awlkdjk<a href="www.test.de"awdilj>adawd"',) print(m.group(0))
-
1 2 3 4 5 6 7 8
from random import choice l = "abcdefghijklmnopqrstuvwxyz" c = "" for i in range(1000): c += choice(l)
-
1 2 3 4
from random import choice s = "abcdefghijklmnopqrstuvwxyz" c = "" [c+=choice(s) for i in range(1000)]
-
1
-
1
-
1
-
1
print 1
-
1
print [x*2 for x in [1,2,3]]
-
1
[x*2 for x in [1,2,3] if x%2]
-
1 2 3 4 5 6 7 8 9
import random goal = rand(1,100) guess = 0 while guess != goal: guess = int(input("Please guess a number between 1 and 100:, guess) if guess < goal:
...
-
1 2 3 4 5 6 7 8 9
import random goal = rand(1,100) guess = 0 while guess != goal: guess = int(input("Please guess a number between 1 and 100:, guess) if guess < goal:
...
-
1 2 3 4 5 6 7
import random goal = rand(1,100) guess = 0 while guess != goal
-
1 2 3 4 5 6 7 8 9
# This script is made to dolanize names given by the user # More options will be provided as development on this highly useful tool continues. def dolanmarie( name ): d = '' for letter in name: if letter == 'a': d = d + 'a' elif letter == 'y':
...
-
1 2 3 4 5 6 7 8 9
# This script is made to dolanize names given by the user # More options will be provided as development on this highly useful tool continues. def dolanmarie( name ): d = '' for letter in name: if letter == 'a': d = d + 'a' elif letter == 'y':
...
-
1 2 3 4
n = int(input()) while n != 42: print(n) n = int(input())
-
1
print "hello world"
-
1
print hello world
-
1 2 3 4 5 6 7 8 9
# This script is made to dolanize names given by the user # More options will be provided as development on this highly useful tool continues. def dolanmarie( name ): d = '' for letter in name: if letter == 'a': d = d + 'a' elif letter == 'y':
...
-
1 2 3 4 5 6 7 8 9
# This script is made to dolanize names given by the user # More options will be provided as development on this highly useful tool continues. def dolanmarie( name ): d = '' for letter in name: if letter == 'a': d = d + 'a' elif letter == 'y':
...
-
1 2 3 4 5 6 7 8 9
# This script is made to dolanize names given by the user # More options will be provided as development on this highly useful tool continues. def dolanmarie( name ): d = '' for letter in name: if letter == 'a': d = d + 'a' elif letter == 'y':
...
-
1 2 3 4 5 6 7 8 9
# This script is made to dolanize names given by the user # More options will be provided as development on this highly useful tool continues. def dolan( name ): d = '' for letter in name: if letter == 'a': d = d + 'a' elif letter == 'y':
...
-
1 2 3 4 5 6 7 8 9
# This script is made to dolanize names given by the user # More options will be provided as development on this highly useful tool continues. def dolan( name ): d = '' for letter in name: if letter == 'a': d = d + 'a' elif letter == 'y':
...


