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 8 9
fact(n): if n == 0: return 1 return n*fact(n-1) x = int(input()) for i in range(n): y = int(input())
...
-
1 2
import hashlib print(hashlib.md5("Dellfort".encode("utf-8")).hexdigest())
-
1 2
import hashlib hashlib.md5("Dellfort".encode("utf-8")).hexdigest()
-
1 2 3 4 5 6 7 8 9
count = int(input) while count : n=int(input()) fact = 1 while n : fact = fact * n n=n-1 print fact, count = count-1
-
1 2 3 4 5 6 7 8 9
import random koszt_s=5 kara_u=100 popyt=[14,15,16,20,23,25,30,31] popyt_p=[0,.05,.15,.40,.5,.7,.75,.9] dostawa=[1,2,3,4]
...
-
1 2
import hashlib hashlib.md5("Dellfort").hexdigest()
-
1 2 3 4 5 6 7 8 9
count = int(input) while count : n=int(input()) fact = 1 while n : fact = fact * n n=n-1 print fact count = count-1
-
1
print "Hello Wrold"
-
1 2 3 4 5 6 7 8 9
def fib(n): sequence = [] i = 0 while i < n: if i == 0: sequence.append(1) i=i+1 else: if i == 1:
...
-
1 2 3 4 5 6 7 8 9
def fib(n): sequence = [] i = 0 while i < n: if i == 0: sequence.append(1) i=i+1 else: if i == 1:
...
-
1 2 3 4 5 6 7 8
koszt_skl=5 kara_u=100 popyt=[14,15,16,20,23,25,30,31] popyt_p=[0.05,0.15,0.4,0.5,0.7,0.75,0.9,1] dostawa=[1,2,3,4] dostawa_p=[.4,.6,.9,1]
...
-
1 2 3 4 5 6 7 8 9
def fib(n): sequence = [] i = 0 while i < n: if i == 0: sequence.append(1) i=i+1 else: if i == 1:
...
-
1 2 3 4 5 6 7 8 9
#!/usr/bin/env python # Developed with pyton 2.7 # Copyright 2012 Logan Ding <logan.ding@gmail.com>. All Rights Reserved. # #--------------------------------------------- # Coursera.org Downloader <Version 1.1> # by Logan Ding #--------------------------------------------- #
...
-
1 2
import ntpath print(repr(ntpath.abspath('a ')))
-
1 2
import ntpath print(ntpath.abspath('a '))
-
1 2
import ntpath print ntpath.abspath('a ')
-
1 2 3 4 5 6 7 8 9
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. #NoTrayIcon #Persistent ES_DISPLAY_REQUIRED ::= 0x00000002 SetTimer, CheckWindowsState, % 1000*30 ; Poll every 30 seconds CheckWindowsState: If ( WinActive("ahk_class AGFullScreenWinClass") || WinActive("ahk_class ShockwaveFlashFullScreen") ) {
...
-
1 2 3 4 5 6 7 8 9
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. #NoTrayIcon #Persistent ES_DISPLAY_REQUIRED := 0x00000002 SetTimer, CheckWindowsState, % 1000*30 ; Poll every 30 seconds CheckWindowsState: If ( WinActive("ahk_class AGFullScreenWinClass") || WinActive("ahk_class ShockwaveFlashFullScreen") ) {
...
-
1
print("hallo world")
-
1 2 3 4 5 6 7 8 9
def makebold(fn): def wrapped(): return "<b>" + fn() + "</b>" return wrapped def makeitalic(fn): def wrapped(): return "<i>" + fn() + "</i>" return wrapped
...
-
1 2 3 4 5 6 7 8 9
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:web="http://www.live.com/schemas" style=""> <head> <script type="text/javascript">//<![CDATA[ window["$BSI"]={headTime:(new Date).getTime()};window["$CSIPerf"]={lapse:[{},{s:"h",t:$BSI.headTime}],csd:{},_ttg:$BSI.headTime} //]]></script> <script type="text/javascript">//<

