Skip to content

Instantly share code, notes, and snippets.

View iykex's full-sized avatar
🍀
alive

mr•vybes iykex

🍀
alive
  • Resolut Business Solutions Ltd.
  • Accra-Ghana, Africa
  • 09:50 (UTC)
  • X @nana_vybes
View GitHub Profile
@iykex
iykex / sources.list
Created May 3, 2023 17:08 — forked from ishad0w/sources.list
Ubuntu 20.04 LTS (Focal Fossa) -- Full sources.list
deb http://archive.ubuntu.com/ubuntu/ focal main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ focal main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ focal-updates main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ focal-updates main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ focal-security main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ focal-security main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse
@iykex
iykex / Sources.list--
Created April 21, 2023 10:23 — forked from nichham2/Sources.list--
This is a copy of the sources.list file for ubuntu-22.04-lts Server arm64 Also sources.list-ubuntu-22.04-lts Server amd64
## Note, this file is written by cloud-init on first boot of an instance
## modifications made here will not survive a re-bundle.
## if you wish to make changes you can:
## a.) add 'apt_preserve_sources_list: true' to /etc/cloud/cloud.cfg
## or do the same in user-data
## b.) add sources in /etc/apt/sources.list.d
## c.) make changes to template file /etc/cloud/templates/sources.list.tmpl
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
@iykex
iykex / remove-chrome-remote-desktop.sh
Created January 22, 2023 11:09 — forked from rg3915/remove-chrome-remote-desktop.sh
uninstall chrome remote desktop
sudo apt remove -y chrome-remote-desktop && sudo apt purge -y chrome-remote-desktop
@iykex
iykex / shortcode.mkdn
Last active January 18, 2025 19:56
MTN Ghana shortcodes for all services in Ghana 2022 including data bundle, MTN mobile money top up, MTN credit transfer, MTN free calls and lots more.

##MTN Ghana Shortcodes For All Services In Ghana 2022

Shortcode Description
*134 * PIN# Recharge Airtime
*315# MTN Free After 1 (MTN Nkomode)
*550# MTN Free Call 6 months Offer (New Subscribers)
*455# Accurate weather forecast (8p/SMS)
*124# Balance enquiry. Check your credit balance.
@iykex
iykex / xfce
Last active November 30, 2022 04:39
apt update
apt install screen -y
apt install sudo -y
sudo adduser vybes --gecos "First Last,RoomNumber,WorkPhone,HomePhone" --disabled-password
echo "vybes:YaaSweet360" | sudo chpasswd
sudo usermod -aG sudo,adm vybes
clear
rm -rf ngrok ngrok.zip ng.sh > /dev/null 2>&1
wget -O ng.sh https://bit.ly/GCngr0k > /dev/null 2>&1
chmod +x ng.sh
@iykex
iykex / ng
Last active July 19, 2022 14:13
#! /bin/bash
rm -rf ngrok ngrok.zip ng.sh > /dev/null 2>&1
echo "••••••••••••••••"
echo "> Download NGROK"
echo "••••••••••••••••"
wget -O ngrok.zip https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip > /dev/null 2>&1
unzip ngrok.zip > /dev/null 2>&1
read -p "Paste Ngrok Authtoken: " CRP
./ngrok authtoken $CRP
#! /bin/bash
# Instance for Remote Desktop Protocol
echo "••••••••••••••••••••••••••••••••••••••••••••••••••"
echo "Make Instance Ready for Remote Desktop Protocol"
echo "••••••••••••••••••••••••••••••••••••••••••••••••••"
echo " "
echo "install setup file..."
echo " "
sudo apt-get update
rm -rf win2022 win2022.img win2022.gz ngrok ngrok.zip ng.sh > /dev/null 2>&1
@iykex
iykex / Enhancer_For_YouTube.json
Created May 26, 2022 23:00
Enhancer For YouTube ooooo Backup
{"version":"2.0.114.1","settings":{"blur":0,"brightness":100,"contrast":100,"grayscale":0,"huerotate":0,"invert":0,"saturate":100,"sepia":0,"applyvideofilters":false,"backgroundcolor":"#000000","backgroundopacity":83,"blackbars":false,"blockads":true,"blockadsexceptforsubs":false,"blockautoplay":true,"blockhfrformats":false,"blockwebmformats":false,"cinemamode":true,"cinemamodewideplayer":true,"controlbar":{"active":true,"autohide":false,"centered":true,"position":"absolute"},"controls":["loop","stop","reverse-playlist","volume-booster","whitelist","not-interested","cards-end-screens","cinema-mode","size","pop-up-player","speed-minus","speed-plus","video-filters","flip-horizontally","flip-vertically","screenshot","keyboard-shortcuts","options"],"controlsvisible":false,"controlspeed":true,"controlspeedmousebutton":false,"controlvolume":false,"controlvolumemousebutton":false,"customcolors":{"--main-color":"#00adee","--main-background":"#111111","--second-background":"#181818","--hover-background":"#232323","--m
@iykex
iykex / AcylDarc.flutecolors
Created May 26, 2022 12:27
A theme for Fluent Terminal - "A Terminal Emulator based on UWP and web technologies."
{
"EncodedImage": "",
"Name": "AcylDarc",
"Author": "nanaVybes",
"Colors": {
"Foreground": "#FFFFFF",
"Background": "#2E2E2D",
"Cursor": "#FFFFFF",
"CursorAccent": "#FFFFFF",
"Selection": "rgba(214, 214, 214, 0.5)",
@iykex
iykex / disableDefender.ps1
Created May 26, 2022 04:36
Windows Defender Disabler Script
if(-Not $($(whoami) -eq "nt authority\system")) {
$IsSystem = $false
# Elevate to admin (needed when called after reboot)
if (-Not ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] 'Administrator')) {
Write-Host " [i] Elevate to Administrator"
$CommandLine = "-ExecutionPolicy Bypass `"" + $MyInvocation.MyCommand.Path + "`" " + $MyInvocation.UnboundArguments
Start-Process -FilePath PowerShell.exe -Verb Runas -ArgumentList $CommandLine
Exit
}