Skip to content

Instantly share code, notes, and snippets.

@theoparis
Forked from devils-ey3/webdev_online_resources.md
Last active May 6, 2019 14:35
Show Gist options
  • Save theoparis/f61f551fb4ebdc997a13824a4691b3f9 to your computer and use it in GitHub Desktop.
Save theoparis/f61f551fb4ebdc997a13824a4691b3f9 to your computer and use it in GitHub Desktop.
Online Resources For Developers (No Downloading)

GENERATORS:

IMAGE RESOURCES:

CODE OPTIMIZATION:

CONVERTERS:

IMAGE COMPRESSION:

VALIDATION & COMPATIBILITY:

IN BROWSER CODING:

SNIPPET TOOLS:

COLOR & DESIGN:

RESPONSIVENESS:

WIREFRAME:

SPEED TEST:

OTHER:

Python 3 Cheat Sheet

Print:

print("Hello World!")

Comments:

# This is a comment that gets ignored unlike the rest of the code!

Functions:

def doSomething(stringParam):
    print(stringParam)

Classes & Class Functions:

class Person:
    def __init__(self, name, age):
        self.name = name
        self.age = age

Class Objects:

p1 = Person("Jacob", 17)

print(p1.name)
print(p1.age) 

More Coming Soon!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment