Skip to content

Instantly share code, notes, and snippets.

View julianpoy's full-sized avatar
🐈
⌨️

Julian Poyourow julianpoy

🐈
⌨️
View GitHub Profile

RecipeSage Contributor License Agreement

In order to clarify the intellectual property license granted with Contributions from any person or entity, RecipeSage (RecipeSage and Julian Poyourow) must have a Contributor License Agreement ("CLA") on file that has been signed by each Contributor, indicating agreement to the license terms below. This license is for your protection as a Contributor as well as the protection of RecipeSage; it does not change your rights to use your own Contributions for any other purpose.

You accept and agree to the following terms and conditions for Your present and future Contributions submitted to RecipeSage. Except for the license granted herein to RecipeSage and recipients of software distributed by RecipeSage, You reserve all right, title, and interest in and to Your Contributions.

Definitions.

  1. "You" (or "Your") shall mean the copyright owner or legal entity authorized by the copyright owner that is making this Agreement with RecipeSage. For legal entities, the entit
cd /tmp/
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.17.3/linux-headers-4.17.3-041703_4.17.3-041703.201806252030_all.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.17.3/linux-headers-4.17.3-041703-generic_4.17.3-041703.201806252030_amd64.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.17.3/linux-image-unsigned-4.17.3-041703-generic_4.17.3-041703.201806252030_amd64.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.17.3/linux-modules-4.17.3-041703-generic_4.17.3-041703.201806252030_amd64.deb
var client = filestack.init(window.FILESTACK_KEY);
client.pick({
accept: [
// Image
'image/*',
'.psd',
// Video
'video/mp4',
'video/quicktime',
@julianpoy
julianpoy / .Xresources
Created May 17, 2018 06:05
X1C6 DPI Linux
Xft.dpi: 160
Xft.autohint: 0
Xft.lcdfilter: lcddefault
Xft.hintstyle: hintfull
Xft.hinting: 1
Xft.antialias: 1
Xft.rgba: rgb
@julianpoy
julianpoy / month.js
Created April 18, 2018 16:52
Build a month
var month = []
var fullyear = (new Date()).getFullYear(); // The year you want to start with
var fullmonth = (new Date()).getMonth(); // The month you want (0-11)
var currentDate = new Date(fullyear, fullmonth, 1);
var currentDay = new Date((new Date()).getFullYear(), (new Date()).getMonth(), 1).getDate();
var lastDay = new Date((new Date()).getFullYear(), (new Date()).getMonth() + 1, 0).getDate();
while (currentDay <= lastDay) {
@julianpoy
julianpoy / gist:6f61dd3a17212fb35abe
Created June 30, 2014 01:02
Comparison between routes and states
myApp.config(function($stateProvider) {
$stateProvider
.state('index', {
url: "",
views: {
"viewA": { template: "index.viewA" },
"viewB": { template: "index.viewB" }
}
})
.state('route1', {