[ create a new paste ] login | about

Tinned_Tuna

Name: Daniel Turner
Email:
Site/Blog: http://dannyturner.net
Location: UK
Default language: Python
Favorite languages: Scheme, Python
About: Will code for food.

Saved pastes by Tinned_Tuna:

Plain Text, pasted on Oct 30:
1
2
3
4
5
Connecting to server...
You're now chatting with a random stranger. Say hi!
You: I'm in a room, no windows, all I've got is this console, a toilet and food/water gets given to me what seems like hourly
You: I just went to sleep last night, now I'm here.
Stranger: Cool
...
view (215 lines)
Python, pasted on Sep 16:
1
2
3
4
5
class Node:
    def __init__(self):
        """
            Initialize this node
            
...
view (81 lines, 8 lines of output)
Scheme, pasted on Sep 9:
1
2
3
4
5
(define (filter predicate in_list)
    ;;
    ;; Filter a list by the predicate. Only items which satisfy the predicate
    ;; will be in the output list.
    ;; Author: Daniel Turner
...
view (35 lines)
Scheme, pasted on Sep 8:
1
2
3
4
5
(define (range start limit step)
    ;;
    ;; Generate a list from a given value, to a given value
    ;; e.g. '(start (+ start step) ... end )
    ;; Author: Daniel Turner
...
view (27 lines, 100 lines of output)