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
| body { | |
| margin-top: 30px; | |
| } | |
| .feld { | |
| overflow: hidden; | |
| } | |
| .feld div.reihe div { | |
| float: left; |
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 charset=utf-8 /> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <p id="hello"></p> | |
| </body> | |
| </html> |
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
| Array(10).join("wat" - 1) + [32, 66, 97, 116, 109, 97, 110, 33].map(function(e){ return String.fromCharCode(e); }).join(""); |
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
| @echo off | |
| setlocal | |
| if not exist "%~dpn0.sh" echo Script "%~dpn0.sh" not found & exit 2 | |
| set _CYGBIN=C:\cygwin\bin | |
| if not exist "%_CYGBIN%" echo Couldn't find Cygwin at "%_CYGBIN%" & exit 3 | |
| :: Resolve ___.sh to /cygdrive based *nix path and store in %_CYGSCRIPT% | |
| for /f "delims=" %%A in ('%_CYGBIN%\cygpath.exe "%~dpn0.sh"') do set _CYGSCRIPT=%%A |
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 charset=utf-8 /> | |
| <title>JS Bin</title> | |
| <style> | |
| body { | |
| height: 2000px; | |
| } | |
| .arrow { |
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
| #region usings | |
| using System; | |
| using System.ComponentModel.Composition; | |
| using VVVV.PluginInterfaces.V1; | |
| using VVVV.PluginInterfaces.V2; | |
| using VVVV.Utils.VColor; | |
| using VVVV.Utils.VMath; | |
| using VVVV.Core.Logging; |
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
| ### | |
| The true true | |
| ### | |
| true is not false | |
| true isnt false | |
| yes isnt off | |
| yes and no is not true |
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
| /* | |
| An approach on using attachInterrupt with multiple instances of a class | |
| jens@lea.io, march 2013 | |
| */ | |
| // *** The following classes should be put into external files... | |
| #define MAX_IRQ_CLASSES 8 |
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 PATCH SYSTEM "http://vvvv.org/versions/vvvv45alpha29.1.dtd" > | |
| <PATCH nodename="C:\Users\Administrator\Desktop\StringStatistics.v4p" systemname="StringStatistics" filename="C:\Users\Administrator\Desktop\StringStatistics.v4p"> | |
| <BOUNDS type="Window" left="255" top="0" width="19485" height="13170"> | |
| </BOUNDS> | |
| <NODE systemname="IOBox (String)" nodename="IOBox (String)" componentmode="InABox" id="1"> | |
| <BOUNDS type="Node" left="1095" top="225" width="100" height="100"> | |
| </BOUNDS> | |
| <BOUNDS type="Box" left="1095" top="225" width="795" height="240"> | |
| </BOUNDS> | |
| <PIN pinname="Input String" slicecount="1" values="|Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.|"> |
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
| # Muthesius VVz scraper to collect a data set for the Seminar | |
| # 23.2.2013, Muthesius Kunsthochschule, Kiel | |
| req = | |
| Semester: "Wintersemester 2012/13" | |
| #studiengaenge: 8 | |
| studiengaenge: "Studiengang, Institut oder Zentrum wählen" | |
| HOST = "http://dvl.muthesius-kunsthochschule.de/de/" | |
| URL = "veranstaltung_uebersicht.php" |