Twitter: https://twitter.com/minecraftteachr
Project: http://minecraftedu.com/ - customised Minecraft for Education.
World library by age/learning: http://services.minecraftedu.com/worlds/
<html><head> | |
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> | |
<!-- This software application is Twitter-Ware. If you like it, | |
use it, or have something to say, follow and tell me on Twitter | |
at @codemonkeyism | |
http://twitter.com/codemonkeyism | |
Blog at http://www.codemonkeyism.com | |
Webssite http://www.simple-kanban.com | |
See MIT license at bottom. |
with(A.getContext('2d'))new EventSource('events').onmessage=function(e){for(m in a=e.data.split(" "))fillStyle="rgb("+a[m],fillRect(m,o,1,1);o=a<'x'&&o+1} |
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<title>The Title Of Your Presentation</title> | |
<!-- Your Slides --> | |
<!-- One section is one slide --> | |
<section> | |
<!-- This is the first slide --> |
#! /usr/bin/env python | |
import string | |
line = "uhifjuhxzxfrrevuweyoj6578chwo91tyux386c09c794l5m85p99387591890" | |
alphabet = string.ascii_lowercase | |
digits = string.digits | |
num = 13 | |
str="" |
<html> | |
<head> | |
<title>Tutorial Dados.gov.pt!</title> | |
<script type="application/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script> | |
<script type="application/javascript"> | |
function aminhafuncao(data) { | |
res = "<table><tr><th>DRE</th><th>Concelho</th><th>Número de Alunos</th></tr>"; | |
for(row in data.d) { | |
res = res + "<tr><td>" + data.d[row].dre + "</td><td>" + data.d[row].concelho + "</td><td>" + data.d[row].total + "</td><tr>";; | |
} |
// ==UserScript== | |
// @name Hootsuite promoted tweets never more | |
// @namespace http://localhost | |
// @description Remove hootsuite promoted tweets | |
// @include https://hootsuite.com/dashboard* | |
// @version 1 | |
// ==/UserScript== | |
function addCss(cssString) { | |
var head = document.getElementsByTagName('head')[0]; |
<link rel="import" href="../core-scaffold/core-scaffold.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../core-menu/core-menu.html"> | |
<link rel="import" href="../core-item/core-item.html"> | |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-menu/core-submenu.html"> | |
<link rel="import" href="../google-map/google-map.html"> | |
<polymer-element name="my-element"> |
#! /bin/bash | |
# Configuration | |
ACCEPTED_CONTAINER_FORMATS=MPEG-4 | |
ACCEPTED_VIDEO_FORMATS=AVC | |
ACCEPTED_VIDEO_PROFILES="[email protected] [email protected] [email protected]" | |
ACCEPTED_AUDIO_FORMATS=AAC | |
DEBUG=0 | |
# Just code, not configurable |
Twitter: https://twitter.com/minecraftteachr
Project: http://minecraftedu.com/ - customised Minecraft for Education.
World library by age/learning: http://services.minecraftedu.com/worlds/
class User(DeclarativeBase): | |
__tablename__ = 'sys_user' | |
user_id = Column(Integer, autoincrement=True, primary_key=True) | |
email = Column(Unicode(100)) | |
name = Column(Unicode(100)) | |
class UserLog(DeclarativeBase): | |
__tablename__ = 'sys_user_log' |