Skip to content

Instantly share code, notes, and snippets.

View ManzDev's full-sized avatar
💻
Trapped inside a terminal

Manz ManzDev

💻
Trapped inside a terminal
View GitHub Profile
@ManzDev
ManzDev / rollup.config.js
Created February 24, 2018 17:13
RollUp Config file for easy ES6 to ES5 bundle
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 = [
@ManzDev
ManzDev / memusg
Created August 27, 2018 19:45 — forked from netj/memusg
memusg -- Measure memory usage of processes
#!/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"); #
@ManzDev
ManzDev / .hyper.js
Created December 12, 2018 01:12
Hyper terminal config
// 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',
@ManzDev
ManzDev / .zshrc
Created December 12, 2018 01:14
zsh runtime configuration
# 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
@ManzDev
ManzDev / flisol.css
Last active March 18, 2019 13:22
Flisol CSS
@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 */
@ManzDev
ManzDev / es.json
Created March 28, 2019 14:01
VueRouter & VueI18n example
{
"title": "¡Hola!",
"text": "Esto es un ejemplo"
}
@ManzDev
ManzDev / settings.json
Last active July 31, 2024 18:57
VSCode (settings.json)
{
/* 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",
{
"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",
@ManzDev
ManzDev / .aliases
Last active June 3, 2019 16:30
Bash aliases
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
@ManzDev
ManzDev / linux-setup.sh
Last active December 15, 2019 01:20
Linux setup (WIP)
#!/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