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
| <link rel="import" href="../polymer/polymer.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; |
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
| # Extract archives - use: extract <file> | |
| # Based on http://dotfiles.org/~pseup/.bashrc | |
| function extract() { | |
| if [ -f "$1" ] ; then | |
| local filename=$(basename "$1") | |
| local foldername="${filename%%.*}" | |
| local fullpath=`perl -e 'use Cwd "abs_path";print abs_path(shift)' "$1"` | |
| local didfolderexist=false | |
| if [ -d "$foldername" ]; then | |
| didfolderexist=true |
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
| IRC #deltion Quotes | |
| 24 September 2013 | |
| 10:05 <@Chameleon> morge | |
| 10:06 <@Chameleon> happy bday corne :D | |
| 10:06 < corne> ty | |
| 10:07 <@Chameleon> dus heb je al een highchart voor me gemaakt met goede x en y assen ? | |
| 10:07 < corne> en hey | |
| 10:07 < corne> euhm |
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
| /** | |
| * I love this hack <3 | |
| * | |
| * @param $var | |
| * @return string | |
| */ | |
| function dump($var){ | |
| echo '<pre>'; | |
| var_dump($var); | |
| echo '</pre>'; |
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
| checkForgotFields(){ | |
| var check = false; | |
| var email = $('#email').val(); | |
| var securityq = $('#securityq').val(); | |
| var securitya = $('#securitya').val(); | |
| if(email != '' && securitya != '' && securityq !=''){ | |
| check = true; | |
| } | |
| return check; |
NewerOlder