Skip to content

Instantly share code, notes, and snippets.

View acovenues's full-sized avatar
💭
^⁠_⁠^

ffcrabzeaq20 acovenues

💭
^⁠_⁠^
View GitHub Profile
@yewtudotbe
yewtudotbe / what-happened-downtime-july2023.md
Last active December 27, 2025 05:32
Why yewtu.be was down? (July 2023)

On the 30th of June, my cloud provider, Oracle Cloud, decided to shutdown all my servers hosted on two Oracle Cloud accounts.
It is known that this provider will randomly ban accounts without any reason.

Why yewtu.be doesn't accept new registrations nor logging into an account?

Unfortunately and this is 100% my fault for forgetting that, I only had data duplication between servers located in the two Oracle Cloud accounts and no backups.
I thought that I wouldn't get all my accounts in trouble at the same time and able to recover the data from one of the two accounts but unfortunately this turned out otherwise.

Implementing some backup was something I had in my notes for a long time but I think I forgot about it, maybe due to the huge amount of work I spend on the open source projects.
I'm deeply sorry if you have lost your subscriptions list or playlists or watch history. I did try to contact Oracle Cloud for recovering the data, I'm waiting for their answer but you should be certain that they

@Theoistic
Theoistic / TikTok Android Manifest
Last active January 24, 2026 15:46
TikTok Android Manifest Version 16.6.4
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:amazon="http://schemas.amazon.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="160604" android:versionName="16.6.4" android:installLocation="auto" android:compileSdkVersion="28" android:compileSdkVersionCodename="9" package="com.ss.android.ugc.trill" platformBuildVersionCode="28" platformBuildVersionName="9">
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="28"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-feature android:name="android.hardware.location.gps" android:required="false"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
@paresharma
paresharma / termux.sh
Last active February 12, 2025 02:35
Rails on Termux
apt update && apt upgrade
apt install ruby vim git nodejs
apt install ruby-dev libxml2-dev libxslt-dev pkg-config make clang
gem install nokogiri -- --use-system-libraries
apt install libsqlite-dev
gem install sqlite3