Last active
December 19, 2015 10:59
-
-
Save ir-g/5944459 to your computer and use it in GitHub Desktop.
WebAppProject
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://gist.github.com/isaacrg/5944459/raw/app.txt | |
https://gist.github.com/isaacrg/5944459/raw/urls.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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