Skip to content

Instantly share code, notes, and snippets.

View munizart's full-sized avatar

Muniz munizart

  • Florianopolis - SC
View GitHub Profile
@g1stavo
g1stavo / gist:2103383f1621230b04b35d1c0b93d29e
Last active November 1, 2019 19:54
Frases hostis do quadro
2018
"Gosto de terminar as coisas numa sentada só" (KRIEGER, Iury)
"Ain, que grosseria" (CINHA, Lingui)
"Reskin não é pastel" (PUTO, Claudinho)
"Nossa, que lindo" (CINHA, Lingui)
"Validação em excesso nunca é ruim" (SÂNGELA, Ro)
"Pega a régua e levanta o pau!" (PEOPLEWARE, Letícia)
"Sim, eles são chatos" (JUAN)
"Ninguém programa PHP direito" (GABRIEL)
"Lógico, não foi feito pra programar direito" (PREUSS)
@eduardojmatos
eduardojmatos / frontendbr-forum-top-activity-users.md
Last active May 20, 2020 21:11
List of all users by activities on FrontendBR#forum
@PurpleBooth
PurpleBooth / README-Template.md
Last active June 30, 2024 00:35
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

@adaburrows
adaburrows / compose_functions.php
Created April 26, 2011 06:24
Composing functions in PHP
<?php
/**
* Just trying out more functional programming in PHP
* This gist provides some basic utility functions for:
* + Working with functions
* + Working with arrays
*/
// This function allows creating a new function from two functions passed into it
function compose(&$f, &$g) {