Skip to content

Instantly share code, notes, and snippets.

View MarceloFullStack's full-sized avatar

Marcelo Guimarães MarceloFullStack

View GitHub Profile
@fernandoferreira-me
fernandoferreira-me / question-rio-projeto-de-disciplina-de-text-mining.ipynb
Created May 17, 2022 20:59
Questionário - Projeto de Disciplina de Text Mining.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@simonhamp
simonhamp / AppServiceProvider.php
Last active June 12, 2024 11:05
A pageable Collection implementation for Laravel
<?php
namespace App\Providers;
use Illuminate\Support\Collection;
use Illuminate\Pagination\LengthAwarePaginator;
class AppServiceProvider extends ServiceProvider
{
public function boot()
@geoffspink
geoffspink / rename_woocommerce_admin_menu.php
Created November 10, 2014 07:07
Rename the Admin Menu name for WooCommerce to the name of the website store.
<?php
add_action( 'admin_menu', 'rename_woocoomerce_admin_menu', 999 );
function rename_woocoomerce_admin_menu()
{
global $menu;
// Pinpoint menu item
$woo = recursive_array_search_php( 'WooCommerce', $menu );