Full-page background made with JavaScript and Canvas: the animation follows movement on non-touch devices
Forked from Marco Guglielmelli's Pen Animated Background.
#!/bin/bash | |
if [[ "$1" = "-h" || "$1" = "--help" || $1 = "help" || $1 = "man" ]] | |
then | |
echo "A tiny script to run a command against PHP 5.3, 5.4, 5.5 and 5.6 using homebrew" | |
echo | |
echo -e "\033[34mUsage:\033[0m" | |
echo -e "\033[34m------\033[0m" | |
echo -e " \033[32m$0\033[0m \033[33m<command>\033[0m" | |
echo |
Ca nécessite à minima : | |
html5shiv : https://github.com/aFarkas/html5shiv | |
base64 : https://code.google.com/p/stringencoders/source/browse/trunk/javascript/base64.js?r=230 | |
JSON 2 : https://github.com/douglascrockford/JSON-js/blob/master/json2.js | |
Respond : https://github.com/scottjehl/Respond | |
Polyfills de toutes les méthodes de Array, Object, String, telles que (non exhaustif) : | |
- Object.keys https://github.com/MathRobin/object.keys | |
- Object.create https://github.com/MathRobin/object.create |
#!/bin/bash | |
echo "Project setup"; | |
echo -n "What is your project name ['Test']:> "; | |
read project_name; | |
echo "Postgresql setup"; | |
echo -n "What is your Postgresql username [$USER]:> "; | |
read db_username; | |
echo -n "What is this user's password (empty if none) [] :> "; | |
read db_password; |
Full-page background made with JavaScript and Canvas: the animation follows movement on non-touch devices
Forked from Marco Guglielmelli's Pen Animated Background.
<?php | |
register_tick_function(function() { | |
$bt = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1); | |
$last = reset($bt); | |
$info = sprintf("%s +%d\n", $last['file'], $last['line']); | |
file_put_contents('/tmp/segfault.txt', $info, FILE_APPEND); | |
// or | |
// file_put_contents('php://output', $info, FILE_APPEND); | |
}); |
#!/bin/bash | |
# | |
# The MIT License (MIT) | |
# | |
# Copyright (c) 2014 Mathias Leppich <[email protected]> | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
$tab-border-color: $tabs-navigation-bg-color; | |
dl.tabs { | |
border-bottom: 1px solid $tab-border-color; | |
dd { | |
position: relative; | |
bottom: -1px; | |
border-top: 1px solid $tab-border-color; | |
border-left: 1px solid $tab-border-color; | |
border-right: 1px solid $tab-border-color; |
{ | |
"title": "System Resources", | |
"services": { | |
"query": { | |
"list": { | |
"0": { | |
"query": "collectd_type:\"load\"", | |
"alias": "Load", | |
"color": "#70DBED", | |
"id": 0, |
run: | |
casperjs index.js && convert *.jpg video.mpeg && gify video.mpeg out.gif && rm *.jpg video.mpeg |
SASSC = sass --style compact | |
COMPSDIR = resources/assets/components | |
SASSDIR = resources/assets/css | |
JSDIR = resources/assets/js | |
DISTDIR = web/dist | |
CSSDIR = $(DISTDIR)/css | |
SASSINC = $(SASSDIR) \ | |
$(COMPSDIR)/asimov/src/scss \ | |
$(COMPSDIR)/asimov-contests/src/scss \ | |
$(COMPSDIR)/asimovicons/src/scss |