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
To remove upon fresh install: | |
sudo aptitude remove aisleriot mahjongg gnome-sudoku gnomine shotwell remmina thunderbird gwibber vino rhythmbox ubuntuone-installer | |
To install upon fresh install: | |
sudo add-apt-repository ppa:tualatrix/ppa | |
sudo add-apt-repository ppa:cairo-dock-team/weekly | |
sudo add-apt-repository ppa:synapse-core/ppa | |
sudo aptitude install ubuntu-tweak myunity vlc gnome-panel synapse cairo-dock | |
compiz config settings manager |
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
Show hidden characters
{ | |
"auto_complete_delay": 0, | |
"bold_folder_labels": true, | |
"caret_style": "phase", | |
"close_windows_when_empty": true, | |
"color_scheme": "Packages/Theme - Aqua/Color Schemes/Base16 Tomorrow Night Aqua.tmTheme", | |
"ensure_newline_at_eof_on_save": true, | |
"file_exclude_patterns": | |
[ | |
".gitkeep", |
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
$testuser = new User; | |
$testuser->username = 'testuser'; | |
$testuser->email = '[email protected]'; | |
$testuser->password = 'test'; | |
$testuser->first_name = 'Harry'; | |
$testuser->last_name = 'Potter'; | |
$testuser->confirmed = 1; | |
$testuser->save(); |
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 | |
// Other methods go here | |
// Auth filter | |
Route::filter('auth', function() | |
{ | |
if (\League\OAuth2\Server\Util\Request::buildFromGlobals()->header('Authorization')) { | |
// TODO DOES NOT WORK!!! | |
return Route::filter('oauth', 'LucaDegasperi\OAuth2Server\Filters\OAuthFilter'); | |
} else { |
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
URL: http://beesandbombs.tumblr.com/page/6 | |
void setup(){ | |
size(500,500,P3D); | |
smooth(8); | |
} | |
float f(int i, int j, float q){ | |
return(q*(noise(.2*(i+400-.05*frameCount),.2*(j+90))-.5)); | |
} |
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
public class MyService extends Service implements OnSharedPreferenceChangeListener { | |
private Looper mServiceLooper; | |
private ServiceHandler mServiceHandler; | |
@Override | |
public void onCreate() { | |
// Start up the thread running the service. Note that we create a | |
// separate thread because the service normally runs in the process's |
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
static String createAuthHeader(String username, String password) { | |
return "Basic " + Base64.encodeToString((username + ":" + password).getBytes(), Base64.NO_WRAP); | |
} |
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
package com.kiwiwearables.kiwilib; | |
/* | |
* Copyright (C) 2014 The Android Open Source Project | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except | |
* in compliance with the License. You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software distributed under the License |
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
group = com.afzaln | |
baseName = fab | |
pkgName = FloatingActionButton | |
description = FloationActionButton implementation forked from Clans, has automatic quick return on scroll | |
siteUrl = https://github.com/afzalive/FloatingActionButton | |
issuesUrl = https://github.com/afzalive/FloatingActionButton/issues | |
gitUrl = https://github.com/afzalive/FloatingActionButton.git |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
OlderNewer