Skip to content

Instantly share code, notes, and snippets.

View iykex's full-sized avatar
🍀
alive

mr•vybes iykex

🍀
alive
  • BitHub Inc.
  • Accra-Ghana, Africa
  • 13:50 (UTC)
  • X @nana_vybes
View GitHub Profile
@hamid-rostami
hamid-rostami / README.md
Last active June 10, 2024 23:16
wireguard over TCP

To pass wireguard's traffic through a TCP tunnel by using udp2raw

Requirements

For Arch linux, install udp2raw by pacman: pacman -S udp2raw

For Debian or Ubuntu, you can use a binary release from: https://github.com/wangyu-/udp2raw/releases

{
"version": "2",
"templates": [
{
"categories": ["Other"],
"description": "AdGuard Home is a network-wide software for blocking ads & tracking. After you set it up, it’ll cover ALL your home devices, and you don’t need any client-side software for that. With the rise of Internet-Of-Things and connected devices, it becomes more and more important to be able to control your whole network.",
"env": [
{
"default": "1000",
"label": "PUID",
@SkyyySi
SkyyySi / youtube-vanced-alternatives.md
Last active June 10, 2024 15:05
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):

@rg3915
rg3915 / remove-chrome-remote-desktop.sh
Created August 30, 2019 05:17
uninstall chrome remote desktop
sudo apt remove -y chrome-remote-desktop && sudo apt purge -y chrome-remote-desktop
import 'package:flutter/material.dart';
import 'dart:math' as math;
void main() => runApp(TwitterFab());
class TwitterFab extends StatefulWidget {
@override
_TwitterFabState createState() => _TwitterFabState();
}
@iykex
iykex / compile_rom_source.md
Created April 11, 2018 23:29
Step To Compiling LineageOS `14.1` ROM From Source

Step To Compiling LineageOS 14.1 ROM From Source


Install the build packages :

To build LineageOS, you’ll need:

  • sudo apt install bc bison build-essential ccache curl flex g++-multilib gcc-multilib git gnupg gperf imagemagick lib32ncurses5-dev lib32readline-dev lib32z1-dev libesd0-dev liblz4-tool libncurses5-dev libsdl1.2-dev libssl-dev libwxgtk3.0-dev libxml2 libxml2-utils lzop pngcrush rsync schedtool squashfs-tools xsltproc zip zlib1g-dev

For Ubuntu versions older than 16.04 (xenial), substitute:

  • libwxgtk3.0-dev → libwxgtk2.8-dev
@wilforlan
wilforlan / using-bs-in-ionic.txt
Created March 13, 2018 10:27
Using bootstrap css inside ionic app
Create a file
> src/assets/scss/tools/_bootstrap.min.scss
Paste this inside
```
/*!
* Bootstrap v3.3.7 (http://getbootstrap.com)
* Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
<!-- Slide Menu-->
<aside class="side-menu__container" [ngClass]="{'side-menu__container-active': showMenu}" (click)="toggleMenu()">
<nav class="slide-menu" [ngClass]="{'slide-menu-active': showMenu}" (click)="$event.stopImmediatePropagation();">
<section class="menu-header">
<span class="greeting__text">Welcome Back</span>
<div class="profile-image__container">
<img src="https://avatars3.githubusercontent.com/u/5658460?s=460&v=4" alt="profile-image"
class="profile__image">
</div>
<div class="account-details">
@iykex
iykex / git-reset.md
Last active May 19, 2018 20:28
GitHub </> Deleting commits history with git commands

Method One

Deleting the .git folder may cause problems in our git repository. If we want to delete all of our commits history, but keep the code in its current state.

Check out to a temporary branch:

  • git checkout --orphan TEMP_BRANCH
@iykex
iykex / adb.sh
Created October 30, 2017 15:59 — forked from olivier-m/adb.sh
Remove all Google apps from an android phone. List of delete files from http://forum.xda-developers.com/showthread.php?t=1969755
# With your phone in debug mode, etc.
adb start-server
adb remount
adb shell < remove.sh