Skip to content

Instantly share code, notes, and snippets.

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

Lúdio Oliveira ludioao

🏠
Working from home
View GitHub Profile
find . -type f -size +10000k -exec ls -lh {} \; | awk '{ print $9 $7 $6 $4 ": " $5 }'
@ludioao
ludioao / comoNaoDeixarNoVaucoNoWhatsapp.js
Created October 20, 2017 17:07 — forked from callmeloureiro/comoNaoDeixarNoVaucoNoWhatsapp.js
Como não deixar no vácuo no whatsapp
/*
Hoje não deixaremos mais ninguém no vácuo no whatsapp
Para utilizar:
- Abra o web.whatsapp.com;
- Abra o console e cole o código que está no gist;
- Aguarde e verá uma mensagem sendo enviada a cada momento que alguém te enviar alguma mensagem.
Confira também como ser chato no whatsapp: https://gist.github.com/mathloureiro/4c74d60f051ed59650cc76d1da0d32da
// na view
{!! Form::open(['method' => 'post', 'action' => 'GermoManager@storeAcesso', $germo->id]) !!}
fields...
{!! Form::close() !!}
// la em routes.php
Route::get('/cadastrar-acesso-germoplasma/{germo_id}', 'GermoManager@createAcesso');
Route::post('/cadastrar-acesso-germoplasma/{germo_id}/salvar', 'GermoManager@storeAcesso');
@ludioao
ludioao / dijkstra.cpp
Created January 3, 2017 23:22 — forked from vertexclique/dijkstra.cpp
Dijkstra algorithm implementation in c++
//
// main.cpp
// dijkstra
//
// Created by Mahmut Bulut on 11/11/13.
// Copyright (c) 2013 Mahmut Bulut. All rights reserved.
//
#include <unordered_map>
#include <vector>
$dir = "path/to/targetFiles";
$dirNew = "path/to/destination/files";
// Open a known directory, and proceed to read its contents
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false) {
echo '<br>File: '.$file;
//exclude unwanted
if ($file==".") continue;
if ($file=="..")continue;
$zip = new ZipArchive();
$file = "myZipFile.zip";
$dir = "./dst_folder";
$zip->open($file);
if ( $zip->extractTo($dir) ) {
echo "Unzip successfuly";
}
else {