Skip to content

Instantly share code, notes, and snippets.

View tchalvak's full-sized avatar
🐙
making another SPA

Roy R. tchalvak

🐙
making another SPA
View GitHub Profile
@tchalvak
tchalvak / WhatTheFuckLNWhyDoYouActThisWay
Created December 29, 2014 18:36
WhatTheFuckLNWhyDoYouActThisWay
mkdir temp
cd temp
mkdir deploy
echo "Contents of the build file!" > deploy/resources.build.php
ln -s deploy/resources.build.php deploy/resources.php
cat deploy/resources.php
echo "That cat should work, but it doesn't, how the flip do people create symlinks in subdirectories then? So weird."
@tchalvak
tchalvak / recursive_integer_maximum
Created April 8, 2015 15:00
recursive_integer_maximum
<?php
// Recursively determine the max
// Does not handle badly formed input
// Not yet optimized for performance
function my_max( $data ) {
$max = null;
foreach($data as $elem){
$new_max = is_array($elem)? my_max($elem) : $elem;
$max = $new_max > $max? $new_max : $max;
<?php
// Recursively determine the max
// Does not handle badly formed input
// Not yet optimized for performance
function my_max( $data ) {
if(is_int($data)){
return $data; // end of the line, just return the int
}
$max = null;
var myTeam = this.team;
var eSoldiers = [];
var itemUpdateDelay = 0.5;
var itemTimer = 0;
var soldiersCount = 0;
var goldStormCD = 0;
var firstBlast = true;
var initiate = false;
var atkType = 2;
var manaBlastCD = this.now();
RRrrandom gist test!
How do I shot webs?
void function afunctionzors(){
sprintf("pie");
}
} else if ($victom == "Group of Theives") {
$turn_cost = 1;
if (getcounter($username) <5) {
echo "A group of theives is waiting for you. They seem to be angered by your attacks on their Theif brethren."
$Group_attack= rand(200, 500)
if (!subtracthealth($username, $Group_attack)
<?php
} else if ($victom == "Thief") { // You only get ganged up on by the thieves if you're already trying to attack the theif.
// Check the counter to see whether they've attacked a thief multiple times in a row.
if(SESSION::get('counter')){
$counter = SESSION::get('counter');
} else {
$counter = 1;
}
$counter = $counter + 1;
@tchalvak
tchalvak / gist:233163
Created November 12, 2009 18:47
Gallery2 include names.
public $includes = array(
"list" => array(
"desc" => "List of images and image detail"),
"toplevel" => array(
"desc" => "List of top-level categories only",
"fixed" => array(
"action" => "toplevel")),
"nestedlevels" => array(
"desc" => "List of all category depths",
"default" => array(
Experience System Goals:
Disincentivize spamming by rewarding risk
(i.e. winning against a single strong target should be more rewarding than winning against the equivalent hp of many weak targets)
(and actually taking damage should be more rewarding than taking no damage)
Reward tactics, better damage with the same tools, more than spamming.
(e.g. rewards for a kill instead of just a hit and run)
(and more experience for damage done)
(and eventually additive use of effects like poison)
Reward difficulty