Skip to content

Instantly share code, notes, and snippets.

View amigojapan's full-sized avatar

Usmar A Padow amigojapan

View GitHub Profile
for X in range (2,13):
print("")
for Y in range (2,13):
print(str(X)+"x"+str(Y)+"="+str(X*Y))
##Atbash cypher used in the bible https://en.wikipedia.org/wiki/Atbash#In_the_Bible
##caeser cypher https://en.wikipedia.org/wiki/Caesar_cipher
##rot13 cypher https://en.wikipedia.org/wiki/ROT13
alphabet=["a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"]
Atbash=list(reversed(alphabet))
caesar=["x","y","z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w"]
rot13=["n","o","p","q","r","s","t","u","v","w","x","y","z","a","b","c","d","e","f","g","h","i","j","k","l","m"]
encrypted_text=""
plain_text=""
#include <string.h> │aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
│aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
void premio() │aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
{ │aaaaaaaa
printf("I have altered the programs│
flow\n"); │Program received signal SIGSEGV, Segmen
} │tation fault.
│0x0000006161616161 in ?? () (this is th
int main(int argc, char *argv[]) │e value of EIP beacuse of the letter a)
{ │(gdb)
distributed burden calendar. by amigojapan
The half day calendar is a new calendar that would run in parallel with the gregorian calendar.
the basic idea is that people would rest half the days of the week and work half the days of the week.
first we would have a 10 day week, we would have 2 teams of workers, team A and team B, we would basically have 5 days work
and five days off of the 10 day week, but in order to have 100 days off in a row, instead we would work 6 days per week and
rest 4 days, but every 1000 days we would have 100 days off, but since 1000 days it too long, we would instead work 500 days
and rest 50 days, or even just 25 days every 250 days.
having 2 teams of workers would not only help work less, but it would also improve efficiency in a company cause there would
be no days off.
love mommy copyright 2017 amigajachan & Usmar A. Padow(amigojapan) “all rights reserved”
mask of an oni https://wing-auctions.c.yimg.jp/sim?furl=auctions.c.yimg.jp/images.auctions.yahoo.co.jp/image/dr177/auc0303/users/1/5/1/2/minako_kyo-img398x399-145283677802ivbw21574.jpg&dc=1&sr.fs=20000
part 1
at a certain country there was a girl that liked to draw pictures very much…
her house was in the entrance to the forest she lived inside big tree
this house was a little strange, the entreance was in the shape of a clover
and her windows were in heart shapes and had stained colorful glass
her bed was made out of hay
Story of the Padow family
The Padow family is a family of international Jewish immigrants that come from Lithuania and Poland. We escaped from the tzar who was oppressing the Jews. Back in Lithuania the Padow family name used to be called Ezra. Which became Ezrahovich which apparently for some reason to do with Padua Italy the name was changed to Padovich. When my great grandparents arrived at Elis island. The authorities did not understand their last name and changed it to Padow. My grand parents Alexander (born 1911 died at age 90) and Lilian (lived 97 years) where born in the United States in New York's lower east side and eventually moved to Brooklyn where my father Robert Padow was born. They finally went to live in West Palm Beach FL. My grandfather was a chemist and my grandmother an English teacher. My granparen’s hobby was playing bridge, here is an article in the NY Times about them:
My father (Robert Frank, July 1940 - July 2013) was a piano tuner and aspiring movie writer. He immigrated to Mexic
server$ = "irc.freenode.net"
nick$ = "you_nick_here"
channel$ = "#qb64"
client = _OPENCLIENT("TCP/IP:6667:" + server$)
line$ = "nick " + nick$ + CHR$(10) + CHR$(13) + "user a a a a" + CHR$(10) + CHR$(13)
PUT #client, , line$: SLEEP 2
line$ = "join " + channel$ + CHR$(10) + CHR$(13)
PUT #client, , line$: SLEEP 2
DO
SCREEN 13
LOCATE 10, 10
PRINT "PLAY THE PIANO USING THE KEYS"
DO
k$ = UCASE$(INKEY$)
x = USMRND(1, 320)
y = USMRND(1, 200)
IF k$ <> "" THEN
CIRCLE (x, y), y, y
PAINT (x, y), x, y
using System;
class Program{
static void Main(string[] args){
if (!args.Any()){
Console.WriteLine("args is null");
Environment.Exit(1);
}else{
switch(args[0]) {
case "1":
import turtle
turtle.clear()
def square(x):
for counter in range(4):
turtle.fd(x)
turtle.rt(90)
def chair(l):
square(l);
turtle.fd(l*2);
def chairchain(l):