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
| # | |
| # Copyright (C) 2007-2009 OpenWrt.org | |
| # | |
| # This is free software, licensed under the GNU General Public License v2. | |
| # See /LICENSE for more information. | |
| # | |
| include $(TOPDIR)/rules.mk | |
| PKG_NAME:=luars232 |
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
| /* | |
| Simple WebSocketServer Example | |
| http://github.com/muthesius/WebSocketP5 | |
| */ | |
| import muthesius.net.*; | |
| import org.webbitserver.*; | |
| WebSocketP5 socket; |
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
| -- networktest to transmit data from vvvv to codea | |
| -- jens.a.e — 18.01.2013 | |
| -- this example demostrates the connection to vvvv. it depends on a patch running | |
| -- on the remote machine. it is easy to build: | |
| -- the v4 patch contains just a lof -> asstring -> http(server) | |
| -- the server should be set to text/plain to send the least amount | |
| -- of data needed. thisna double in the patch. an int should be | |
| -- even less to trans to transmit. |
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
| -- networktest to transmit data from vvvv to codea | |
| -- jens.a.e — 18.01.2013 | |
| -- this example demostrates the connection to vvvv. it depends on a patch running | |
| -- on the remote machine. it is easy to build: | |
| -- the v4 patch contains just a lof -> asstring -> http(server) | |
| -- the server should be set to text/plain to send the least amount | |
| -- of data needed. thisna double in the patch. an int should be | |
| -- even less to trans to transmit. |
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
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-type" content="text/html; charset=utf-8"> | |
| <title>Sockettester</title> | |
| <script src="js/jquery.js" type="text/javascript" charset="utf-8"></script> | |
| <script type="text/javascript" charset="utf-8"> | |
| $(function() { | |
| var ws = null; |
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
| /* | |
| Simple WebSocketServer Example | |
| http://github.com/muthesius/WebSocketP5 | |
| */ | |
| import muthesius.net.*; | |
| import org.webbitserver.*; | |
| WebSocketP5 socket; |
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
| #!/usr/bin/env ruby -wKU | |
| require 'open-uri' | |
| index = 0 | |
| out = "" | |
| `pbpaste`.split(" ").each do |link| | |
| open(link).read =~ /<title>(.*?)<\/title>/ | |
| if $1 | |
| title = "\"#{$1}\"" | |
| else | |
| title = "" |
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
| Bonjour le monde! |
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
| // ===================== | |
| // = Canvas Sandbox :) = | |
| // ===================== | |
| $('<canvas id="mein-canvas"></canvas>').prependTo('body') | |
| $('#mein-canvas').paper(function(event) { | |
| // draw dots 10px by 10px away from the click point | |
| this.onMouseDown = function(event) { | |
| console.log("lkjaskdjk") | |
| var point = new paper.Point(10, 10) | |
| var circle = new paper.Path.Circle(event.point.add(point), 5); |
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
| /** | |
| * position: relative und absolute im Zusammenspiel | |
| */ | |
| /* | |
| Zum "Debuggen" entferne bei der folgenden | |
| Regel einfach den Kommentar: */ | |
| * { | |
| /* outline: 1px solid black; */ | |
| } |