Skip to content

Instantly share code, notes, and snippets.

@git-bee
git-bee / animGraph.pas
Created June 16, 2017 15:31
text animation on graphics
program animateGraph;
{ ----------
Text animation on graphics
by: Mr Bee -- @pak_lebah
}
uses CRT, Graph;
const
@git-bee
git-bee / animText.pas
Created June 16, 2017 15:31
text animation on console
program animateText;
{ ----------
Text animation on console
by: Mr Bee -- @pak_lebah
}
uses CRT;
const
@git-bee
git-bee / terbilang.py
Created December 2, 2014 11:29
Terbilang - Pythonista
# TERBILANG
# Menyebut angka dalam bahasa Indonesia
# by: @beezing
angka = {'0':'nol',
'1':'satu ',
'2':'dua ',
'3':'tiga ',
'4':'empat ',
'5':'lima ',
@git-bee
git-bee / keywords.pas
Last active August 29, 2015 14:08
generate object pascal keywords
program keywords;
{$MODE DELPHI}{$H+}
uses
Classes;
const
TurboPascal = 'and|array|asm|begin|break|case|const|constructor|continue|destructor|div|do|downto|else|'+
'end|false|far|file|for|function|goto|if|implementation|in|inline|interface|label|mod|near|'+
@git-bee
git-bee / analog_clock.py
Created May 24, 2014 11:15
Analog Clock - Pythonista
import speech
from scene import *
from datetime import datetime
from math import sin, cos, radians
font = 'HelveticaNeue-Thin'
def ngomong(txt):
speech.say(txt,'id',0.25)
@git-bee
git-bee / memory_cards.py
Created May 24, 2014 11:13
Memory Cards - Pythonista
# Memory Card Game
#
# In this game, you have to find matching pairs of cards.
# This scene consists entirely of layers and demonstrates some
# interesting animation techniques.
#
# Originally sample of Pythonista app.
# Modified and enhanced by @beezing.
# Added more image theme and simple scoring.
@git-bee
git-bee / minesweeper - enhanced
Last active August 29, 2015 14:01
Minesweeper - Pythonista
# Minesweeper game for iOS in Python (requires Pythonista)
# Author: Maurits van der Schee <maurits@vdschee.nl>
# Sprites: http://www.curtisbright.com/msx/
# Further modification: @beezing
from PIL import Image
from StringIO import *
from base64 import b64decode
from datetime import datetime