Skip to content

Instantly share code, notes, and snippets.

View Farid-NL's full-sized avatar
Procrastinating

Farid NL Farid-NL

Procrastinating
  • 10:56 (UTC -06:00)
View GitHub Profile
@AntonFriberg
AntonFriberg / README.md
Last active July 2, 2025 23:04
Multiple Python Installations on Linux Using Mise-en-Place (an asdf rust clone)

Multiple Python Installations on Linux Using Mise

Note: Mise was previously called RTX

I have tried a lot different ways of managing multiple Python versions on different Linux systems.

  • pyenv
    • Uses shims which is confusing, especially for new users
  • Compiling from source
@simonhamp
simonhamp / AppServiceProvider.php
Last active August 4, 2025 20:56
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()