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
#define PRODUCTION_BUILD | |
#define SUPPRESS_LOGS | |
using System; | |
public class StringAllocTest { | |
public static void Main(string[] args) { | |
Random random = new Random(); | |
var variable_here_so_runtime_allocation_needed = random.Next(0, 1000000); | |
Log("HERE IS A VERY LONG STRING, AND IT MIGHT " + variable_here_so_runtime_allocation_needed + " BE SO LONG THAT HEAP MEMORY MUST BE ALLOCATED TO STORE IT OMG!"); //, false); | |
} |
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
2017-05-11 16:00:00 1832.97 USD -0.06% 619.75 + 0.0447 null 1.91% 0.031060 BTC 2897.41 USD 195.43% +61.48% | |
{ days: 90, | |
profit_stop_enable_pct: 10, | |
profit_stop_pct: 1, | |
sell_rate: -0.006, | |
trend_ema: 36, | |
period: '1h', | |
strategy: 'trend_ema_rate', | |
sell_stop_pct: 4, | |
buy_stop_pct: 0, |
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
'use strict'; | |
var paper = require('paper'); | |
paper.setup(new paper.Size(2048, 1440)); | |
function ShapeIntersection() { | |
var diamond0 = new paper.Path.RegularPolygon(new paper.Point(0, 0), 4, 100); | |
diamond0.rotate(45.0); |
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
CONFIG_ARM=y | |
CONFIG_ARM_HAS_SG_CHAIN=y | |
CONFIG_MIGHT_HAVE_PCI=y | |
CONFIG_SYS_SUPPORTS_APM_EMULATION=y | |
CONFIG_HAVE_PROC_CPU=y | |
CONFIG_STACKTRACE_SUPPORT=y | |
CONFIG_LOCKDEP_SUPPORT=y | |
CONFIG_TRACE_IRQFLAGS_SUPPORT=y | |
CONFIG_RWSEM_XCHGADD_ALGORITHM=y | |
CONFIG_GENERIC_HWEIGHT=y |
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
ext2load mmc 0 0x48000000 uImage | |
ext2load mmc 0 0x43000000 sun7i-a20-bananapi.dtb | |
setenv bootargs console=ttyS0,115200 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline rootwait panic=10 ${extra} | |
bootm 0x48000000 |
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
bootargs=console=ttyS0,115200 console=tty0 disp.screen0_output_mode=EDID:1280x720p50 hdmi.audio=EDID:0 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline rootwait | |
aload_script=fatload mmc 0 0x43000000 script.bin; | |
aload_kernel=fatload mmc 0 0x48000000 uImage; bootm 0x48000000; | |
uenvcmd=run aload_script aload_kernel |
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
#!/bin/bash | |
rm -rf build | |
mkdir -p build | |
echo "[INFO] Creating u-boot for bananapi" | |
if [ ! -d u-boot-bananapi ]; then | |
git clone https://github.com/LeMaker/u-boot-bananapi.git | |
elif [ -d u-boot-bananapi ]; then | |
( cd u-boot-bananapi && git pull ) |
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
#!/bin/bash | |
rm -rf build | |
mkdir -p build/boot | |
echo "[INFO] Creating u-boot-bananapi" | |
if [ ! -d u-boot-bananapi ]; then | |
git clone https://github.com/LeMaker/u-boot-bananapi.git | |
elif [ -d u-boot-bananapi ]; then | |
( cd u-boot-bananapi && git pull ) |
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
// total number of samples at each fragment | |
#define NUM_SAMPLES {{ numSamples }} | |
#define NUM_SPIRAL_TURNS {{ numSpiralTurns }} | |
#define USE_ACTUAL_NORMALS {{ useActualNormals }} | |
#define VARIATION {{ variation }} | |
uniform sampler2D sGBuffer; |
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
// circles by @davidppp | |
#ifdef GL_ES | |
precision mediump float; | |
#endif | |
uniform float time; | |
uniform vec2 mouse; | |
uniform vec2 resolution; |
NewerOlder