Skip to content

Instantly share code, notes, and snippets.

View hiwllc's full-sized avatar
🏠
Working from home

Wallace Batista hiwllc

🏠
Working from home
View GitHub Profile
@flyingluscas
flyingluscas / MyUbuntuThemeConfigurations.md
Last active February 26, 2019 13:19
My Ubuntu Theme Configurations

My Ubuntu Theme Settings

Install Theme

$ sudo add-apt-repository ppa:noobslab/themes
$ sudo apt-get update
$ sudo apt-get install flatabulous-theme

Install Icons Pack

@flyingluscas
flyingluscas / UsingFakerInPT-BR.md
Last active July 27, 2024 13:13
Utilizando Faker em pt-BR

Utilizando Faker em pt-BR

Acesse o seu arquivo app/Providers/AppServiceProvider.php, e no método register adicione o seguinte :

/**
 * Register any application services.
 *
 * @return void
 */
@flyingluscas
flyingluscas / RandomCrap.md
Last active October 3, 2016 14:28
Códigos Marotos da Vida (não é meu, só achei jogado nuns projeto por ae, é importante para mim que você saiba disso)

Compilado de Bosta

	if($id_insert)
        {
			$return['status']   = 'okay';
			$return['redirect'] = base_url('admin/' . $this->module['name'] . '/newsletter');

			$this->template_lib->set_message('Registro criado com sucesso', 'success');
@flyingluscas
flyingluscas / SettingUpDocker.md
Last active August 1, 2022 23:22
Setting Up Docker

Setting Up Docker

1. Installing Docker

$ curl -sSL https://get.docker.com/ | sh
$ sudo usermod -aG docker $USER
@flyingluscas
flyingluscas / InstallPHP7.0CLI.md
Last active February 1, 2022 06:12
Install PHP 7.0 CLI
$ sudo add-apt-repository ppa:ondrej/php; sudo apt-get update
$ sudo apt-get install php7.1-cli -y
$ sudo apt-get install -y \
@lucassmacedo
lucassmacedo / gist:47adf2782875b5654a2eba1c112995c6
Last active May 17, 2016 18:48
Import all databases on mysql
#!/bin/bash
#By: Lucas macedo
#Defina seu usuário e senha
usuarioesenha="-u root -proot"
#define o path do mysql, se estiver global deixe apenas "mysql" ou wamp/mamp ex: C:\wamp\bin\mysql\mysql5.6.12\bin\mysql
_mysql="/Applications/MAMP/Library/bin/mysql"
#busca todas databases
databases=(`$mysql -e "show databases" ${usuarioesenha}`)
@wesbos
wesbos / tab-trigger.js
Created November 16, 2015 19:33
How to properly get a TAB trigger working with Emmet inside of JSX
{
"keys": ["tab"],
"command": "expand_abbreviation_by_tab",
// put comma-separated syntax selectors for which
// you want to expandEmmet abbreviations into "operand" key
// instead of SCOPE_SELECTOR.
// Examples: source.js, text.html - source
"context": [
{
@mykelswitzer
mykelswitzer / component.jsx
Created September 11, 2015 00:41
React.js with pickadate.js
// How to get the pickadate to mount correcty in React.js component
// requires jQuery and pickadate.js (https://github.com/amsul/pickadate.js/)
var Component = React.createClass({
getInitialState: function() {
return ({value: null});
},
componentDidMount: function() {
@PurpleBooth
PurpleBooth / README-Template.md
Last active April 6, 2025 13:07
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@gubi
gubi / available_font-awesome_icons.php
Last active July 11, 2024 10:53
Get all icons from a font-awesome.css file and list in json mode
<?php
/**
* Available Font Awesome icons
*
* Get all icons from a font-awesome.css file and list in json mode
*
* @author Alessandro Gubitosi <[email protected]>
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public License, version 3
*/