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
<?php | |
// Welcome to Ignite | |
// Ignite is a new way to share, run and save code. | |
// | |
// You can get started by simply writing code, or pasting your | |
// existing code here. After that you can hit Play or Save. | |
// Playing code automatically compiles and saves it. | |
// | |
// If you find any problems feel free to join us on irc at | |
// irc.esper.net #axxim or email me at [email protected] |
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
FugWorld Rotations | |
== Convoy == | |
ctf_convoy | |
ctf_convoy_storm | |
== Back to Bearsics == | |
cp_dustbowl | |
pl_thunder_mountain | |
ctf_doublecross |
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
<?php | |
// Welcome to Ignite | |
// Ignite is a new way to share, run and save code. | |
// | |
// You can get started by simply writing code, or pasting your | |
// existing code here. After that you can hit Play or Save. | |
// Playing code automatically compiles and saves it. | |
// | |
// If you find any problems feel free to join us on irc at | |
// irc.esper.net #axxim or email me at [email protected] |
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
data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCACWASwDASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD5UooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKK |
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
//filled circle | |
float x1,y1,x2,y2; | |
float angle; | |
double radius=0.1; | |
x1 = 0.5,y1=0.6; | |
glColor3f(1.0,1.0,0.6); | |
glBegin(GL_TRIANGLE_FAN); | |
glVertex2f(x1,y1); |
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
output starts here | |
string(12) "test_handler" | |
end output | |
Received string from sandbox: 20 bytes long. | |
FOO | |
BARISH | |
BAZIMBLY |
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
<ul class="nav nav-list span3"> | |
<li class="nav-header">List header</li> | |
<li class="active"><a href="#">Home</a></li> | |
<li><a href="#">Library</a></li> | |
</ul> |
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
def test_json(): | |
import requests | |
r = requests.get('https://api.github.com/users/clone1018') | |
json = r.json | |
print json # How do I get something I can work with? |
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
def default(self): | |
droplets = do.show_active_droplets() | |
table = PrettyTable(['Status', 'Name', 'Size', 'Region', 'Image', 'Backups']) | |
# Type == List | |
regions = do.regions() | |
images = do.images() | |
sizes = do.sizes() |
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
import json | |
fname = "count" | |
def count_lines(fname): | |
with open(fname) as f: | |
for i, l in enumerate(f): | |
pass |