I hereby claim:
- I am 5shekel on github.
- I am shekel (https://keybase.io/shekel) on keybase.
- I have a public key whose fingerprint is 351B E83D 6EC0 DE0B 714B 534A 339B E23F 9598 C2A8
To claim this, I am signing this object:
vlc.exe "inputVideo.mp4" --fullscreen --no-mouse-events --loop --no-osd --no-audio |
// ATMEL ATTINY85 running @ 8MHz / ARDUINO **Zvi Schneider 12-May-2014** | |
// +----\/---+ | |
// ADC0, PB5, 1|* |8 VCC | |
// ADC3, PB3, 2| |7 PB2, ADC1 | |
// ADC2, PB4, 3| |6 PB1, | |
// GND 4| |5 PB0, | |
// +---------+ | |
#define my_milisec 76 // 76 interrupts equal 1 mili-sec (approximatly) | |
#define interval 100 //100 mili-sec interval between repetetive code transmitions |
@echo off | |
echo GOING TO PROCESS: | |
@echo %* | |
echo location of movie thumbnail http://moviethumbnail.sourceforge.net/ | |
set MTN=M:\bin\mtn\mtn.exe | |
echo %MTN% | |
echo output folder |
/***fresh prince injector***/ | |
/* | |
we are running this on an ATtami dev board http://telavivmakers.org/ATtami | |
based on digispark keyboard library example code https://github.com/digistump/DigistumpArduino/blob/master/hardware/digistump/avr/libraries/DigisparkKeyboard/examples/Keyboard/Keyboard.ino | |
and all this possible beaucse of V-USB ! http://www.obdev.at/products/vusb/projects.html | |
this code basicly makes the ATtiny85 identfiy as a keyboard and will inject | |
select prose onto user text boxs (when in focus) |
// an alternative to the goStepper2 function from GRslider | |
void goStepper2(int i_dest, int i_velocity){ | |
//takes the various cntrols for the slider stepper2 | |
// and starts to moves the stepper | |
stepper2.enableOutputs(); | |
//velocity between 0-127 | |
//so we map it to ,mybe 10 diffrent values | |
i_velocity = map(i_velocity,0, 127, 0, 10); | |
//then we use this to grab a value from our spd2 array |
clip1 = CoronaSequence("M:\TimeSnapper_Snapshots\2011-01-01\*.jpg",textmode=3, expression="midstr(filename,25,25)",y=0).crop(0,0,1920,1080) | |
clip2 = CoronaSequence("M:\TimeSnapper_Snapshots\2011-01-02\*.jpg",textmode=3, expression="midstr(filename,25,25)",y=0).crop(0,0,1920,1080) | |
clip3 = CoronaSequence("M:\TimeSnapper_Snapshots\2011-01-03\*.jpg",textmode=3, expression="midstr(filename,25,25)",y=0).crop(0,0,1920,1080) | |
clip1+clip2 +clip3 | |
ConvertToYV12() |
I hereby claim:
To claim this, I am signing this object:
<?php | |
$script="http://".$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF']; | |
$sourceHTML = file_get_contents('wall.html'); | |
preg_match("/(.*?<body.*?>)(.*)(<\/body.*$)/is", $sourceHTML, $matches);//(.*)(<\/body.*$) | |
$top = $matches[1]; | |
$contents = $matches[2]; | |
$bottom = $matches[3]; | |
$top= str_replace("</head>", '<script src="js/jquery-1.6.4.min.js" type="text/javascript"></script>'."\n".'<script src="js/jquery.autopager-1.0.0.js" type="text/javascript"></script></head>', $top); | |
$inserts=""; |
#go to an iba.org.il stream page | |
#open chrome debugger > network tab | |
# copy playlist .m3u > https://imgur.com/EVdjB9A | |
#curl that .m3u | |
#you will get a a list of sub playlists, with diff bitrates. | |
#get the last m3u (highest bitrate) | |
# grab all .ts files | |
curl http://82.80.192.28/iba_vod/_definst_/smil:iba-JOtQy1-R5f4.smil/chunklist_w1953643242_b1992000_pd33000.m3u8 | grep ts | (while read f; do curl -O http://82.80.192.28/iba_vod/_definst_/smil:iba-JOtQy1-R5f4.smil/$f; done) |
// - - - - - | |
// DmxSerial - A hardware supported interface to DMX. | |
// DmxSerialSend.ino: Sample DMX application for sending 3 DMX values: | |
// | |
// Copyright (c) 2011 by Matthias Hertel, http://www.mathertel.de | |
// This work is licensed under a BSD style license. See http://www.mathertel.de/License.aspx | |
// | |
// Documentation and samples are available at http://www.mathertel.de/Arduino | |
// 25.07.2011 creation of the DmxSerial library. | |
// 10.09.2011 fully control the serial hardware register |