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
@Composable | |
fun WiggleWiggle() { | |
val targetDegrees by flippyFloats() | |
val degrees by animateFloatAsState(targetValue = targetDegrees) | |
Icon( | |
imageVector = Icons.Default.Notifications, | |
contentDescription = "Ding!", | |
modifier = Modifier.rotate(degrees) | |
) | |
} |
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
public void addInstagramPosts(List<InstagramPost> posts) { | |
if (posts == null) { | |
throw new IllegalArgumentException(String.format("Attemping to add a null posts to %s", DATABASE_NAME)); | |
} | |
// Take a look at the helper methods addImage, addComment, etc as you implement this method | |
// It's also a good idea to do this work in a transaction | |
SQLiteDatabase db = getWritableDatabase(); | |
db.beginTransaction(); | |
try { | |
for (InstagramPost post : posts) { |
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 AppLink = React.createClass({ | |
render: function() { | |
return <li onClick={this.props.select.bind(null,this.props.app)}> | |
{this.props.app} | |
</li>; | |
}, | |
}); | |
var AppList = React.createClass({ | |
render: function() { |
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
javascript:instr='ukulele';acc_tuning=decodeURIComponent('G C E A');$('body').removeClass('guitar');$('body').addClass('ukulele');$('.u_b').click();setTimeout(function(){$('.d_b').click();},500);void%200 |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
</head> | |
<body> | |
<canvas id="c"></canvas> | |
<script> | |
var canvas = document.getElementById("c"); | |
var ctx = canvas.getContext("2d"); |
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
// ==UserScript== | |
// @name Auto GT Login | |
// @namespace http://www.atommarvel.com | |
// @version 1.0 | |
// @description Simply re-enables chrome's ability to autocomplete the login form for logging into tsquare,buzzport,degeeworks, etc | |
// @match https://login.gatech.edu/* | |
// @copyright 2012+, Atom Marvel Raiff | |
// ==/UserScript== | |
document.getElementById("username").removeAttribute("autocomplete"); |
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
// ==UserScript== | |
// @name GDLE | |
// @namespace http://www.atommarvel.com/ | |
// @version 2.0 | |
// @description GDLE let's you manage your device logins for GTother in a snap. | |
// @match https://auth.lawn.gatech.edu/* | |
// @copyright 2013+, Atom Marvel Raiff | |
// ==/UserScript== | |
//Add your account info here! |
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 loginMac = function(index, pw){ | |
var macAddresses = ["f8:8f:ca:24:c4:ef" //glass | |
,"40:f4:07:67:35:82"]; //3ds | |
var username = document.getElementById("username"); | |
var password = document.getElementById("password"); | |
var mac = document.getElementById("devlogin_mac"); | |
username.value = "araiff3" | |
password.value = pw; | |
mac.value = macAddresses[index]; |
NewerOlder