Skip to content

Instantly share code, notes, and snippets.

View imnotdev25's full-sized avatar
🎯
Focusing

Bhavik Talaviya imnotdev25

🎯
Focusing
View GitHub Profile
@imnotdev25
imnotdev25 / clean_py.sh
Created February 28, 2024 04:15
Remove compiled python ( i.e. make install )
prefix='/usr/local/' # Path $~ which pythonx.x.
pyver='3.6' # Python version x.x
# Warning Don't remove system python3 otherwise linux system can crash
rm -rf \
$HOME/.local/lib/Python${pyver} \
${prefix}bin/python${pyver} \
${prefix}bin/python${pyver}-config \
${prefix}bin/pip${pyver} \
${prefix}bin/pydoc \
import oci
import logging
import time
import sys
import requests
LOG_FORMAT = '[%(levelname)s] %(asctime)s - %(message)s'
logging.basicConfig(
level=logging.INFO,
format=LOG_FORMAT,
@imnotdev25
imnotdev25 / index.html
Created January 28, 2024 09:33
Navvy the navigational ChatBot!
<!-- Currently BROKEN!
Working prototype on meesrutten.me :) -->
<main class="page__main">
<div class="block--background">
<div class="chatbot__overview">
<ul class="chatlist">
<li class="bot__output bot__output--standard">Hey, I'm Navvy!</li>
<li class="bot__output bot__output--standard">I will guide you through Mees' portfolio!</li>
<li class="bot__output bot__output--standard">
<span class="bot__output--second-sentence">You can ask me a bunch of things!</span>
@imnotdev25
imnotdev25 / xstartup
Created May 25, 2023 04:26
my ./vnc/xstartup or Vnc config file for gnome
#!/bin/sh
export XKL_XMODMAP_DISABLE=1
unset SESSION_MANAGER
unset DBUS_SESSION_BUS_ADDRESS
export XKL_XMODMAP_DISABLE=1
export XDG_CURRENT_DESKTOP="GNOME-Flashback:Unity"
export XDG_MENU_PREFIX="gnome-flashback-"
@imnotdev25
imnotdev25 / strings_wpswpatester_eng.xml
Last active August 21, 2022 04:26 — forked from fulvius31/strings_wpswpatester_eng.xml
Added Gujarati Translation
<resources>
<string name="settings" translatable="false">સેટિંગ્સ</string>
<string name="next" translatable="false">આગળ જાઓ</string>
<string name="previous" translatable="false">પાછળ જાઓ</string>
<string name="skip" translatable="false">અવગણો</string>
<string name="faq" translatable="false">વારંવાર પૂછાતા પ્રશ્નો</string>
<string name="mac_address" translatable="false">મેક એડ્રેસ:</string>
<string name="channel" translatable="false">ચેનલ:</string>

How to remove bloatware from android without root using adb only

  1. Make sure that USB debugging is enabled.
  2. Deactivate all bloatware apps.
  3. List the names of all deactivated packages:
$ adb shell pm list packages -d
@imnotdev25
imnotdev25 / index.html
Created September 3, 2021 05:17
Mini Music Player - VueJS
<div class="wrapper" id="app">
<div class="player">
<div class="player__top">
<div class="player-cover">
<transition-group :name="transitionName">
<div class="player-cover__item" v-if="$index === currentTrackIndex" :style="{ backgroundImage: `url(${track.cover})` }" v-for="(track, $index) in tracks" :key="$index"></div>
</transition-group>
</div>
<div class="player-controls">
<div class="player-controls__item -favorite" :class="{ active : currentTrack.favorited }" @click="favorite">