Skip to content

Instantly share code, notes, and snippets.

View adeonir's full-sized avatar
💻
Working remotely

Adeonir Kohl adeonir

💻
Working remotely
View GitHub Profile
@omurilo
omurilo / Mentoria 02
Created July 16, 2019 01:48
Mentoria GoStack com pessoal da globo
# Mentoria pessoal TV Globo
C# and WPF ".net" (for front of applications)
Node.js for API's to scaling
C# OpenCV (machine learning)
# Desafio prático:
- Preparar linked.in e github para enviar pro pessoal da globo.
- Bruno Paranhos (bruno.paranhos@tvglobo.com.br)
- Robson Morais (robson.morais@tvglobo.com.br)
@omurilo
omurilo / Mentoria 01 - GoStack
Last active July 16, 2019 10:32
Anotações da Mentoria 01: Rocketseat
Mentoria - 01:
- Experiência de vida do Robson
- De publicitário à programador, empreendedor e tudo mais.
- Respondendo dúvidas e participação em vídeo:
- Trabalhar como PJ? Como?
- Melhor escolha foi trabalhar como PJ.
- O dinheiro e a insegurança é a mesma (a CLT não garante o emprego)
- Brasil: temos uma visão errada de trabalho, levamos tudo como emprego, mas na verdade o que existe é o trabalho. Podemos fazer o que quisermos, ou o que precisarmos.
- Para a empresa, a CLT é muito pior que o PJ.
- Organização como PJ, seu dinheiro vale mais, e você se posiciona como uma empresa prestando trabalho para outras empresas. Você está gerando valor e não sendo somente um empregado!
@rhukster
rhukster / sphp.sh
Last active March 30, 2024 10:41
Easy Brew PHP version switching (Now moved to https://github.com/rhukster/sphp.sh)
#!/bin/bash
# Creator: Phil Cook
# Modified: Andy Miller
#
# >>> IMPORTANT: Moved to: https://github.com/rhukster/sphp.sh
# >>> Kept here for legacy purposes
#
osx_major_version=$(sw_vers -productVersion | cut -d. -f1)
osx_minor_version=$(sw_vers -productVersion | cut -d. -f2)
osx_patch_version=$(sw_vers -productVersion | cut -d. -f3)
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active June 1, 2024 17:45
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@parmentf
parmentf / GitCommitEmoji.md
Last active June 1, 2024 05:39
Git Commit message Emoji

Github Two-Factor Authentication (2FA) for Brazil via SMS

The Github doesn't provide country code for Brazil (+55). To add this option, just run the code below in your console. The option Brazil +55 will be the first on the list, already selected:


🇧🇷 [pt-BR]

Autenticação em dois fatores (2FA) do GitHub para o Brasil via SMS

@jhonnymoreira
jhonnymoreira / gulpfile.js
Created March 12, 2015 23:05
Gulp with Stylus, Kouto Swiss, Jeet and BrowserSync
var gulp = require('gulp');
var stylus = require('gulp-stylus');
var browserSync = require('browser-sync');
var koutoSwiss = require('kouto-swiss');
var jeet = require('jeet');
var reload = browserSync.reload;
var paths = {
stylusEntry: ["./stylus/main.styl"],
stylusAll: ["./stylus/*.styl"]
@amochohan
amochohan / 01_Laravel 5 Simple ACL manager_Readme.md
Last active April 22, 2024 17:19
Laravel 5 Simple ACL - Protect routes by an account / role type

#Laravel 5 Simple ACL manager

Protect your routes with user roles. Simply add a 'role_id' to the User model, install the roles table and seed if you need some example roles to get going.

If the user has a 'Root' role, then they can perform any actions.

Installation

Simply copy the files across into the appropriate directories, and register the middleware in App\Http\Kernel.php

@bramus
bramus / gist:5b4f4733e543912a518f
Created November 4, 2014 19:50
OS X 10.10 Yosemite, Apache, MySQL, PHP 5.6, (MAMP) Homebrew Dev Setup
# From http://www.iyware.com/osx-yosemite-mamp-homebrew-development-setup/
# Install Homebrew
xcode-select --install
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew doctor
# Tap Repos
brew tap homebrew/dupes
brew tap homebrew/versions