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
<?php | |
/* | |
* Load controllers for setting up manual controller routes to allow for dynamic custom page routes | |
* */ | |
$controllers = array(); | |
foreach (scandir( APPPATH . "controllers" ) as $file) { | |
$fileParts = explode(".", $file); | |
if ($fileParts[1] === "php") | |
array_push($controllers, $fileParts[0]); |
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
val cyan = new HSBColor(hue = 180, saturation = 65) | |
val bgColor: RGBColor = cyan | |
override def draw() { | |
background( bgColor ) | |
stroke( new RGBColor(red = 255, green = 200, blue = 150) ) | |
// draw something | |
} |
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
Interpolation( start: Float, end: Float, duration: Float = 120f, fn: ( Float, Float, Float, Float ) => Float = Interpolation.linear, | |
repeat: Float = Float.PositiveInfinity, direction: Interpolation.Direction.Direction = Interpolation.Direction.Normal ) |
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
object RedFlashSketch extends ProcessingSketch { | |
val redInterpolation = new Interpolation( 0, 255, 60, Interpolation.easeInOutSine, Interpolation.Direction.Alternate ) | |
override def draw() { | |
background( new RGBColor( red = redInterpolation.value, green = 0, blue = 0 ) ) | |
redInterpolation.update | |
} | |
} |
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 node | |
const path = require('path') | |
const exec = require('child_process').exec | |
const cmd = `ag "import .* from '" -G "${process.argv[2] || 'lib/'}" --nogroup | sed -e "s/:.*from//g" -e "s/'//g" | sed "s/^\\(.*\\.js\\) \\(.*\\)$/\\1 \\2/"` | |
exec(cmd, (error, stdout, stderr) => { | |
if (error) { | |
console.error('Error ocurred:', error) | |
} else { |
OlderNewer