Skip to content

Instantly share code, notes, and snippets.

@ir-g
Last active December 19, 2015 10:59
Show Gist options
  • Save ir-g/5944459 to your computer and use it in GitHub Desktop.
Save ir-g/5944459 to your computer and use it in GitHub Desktop.
WebAppProject
http://huseyincakir.wordpress.com/2013/02/01/html-into-an-android-application-html-to-apk/
http://phonegap.com/
http://effbot.org/tkinterbook/tkinter-index.htm
https://github.com/TiddlyWiki/tiddlywiki
http://blog.thomasupton.com/2010/12/pastebin-from-the-commandline/
from Tkinter import *
def lol():
print(lol)
return
# create a root window
root = Tk()
root.title("Haii")
root.geometry("200x85")
# create a frame in the window to hold other widgets
app = Frame(root)
app.grid()
lbl = Label(app, text = "Hello World!")
lbl.grid()
bttn1 = Button(app, text = "Die", command=lol)
bttn1.grid()
l1 = Label(root, text="Username")
#New Text Box
e1 = Entry(root)
l1 = Label(root, text="Password")
#New Text Box
e2 = Entry(root)
e1.grid() #Add to grid
e2.grid() #Add to grid
root.mainloop()
https://gist.github.com/isaacrg/5944459/raw/app.txt
https://gist.github.com/isaacrg/5944459/raw/urls.txt
http://purecss.io/
http://projects.jga.me/routie/#toc1
https://github.com/Fluidbyte/PHileAPI
Layouts:
http://purecss.io/layouts/email/#nav
http://purecss.io/layouts/blog/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment