This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import babel from 'rollup-plugin-babel'; | |
import eslint from 'rollup-plugin-eslint'; | |
import resolve from 'rollup-plugin-node-resolve'; | |
import multiEntry from 'rollup-plugin-multi-entry'; | |
import uglify from 'rollup-plugin-uglify'; | |
import filesize from 'rollup-plugin-filesize'; | |
import commonjs from 'rollup-plugin-commonjs'; | |
import progress from 'rollup-plugin-progress'; | |
let pluginOptions = [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# memusg -- Measure memory usage of processes | |
# Usage: memusg COMMAND [ARGS]... | |
# | |
# Author: Jaeho Shin <[email protected]> | |
# Created: 2010-08-16 | |
############################################################################ | |
# Copyright 2010 Jaeho Shin. # | |
# # | |
# Licensed under the Apache License, Version 2.0 (the "License"); # |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// choose either `'stable'` for receiving highly polished, | |
// or `'canary'` for less polished but more frequent updates | |
updateChannel: 'stable', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# apt-get install zsh zgen | |
# load zgen | |
source /usr/share/zgen/zgen.zsh | |
zgen load zdharma/fast-syntax-highlighting # fast-theme zdharma | |
#zgen load zsh-users/zsh-syntax-highlighting | |
zgen load zsh-users/zsh-autosuggestions | |
zgen load zsh-users/zsh-completions | |
zgen load zsh-users/zsh-history-substring-search | |
zgen load zsh-users/zaw |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,800'); | |
body { | |
background: #e0bef6; | |
margin: 0; | |
font-family: Montserrat, sans-serif; | |
font-size: 16px; | |
} | |
/* HEADER */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "¡Hola!", | |
"text": "Esto es un ejemplo" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
/* Terminal WSL */ | |
"terminal.integrated.fontFamily": "'VictorMono Nerd Font', 'Victor Mono', 'Inconsolata for Powerline', 'Envy Code R', Consolas, Monospace", | |
"terminal.integrated.copyOnSelection": true, | |
"terminal.integrated.gpuAcceleration": "on", | |
"terminal.integrated.letterSpacing": 0, | |
"terminal.integrated.cursorBlinking": true, | |
"terminal.integrated.cursorStyle": "block", | |
"terminal.integrated.fontWeight": "400", | |
"terminal.integrated.fontWeightBold": "600", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"extends": "stylelint-config-standard", | |
"rules": { | |
"indentation": 4, | |
"string-quotes": "single", | |
"no-duplicate-selectors": true, | |
"color-hex-case": "lower", | |
"color-hex-length": "short", | |
"selector-combinator-space-after": "always", | |
"selector-attribute-quotes": "always", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export DISPLAY=:0 | |
# Copy/Paste | |
alias pbcopy='xsel --clipboard --input' | |
alias pbpaste='xsel --clipboard --output' | |
# Top Commands | |
alias topcommands='history | tr -s " " | cut -d" " -f3 | sort | uniq -c | sort -n | tail -20' | |
# Javascript |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Script for prepare Ubuntu/Debian distro | |
# 2019 - Manz (terminaldelinux.com) | |
# | |
# Prerequisites: | |
# - curl sudo bash installed | |
# - script executed as non-root (but sudo permissions) | |
# | |
# --gui Install GUI software |