Skip to content

Instantly share code, notes, and snippets.

View esamattis's full-sized avatar

Esa-Matti Suuronen esamattis

View GitHub Profile
We couldn’t find that file to show.
// ...
/*float total;
int todivide;
//Smooth opacityother
for(i=0;i<size;i++){
for(j=0;j<size;j++){
total=0;
todivide=0;
Report '_print_connections'
do ~from>()~to.()
{
'<' id '>'
subreport '_print_connections' run
'</' id '>'
newline
#!/bin/sh
# This is called from /etc/rc.local to perform the initial setup.
# We always bootup in AP mode. Delete any stale files
rm -f /etc/wlanclient.mode
SSID=Plug2-uAP-`ifconfig eth0 | awk -F ":" '/HWaddr/ {print $6$7}'`
insmod /root/uap8xxx.ko
ifconfig uap0 192.168.1.1 up
var aspect = (function(parts){
return parts[1] / parts[0];
}(m3media.sdh264.aspect.split(":")));
background-image:url('kuva.png');
background-repeat:no-repeat;
background-attachment:fixed;
background-position: left bottom;
from zope.interface import Interface
from five import grok
class Debug(grok.View):
grok.context(Interface)
grok.require('cmf.ManagePortal')
def render(self):
from five import grok
from Products.ATContentTypes.interfaces.topic import IATTopic
class HackPortalView(grok.View):
grok.context(IATTopic)
grok.require('zope2.View')
grok.name("portalview-boxview")
(function($){
/**
* Force textareas to have as many rows as there are lines.
*/
$.fn.dynamicRows = function(){
var normalizeRows = function(){
$(this).attr("rows", $(this).val().split("\n").length);
};