I hereby claim:
- I am idcmardelplata on github.
- I am idcmardelplata (https://keybase.io/idcmardelplata) on keybase.
- I have a public key ASA5QoXqFlJ3ccCgPB3rhXUwiTGzbpwJDwpBSP0qg95e0Ao
To claim this, I am signing this object:
| # Load plugins. | |
| # We don't actually need to set the one-dark theme, I've customised the vanilla | |
| # tmux configuration to my liking. If this seems to be working well then I will | |
| # later remove this line. | |
| # set -g @plugin 'odedlaz/tmux-onedark-theme' # OneDark Theme | |
| # Remap prefix to ctrl-a for screen consistency. | |
| set -g prefix C-a |
| // SPDX-License-Identifier: MIT | |
| pragma solidity 0.8.3; | |
| // IRC20 interface commonly usage for create new ethereum tokens. | |
| // Custom tokens running on the Ethereum virtual machine must implement this or some other interface. | |
| interface IRC20 { | |
| function totalSupply() external view returns (uint256); | |
| function balanceOf(address account) external view returns(uint256); |
| bindkey -s '' 'source $HOME/bin/sources.sh' |
| # ---------------------------------------------------------------------- | |
| # {TYPE}: [{SCOPE}] {SUBJECT} What? | |
| # {BODY} Why? | |
| # {FOOTER} | |
| # ---------------------------------------------------------------------- |
I hereby claim:
To claim this, I am signing this object:
| server.route({ | |
| method: 'GET', | |
| path: '/mi_path', | |
| handler: function(request, reply) { | |
| return reply("Hello World"); | |
| } | |
| }) | |
| server.route({ | |
| method: 'POST', |
| /* | |
| Gulpfile.js file for the tutorial: | |
| Using Gulp, SASS and Browser-Sync for your front end web development - DESIGNfromWITHIN | |
| http://designfromwithin.com/blog/gulp-sass-browser-sync-front-end-dev | |
| Steps: | |
| 1. Install gulp globally: | |
| npm install --global gulp | |
| 2. Type the following after navigating in your project folder: | |
| npm install gulp gulp-util gulp-sass gulp-uglify gulp-rename gulp-minify-css gulp-notify gulp-concat gulp-plumber browser-sync --save-dev | |
| 3. Move this file in your project folder |
| snippet doc "html5 doctype" !b | |
| doctype html | |
| html(lang="es") | |
| head | |
| meta(charset="UTF-8") | |
| meta(name="viewport", content="width=device-width") | |
| title ${1:Titulo de la web.} | |
| body | |
| header | |
| h1 $1 |
| #!/usr/bin/env bash | |
| BASE_DIR=scss #Cambia el valor de $BASE_DIR para asignar otro directorio de salida. | |
| MAIN_FILE=style.css.scss #Cambia el valor de $MAIN_FILE para renombrar el archivo scss principal. | |
| mkdir $BASE_DIR | |
| touch $BASE_DIR/$MAIN_FILE | |
| cd $BASE_DIR | |
| bitters install |
| "vi-compatible (elimina la compatibilidad con el editor VI en el cual se basa, | |
| "esto es necesario para que VIM soporte todos lo plugins y las mejoras propias | |
| "del editor). | |
| set nocompatible | |
| " Setting up Vundle - the vim plugin bundler (Vundle es el sistema que utilizo | |
| " para gestionar los plugins.) | |
| let iCanHazVundle=1 | |
| let vundle_readme=expand('~/.vim/bundle/vundle/README.md') | |
| if !filereadable(vundle_readme) |