Skip to content

Instantly share code, notes, and snippets.

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

Nícolas Deçordi eowfenth

🏠
Working from home
  • Nubank
  • Salvador, Bahia - Brazil
View GitHub Profile
@Log1x
Log1x / debloatNox.md
Last active March 7, 2026 00:49
Debloating & Optimizing Nox

Debloating Nox

Nox, despite being the most feature-filled Android emulator, has a lot of negativity surrounding it due to their antics when it comes to making income off of their program. It is known for running repeated advertisments in the background, calling home and passing along system information (outside of your Android instance) as well as a vast amount of potentially sensitive data in an encrypted payload back to their multitude of servers. With the following preventitive measures, we can stop a majority of this happening as well as greatly improve the overall performance.

  1. Download and Install a fresh copy of Nox. The latest version is fine (for now). If you already have it installed, that is fine too. No need to reinstall.

  2. Enable Root Mode on Nox by clicking the gear icon and then checking the Root Startup box.

  3. Install a new Launcher from the Play Store. ANYTHING but Nox's default. I suggest [Nova Launcher](https://play.google.com/s

@lucianomlima
lucianomlima / git.alias.sh
Last active February 29, 2020 14:24
Usefull git alias
# Delete branch
# Usage: git delete branch-name
git config --global alias.delete 'branch -D'
# Update branch with prune refs
# Usage: git update master
git config --global alias.update '!git fetch origin -p && git merge $(git rev-parse --abbrev-ref @{u})'
# Last commit details
# Usage: git last
@lucianomlima
lucianomlima / snippets.cson
Last active April 18, 2018 03:10
React Native Atom snippets
{
".source.js":
"React: import component":
prefix: "li"
body: "import ${1} from './${1}';"
"React: constructor":
prefix: "construct"
body: "constructor(props) {\n\tsuper(props);\n\t${1}\n}"
@lucianomlima
lucianomlima / app.js
Created June 15, 2017 22:22
React Native one file script start
import React, { Component } from 'react';
import { Text, View } from 'react-native';
export default class App extends Component {
render() {
return (
<View>
<Text>Hello World!</Text>
</View>
);
@kelvinst
kelvinst / git-aliases.md
Last active February 14, 2026 15:07
Git alias - seja rápido, seja breve!

Git alias - seja rápido, seja breve!

Git freak como sou, precisava compartilhar algo útil sobre ele, claro. E, já que não vejo muito por aí o pessoal usando, resolvi falar dos alias do git! É um recurso que eu uso muito, e nunca entendi porque muitas pessoas não são adeptas. 😕

Pelo nome você já deve perceber que os alias no git são atalhos. Atalhos pro quê? São atalhos para comandos do git e até comandos shell se você quiser. E é bem fácil cadastrar um alias:

$ git config --global alias.st status