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
git tag --contains 1eef74ce70198749800f08cc2623b14f615fb2f0 | |
47.0.2518.0 | |
47.0.2518.1 | |
47.0.2519.0 | |
47.0.2520.0 | |
47.0.2521.0 | |
47.0.2521.1 | |
47.0.2521.2 | |
47.0.2521.3 | |
47.0.2521.4 |
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
using System; | |
using System.Text; | |
using JSIL; | |
using JSIL.Meta; | |
public static class Program { | |
public static int x = 10; | |
public static int y = 20; | |
public static void Main () { |
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
Refused to set unsafe header "accept-encoding"Request.end @ | |
Refused to set unsafe header "user-agent" | |
Refused to set unsafe header "content-length" | |
XMLHttpRequest cannot load https://api.keen.io/3.0/projects/<project-id>/queries/count. A wildcard '*' cannot be used in the 'Access-Control-Allow-Origin' header when the credentials flag is true. Origin 'http://localhost:5001' is therefore not allowed access. |
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
[Desktop Entry] | |
Name=Redshift | |
Comment=Love your eyes | |
Exec=redshift-gtk -l 43.64147:-70.24088 -t 5700:3600 -g 0.8 -m randr -v | |
Icon=/home/charandas/code/redshift/data/icons/hicolor/scalable/apps/redshift.svg | |
Terminal=false | |
Type=Application |
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
# Some of these you would need to execute as root | |
apt-get install build-essential libxcb-randr0-dev | |
apt-get install autopoint | |
apt-get install autoconf | |
apt-get install intltool | |
apt-get install libtool | |
git clone [email protected]:jonls/redshift.git | |
cd redshift |
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
/* | |
* Synopsis: | |
* | |
* @author: Karan Batra-Daitch | |
* @license: MIT | |
* | |
* This is the famous subnet-sum problem, with the special case on the number | |
* of elements required to make the sum. | |
* | |
* My solution is based off of this quora question/answer |
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
// Given element is an array of jquery elements | |
var rect = element[0].getBoundingClientRect(); | |
console.dir(rect); | |
// NOTE: this is how a click can be copy-played again | |
$(document.elementFromPoint(rect.left, rect.top)).click(); |
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
// states/core.js | |
// raiiServicesExample.states.core module | |
$stateProvider | |
.state('app', { | |
resolve: { | |
allListings: function(ListingService) { | |
return ListingService.getAll(); | |
} | |
} |
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
define([ | |
'angular', | |
'angularUiRouter', | |
'uiRouterExtras', | |
'uiRouterExtrasStatevis', | |
'ocLazyLoad', | |
'boot/module', | |
'boot/services/settings', | |
'boot/services/listings' |
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
if (typeof chai === 'undefined') { | |
console.log('This example requires chai to be installed adjacent to mocha-casperjs') | |
casper.exit(-1) | |
} | |
describe('Google searching', function() { | |
before(function() { | |
casper.start('http://www.google.fr/') | |
}) |