Skip to content

Instantly share code, notes, and snippets.

View galvez's full-sized avatar

Jonas Galvez galvez

View GitHub Profile
import os from 'os'
import consola from 'consola'
// Usage:
//
// const handler = (file) => console.log(file)
// const pool = new PromisePool(['file1', 'file2', ...], handler)
// await pool.done()
const failureInterval = 3000
import Vue from 'vue'
function componentInject(key, setter) {
const installKey = `__component_inject_${key}`
if (Vue[installKey]) {
return
}
Vue[installKey] = true
const componentKey = `$${key}`
const privateKey = `_${key}`
<template>
<img ref="img" />
</template>
<script>
export default {
props: ['src'],
data: () => ({ blob: null }),
beforeMount () {
this.$watch('src', this.loadImage)
export class ModuleUtils {
static mixin(target) {
for (const member of Object.getOwnPropertyNames(ModuleUtils.prototype)) {
target[member] = ModuleUtils.prototype[member].bind(target)
}
}
resolvePath(...args) {
return resolve(process.cwd(), ...args)
}
function wrapAt (str, max) {
if (str.length > max) {
const parts = str.split(' ')
let i = 0
for (let w = 0; i < parts.length; i++) {
w += parts[i].length
if (w >= max) {
parts[i] = `\n${parts[i]}`
w = 0
}

Nootropic Frappuccino

This comes from years of personal experience tweaking the recipe. I also recommend studying Ray Peat's articles for general knowledge and understanding of metabolism. Make up your own mind.

Ingredients are listed in the order I put them in the mixer.

Some of the powder tends to stick to the sides -- use a spoon to scrape while mixing if necessary.

export default function makeSymbols (...symbols) {
return symbols.reduce((obj, s) => ({ ...obj, [s]: Symbol.for(s) }), {})
}
REGIOES_BRASILEIRAS = {
'Norte' => [
['Acre', 'AC'],
['Amapá','AP'],
['Amazonas', 'AM'],
['Pará', 'PA'],
['Rondônia', 'RO'],
['Roraima', 'RR'],
['Tocantins', 'TO']
],
module.exports = {
build: {
loaders: [
{
test: /\.(png|jpe?g|gif|svg)$/,
loader: 'url-loader',
query: {
limit: 1000, // 1KO
name: 'img/[name].[hash:7].[ext]'
}
<template>
<div>
<h1>Hello world</h1>
</div>
</template>