I hereby claim:
- I am kandros on github.
- I am jagasantagostino (https://keybase.io/jagasantagostino) on keybase.
- I have a public key whose fingerprint is 6DDD E439 6C25 671A 477A 9687 69BC E331 BD9E 8B66
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# somewhere in schema definition | |
type User { | |
name: String! | |
lastname: String! | |
fullname: String! | |
} | |
// somewhere in server code |
// Traccia: | |
// Crea una funzione che prende come parametri 2 numeri e li somma e ritorna il risultato | |
function myFunc(x, y) { | |
return x + y | |
} | |
function test() { | |
let result = myFunc() |
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Launch Program", | |
"program": "${file}" | |
} | |
], |
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Launch Program", | |
"program": "${file}" | |
} | |
], |
https://getpocket.com/auth/authorize?request_token={token_here}&redirect_uri=www.google.com, |
/** | |
* Takes a positive integer and returns the corresponding column name. | |
* @param {number} num The positive integer to convert to a column name. | |
* @return {string} The column name. | |
*/ | |
function toColumnName(num) { | |
for (var ret = '', a = 1, b = 26; (num -= a) >= 0; a = b, b *= 26) { | |
ret = String.fromCharCode(parseInt((num % b) / a) + 65) + ret; | |
} | |
return ret; |
<h1>Sometime</h1> | |
<h2>Very little styling</h2> | |
<h3>is enough</h3> | |
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Alias saepe laudantium, accusantium nam error facilis, sapiente id nulla esse quia veniam tempora, laborum quasi eum officiis deserunt optio reiciendis corrupti? Id nulla aliquam exercitationem aspernatur nesciunt, modi magni, dicta officiis esse voluptatem corrupti dolorum delectus natus dolor, rem amet accusamus.</p> | |
Emacs packages, features, files, layers, extensions, auto-loading, require
,
provide
, use-package
… All these terms getting you confused? Let’s clear up
a few things.
Emacs files contains code that can be evaluated. When evaluated, the functions, macros and modes defined in that file become available to the current Emacs session. Henceforth, this will be termed as loading a file.
One major problem is to ensure that all the correct files are loaded, and in the
// Usually I use this in my app's config file, in case I need to disable all cache from the app | |
// Cache is from `js-cache`, something like `import Cache from 'js-cache';` | |
const cacheable = true, | |
cache = new Cache(); | |
// On request, return the cached version, if any | |
axios.interceptors.request.use(request => { | |
// Only cache GET requests | |
if (request.method === 'get' && cacheable) { |