This file contains 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
print("Haha") |
This file contains 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
// Range : 170 - 1015 | |
int range = 1015 - 170; | |
boolean state = false; | |
void setup() { | |
Serial.begin(9600); |
This file contains 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
# For complete documentation of this file, please see Geany’s main documentation | |
# no syntax highlighting yet | |
# default extension used when saving files extension=asciidoc | |
# the following characters are these which a "word" can contains, see documentation #wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 | |
# single comments, like # in this file comment_single=// # multiline comments #comment_open=//// #comment_close=//// |
This file contains 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
# Render Test | |
import bpy | |
from bpy.props import * | |
#Setup Radio Button Enum Props | |
bpy.types.Scene.rtSizeEnum = bpy.props.EnumProperty( \ | |
items = [('Half', 'Half', 'Half the size of the render rez'),\ | |
('Quarter', 'Quarter', 'Quarter the size of the render rez'),\ |
This file contains 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
usage: ffmbc [options] [[infile options] -i infile]... {[outfile options] outfile}... | |
Main options: | |
-L show license | |
-h show help | |
-? show help | |
-help show help | |
--help show help | |
-version show version |
This file contains 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
ffmpeg version N-37724-ga3c4371 Copyright (c) 2000-2012 the FFmpeg developers | |
built on Feb 11 2012 00:22:20 with gcc 4.6.1 | |
configuration: --enable-gpl --enable-nonfree --enable-frei0r | |
libavutil 51. 39.100 / 51. 39.100 | |
libavcodec 54. 1.100 / 54. 1.100 | |
libavformat 54. 0.100 / 54. 0.100 | |
libavdevice 53. 4.100 / 53. 4.100 | |
libavfilter 2. 62.100 / 2. 62.100 | |
libswscale 2. 1.100 / 2. 1.100 | |
libswresample 0. 6.100 / 0. 6.100 |
This file contains 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
/* | |
---------------------------------------------------------------------------- | |
-- metadatareader.c | |
-- read the 128x16bit block via piped stdin and display it in a human | |
-- readable format | |
-- Version 1.0 | |
-- | |
-- Copyright (C) 2013 Sebastian Pichelhofer | |
-- | |
-- This program is free software: you can redistribute it and/or |
This file contains 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
#include "ch.h" | |
#include "hal.h" | |
#include "leds.h" | |
#include "hsv2rgb.h" | |
int main(void) { | |
halInit(); | |
chSysInit(); |
This file contains 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
*void _physicalTransfer (&objectID cellphone, &obj destHand, gl_vec3 &vector){}; |
This file contains 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
function displayView($view, $id = 0) | |
... | |
case 'save': | |
$tpl_vars = array(); | |
if (isset($_GET['url'])){ | |
$tpl_vars['url'] = $_GET['url']; | |
} | |
if (isset($_GET['encoded_url'])){ | |
$tpl_vars['encoded_url'] = $_GET['encoded_url']; | |
} |
OlderNewer