I hereby claim:
- I am bastienrobert on github.
- I am bastienrbt (https://keybase.io/bastienrbt) on keybase.
- I have a public key whose fingerprint is E402 5515 5E15 E474 73D5 9B59 4179 CC7C 3F39 3545
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}a{text-decoration:none} |
| require 'uri' | |
| require 'net/http' | |
| require 'json' | |
| url = URI("http://api.stanleystella.com/webrequest/products/get_json") | |
| http = Net::HTTP.new(url.host, url.port) | |
| request = Net::HTTP::Post.new(url) | |
| request["content-type"] = 'application/json' |
| // Function to generate an array w/ alphabet letters | |
| function genCharArray(charA, charZ) { | |
| var a = [], i = charA.charCodeAt(0), j = charZ.charCodeAt(0); | |
| for (; i <= j; ++i) { | |
| a.push(String.fromCharCode(i)); | |
| } | |
| return a; | |
| } | |
| // Function to parse URL and get last element | |
| function parseURL(url) { |
| Verifying that "bastienrobert.id" is my Blockstack ID. https://onename.com/bastienrobert |
| module URLHelper | |
| def link_translate(lang) | |
| return link_to data.languages.send(lang.to_s), | |
| if lang === I18n.default_locale | |
| config[:host] + '/' + | |
| path_translate(lang) + | |
| t("paths.#{current_page.data.title}", locale: lang) | |
| else | |
| config[:host] + '/' + |
Description
Things here
git checkout -b my-new-feature)| 'use strict'; | |
| var gulp = require('gulp'); | |
| var sass = require('gulp-sass'); | |
| var sassGlob = require('gulp-sass-glob'); | |
| gulp.task('scss', function () { | |
| return gulp.src('./scss/app.scss') | |
| .pipe(sassGlob()) | |
| .pipe(sass().on('error', sass.logError)) |
| /* | |
| * Add a dataset to your target like this : | |
| * data-parallax='1' | |
| * | |
| * Parallax strenght can be define with the number | |
| * | |
| */ | |
| var els = [] |