Skip to content

Instantly share code, notes, and snippets.

View maicol07's full-sized avatar
😉
Always working on some project(s)! Check my readme!

Maicol Battistini maicol07

😉
Always working on some project(s)! Check my readme!
View GitHub Profile
@lopestom
lopestom / Using online resource to build custom recovery-I.md
Last active September 19, 2024 12:43
Building custom recovery - TeamWin - Fox - SHRP - PBRP online

Using online resource to build custom recovery - TeamWin - Fox - SHRP - PBRP

logo

Q&A - A quick understanding of the meaning of this tutorial.

  • What is the purpose of this tutorial?

    Understand that more and more you need a good PC/laptop/notebook equipment to compile Custom Recovery. Unfortunately, many people cannot or do not have the time to test/compile the device tree.

  • Why am I writing this?

@JasSuri
JasSuri / moonlight_sunshine_gamestream_guide.md
Last active August 12, 2024 08:27
Moonlight and Sunshine gamestream guide for Windows 11

This guide was last updated: 20th December 2022, and the most optimum settings may differ as Sunshine and Moonlight are updated.

Overview

This guide is intended to help those migrating from streaming their games with Nvidia GameStream, to Sunshine. It will help you setup the Moonlight client and Sunshine gamesteam host to stream your PC games to your other devices. The aim is to optimise the settings to get similar streaming performance as Nvidia GameStream.

Prerequisites

  1. Download and install Moonlight client on your chosen device
  2. Download and install the nightly build of Sunshine gamestream host on the PC which you want to stream games from.
@SkyyySi
SkyyySi / youtube-vanced-alternatives.md
Last active August 25, 2024 13:54
A list of alternatives after the shutdown of Vanced

NONE OF THESE CLIENTS ARE VERIFIED BY ME FOR SECURITY OR ANYTHING ELSE! USE AT YOUR OWN RISK!

These are the current alternatives (with links when possible):

@aronreisx
aronreisx / tutorial-rename-wsl-disto.txt
Created December 11, 2021 19:16
How to rename WSL Distro on Windows
To rename WSL Distros on Windows follow the steps:
1. Stop all instances of WSL
On PowerShell run the command: wsl --shutdown
2. Open Registry Editor and go to HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Lxss
Each subfolder on Lxss represents a distro
3. Locate and rename the distro you want
Inside each distro folder you have the DistributionName, change it and click ok
@iDevelopThings
iDevelopThings / ZiggyMixExtension.js
Created June 28, 2021 12:56
Generate typescript definitions for ziggy-js so you get auto completion for the route() helper
const mix = require('laravel-mix');
const {exec} = require('child_process');
mix.extend('ziggy', new class {
register(config = {})
{
this.watch = config.watch ?? ['routes/**/*.php'];
this.enabled = config.enabled ?? !Mix.inProduction();
}
@mvaisakh
mvaisakh / Bringup.md
Last active September 10, 2024 21:37
An Android Device Tree Bringup Guide

A small Device Tree Bringup Guide

Introduction

So, you guys might be wondering, how do these "Developers" get your favourite Custom roms, such as LineageOS, Paranoid Android etc., to their own devices. Well I'm here to Guide you on how to do it, specifically on how to bringup or make your own device tree from scratch or adapting.

Gist of this Guide: This is for people with genuine interest in Android OS porting/development. After going through this guide, you should be able to do a total device tree bringup on your own.

Prerequisite: Certain requirements are to be met before you start with this amazing journey.

@Zekfad
Zekfad / conventional-commits.md
Last active September 24, 2024 10:34
Conventional Commits Cheatsheet

Quick examples

  • feat: new feature
  • fix(scope): bug in scope
  • feat!: breaking change / feat(scope)!: rework API
  • chore(deps): update dependencies

Commit types

  • build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
  • ci: Changes to CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
  • chore: Changes which doesn't change source code or tests e.g. changes to the build process, auxiliary tools, libraries
export type MaterialIcons =
| '10k'
| '10mp'
| '11mp'
| '12mp'
| '13mp'
| '14mp'
| '15mp'
| '16mp'
| '17mp'
@danieldogeanu
danieldogeanu / MakePowerShellRememberSSHPassphrase.md
Last active September 24, 2024 19:21
How to make Powershell remember the SSH key passphrase.

You should not use the Open SSH client that comes with Git for Windows. Instead, Windows 10 has its own implementation of Open SSH that is integrated with the system. To achieve this:

  1. Start the ssh-agent from Windows Services:
  • Type Services in the Start Menu or Win+R and then type services.msc to launch the Services window;
  • Find the OpenSSH Authentication Agent in the list and double click on it;
  • In the OpenSSH Authentication Agent Properties window that appears, choose Automatic from the Startup type: dropdown and click Start from Service status:. Make sure it now says Service status: Running.
  1. Configure Git to use the Windows 10 implementation of OpenSSH by issuing the following command in Powershell:
git config --global core.sshCommand C:/Windows/System32/OpenSSH/ssh.exe