Skip to content

Instantly share code, notes, and snippets.

View cicerolneto's full-sized avatar

cicerolneto cicerolneto

  • OCS_Observ. Const. Sul.
  • Brasil
View GitHub Profile
@cicerolneto
cicerolneto / .bashrc
Created June 15, 2020 12:17
Parrot Os bash theme for ubuntu
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines in the history. See bash(1) for more options
# ... or force ignoredups and ignorespace
HISTCONTROL=ignoredups:ignorespace
@cicerolneto
cicerolneto / .tmux.conf
Created May 16, 2020 11:19 — forked from paulodeleo/.tmux.conf
Tmux configuration to enable mouse scroll and mouse panel select, taken from: http://brainscraps.wikia.com/wiki/Extreme_Multitasking_with_tmux_and_PuTTY
# Make mouse useful in copy mode
setw -g mode-mouse on
# Allow mouse to select which pane to use
set -g mouse-select-pane on
# Allow mouse dragging to resize panes
set -g mouse-resize-pane on
# Allow mouse to select windows
@cicerolneto
cicerolneto / tmux.md
Created May 16, 2020 07:11 — forked from jvrmaia/tmux.md
Guia do TMUX

Guia do TMUX

obs.:

  • o guia é baseado nas minhas configurações pessoais do Github
  • C-c significa pressionar a tecla Control e em seguida a tecla c
  • Prefixo + w significa digitar o comando de Prefixo e em seguida apertar w

Linhas de comando

@cicerolneto
cicerolneto / .vimrc
Created May 11, 2020 07:11 — forked from henriquegogo/.vimrc
My .vimrc
" Made by @henriquegogo
set t_Co=256 " Set to 256 colors scheme
set number " Line numbers
set linebreak " Break line without break word
set nobackup " Dont save backup~ files
set ignorecase " Ignore case sensitive on searchs
set smartcase " If have any uppercase, active case sensitive
set gdefault " Always substitute all letters, dont just first
set smartindent " Auto-indent
@cicerolneto
cicerolneto / ms_coco_classnames.txt
Created May 19, 2019 08:23 — forked from AruniRC/ms_coco_classnames.txt
Class Names of MS-COCO classes in order of Detectron dict
{0: u'__background__',
1: u'person',
2: u'bicycle',
3: u'car',
4: u'motorcycle',
5: u'airplane',
6: u'bus',
7: u'train',
8: u'truck',
9: u'boat',
@cicerolneto
cicerolneto / build-tensorflow-from-source.md
Created January 2, 2019 00:30 — forked from Brainiarc7/build-tensorflow-from-source.md
Build Tensorflow from source, for better performance on Ubuntu.

Building Tensorflow from source on Ubuntu 16.04LTS for maximum performance:

TensorFlow is now distributed under an Apache v2 open source license on GitHub.

On Ubuntu 16.04LTS+:

Step 1. Install NVIDIA CUDA:

To use TensorFlow with NVIDIA GPUs, the first step is to install the CUDA Toolkit as shown: