View bibliography.bib
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
@ARTICLE{savcheva2007, | |
author = {Savcheva, A. and Cirtain, J. and Deluca, E.~E. and Lundquist, L.~L. and | |
Golub, L. and Weber, M. and Shimojo, M. and Shibasaki, K. and | |
Sakao, T. and Narukage, N. and Tsuneta, S. and Kano, R.}, | |
title = {A Study of Polar Jet Parameters Based on Hinode XRT Observations}, | |
journal = {Publications of the ASJ}, | |
keywords = {Sun: activity, Sun: corona, Sun: magnetic field}, | |
year = 2007, | |
month = nov, | |
volume = 59, |
View dabblet.css
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
/** | |
* Animated activity indicator | |
*/ | |
html, body { | |
width: 100%; | |
height: 100%; | |
} | |
.activity-indicator { | |
width: 10px; |
View dabblet.css
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
/** | |
* Round progress indicator | |
*/ | |
.round-progress-indicator { | |
width:150px; | |
height: 150px; | |
} | |
.round-progress-indicator span { |
View dabblet.css
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
/** | |
* Quattro progress indicator | |
*/ | |
.quattro-progress { | |
border: #CCC 10px solid; | |
border-radius: 50%; | |
width: 100px; | |
height: 100px; | |
transform: rotate(45deg); |
View dabblet.css
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
/** | |
* Octagon | |
*/ | |
.octagon { | |
width: 100px; | |
height: 100px; | |
position: absolute; | |
top: 0; | |
bottom: 0; |
View Simple $_GET example for Leo
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
<?php | |
// First we get the variable we want to look at from the $_GET array | |
$page = $_GET['p']; | |
// We should never trust the user's input to be safe | |
// So let's restrict the possibilities with a switch() statement | |
// If the input is invalid, we return some sort of error | |
switch($page) { | |
case 'home': | |
// show the home page text |
View dabblet.css
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
/** | |
* RAVN Preloader | |
*/ | |
body { | |
background: black; | |
text-align: center; | |
} | |
.logo { |
View npm-debug.log
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
0 info it worked if it ends with ok | |
1 verbose cli [ 'node', | |
1 verbose cli '/usr/local/bin/npm', | |
1 verbose cli 'install', | |
1 verbose cli '--save', | |
1 verbose cli 'gfarrell/state.js~0.1.0' ] | |
2 info using npm@1.4.10 | |
3 info using node@v0.10.28 | |
4 verbose node symlink /usr/local/bin/node | |
5 warn package.json PresenceMonitor@0.0.1 No repository field. |
View pageload.js
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
$(window).on('load', function() { | |
var fragment = window.location.hash; | |
if(fragment != "") { | |
$('body').animate({ | |
scrollTop: $(fragment).offset().top | |
}); | |
} | |
}); |
View remote_backup.sh
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 | |
########################################################## | |
# Remote Backup Script | |
# | |
# FILE: remote_backup.sh | |
# RUN: Daily 00h00 | |
# | |
# author: Gideon Farrell me@gideonfarrell.co.uk | |
########################################################## |
OlderNewer