It was probably first noticed widely on twitter with the name *shadow banning* and it still exists even though name changed to x. This is not new. Youtube has been doing it for ages, they boost or nerf certain content or the creator depending on whether the creator or content is profit friendly or not. Everyone who knows this from ages somehow thinks that video game companies don't do it or it is just the bots employed by these companies who disagree with you. I myself know this from my own personal experience where a game called apex legends by repsawn+EA keeps nerfing free user's accounts, boost consistant spender's accounts and their gameplay. They feed free users to consistantly spending users as cannon fodder. Free users are those who do not spend money to buy virtual items in the game. They haven't spend money and most probably won't. There are also statistics in these games and I have seen on multiple occasionson how they undo/overwrite/modify your statistics all of a sudden includingthe hours you have spent. ex: daily challanges. Everyday they reset at 3.30pm IST. I start doing them around 4pm IST. I did that yesterday and today when I checked around 3.14pm, the daily challange itself was changed. I have not played octane in like a month but one of the daily challange is to play the octane 4 times and it shows that I have completed that part. I have completed 2/5 daily challanges. 1 of the incomplete challange was get 10 kills or assists. I have like 15 minutes and I would definitely won't be able to do it even though I have nearly 10k hours on this game. 4 days ago 1 of the daily challange was to get 10knock outs. I was playing as fuse. I got stuck at 8 KOs and every thing else was just getting counted as assists. After hours and hours, aftger 50 assists, I got 10KOs and that too when I started exiting the game within first 5 minutes of the game If I don't get a KO or a kill count because then the AI realised that the game is not going to get my free time without giving me something in return.
my techdirt
https://ambig.one/2, |Cloud, Code, Tech|
Wednesday, August 13, 2025
Monday, August 11, 2025
The Godaddy scam
- Keep receiving mails about domains expiring soon, even though auto renew is set and the sometimes the early renewal is already done
- keep receiveing mails about payment method missing but when I login and check, the credit card info is still present and tested to be working, including paypal.
- You end up ignoring such mails later, thinking that it is just another false flag, just like before and boom, you lose your domain.
- I cannot confirm but I heard that it is an organised scam by employee+buyer to do this to the owner of a domain that they are intersted in, keep torturing him/her with fake alerts, enough fake alerts to make sure that they soon start ignoring such mails and once they do, the auto renew somehow fails or never triggers the auto renewal and you lose your domain.
Sunday, August 10, 2025
Plex server, issues and workarounds
Problem: Every now and then on windows plex client refuses to launch, even though plex server is launched & working.
Solution:
- Exit/kill all plex services (probably from the tray menu or task manager)
- win key + R to open the run command window and input %localappdata%
- Delete the Plex folder, not the plex server or plex media folder.
- Now launch the plex media server and then the plex client itself, login and use it as usual
- Click on the wrench icon which takes you to settings
- in the left panel, click on your username
- Check mark, *automatically sign in* option
$currentuser = $env:USERNAME $folder = "C:\Users\$currentuser\AppData\Local\Plex" Remove-Item -Path $folder -Recurse -Force
Wednesday, July 16, 2025
Setting up flutter for android on windows is BS
So all these mega tech corpos cant make an installer or their employees only do what they are told/asked and they dont give a damn about these things.
I was trying to setup android development on windows with my VSC, hey don't judge me, I dont want to use the inbuilt IDE of android, I wanna stick to what I know, whom I know and that is VSC; so here are the pointers
- Do not use WSL on VSC, it won't work or don't know anyone who has made it work
- Open a new workspace on windows local machine (not WSL)
- Install dart and flutter extensions
- Download and install android studio
- Add the ANDROID_HOME environment variable (system & user) to C:\Users\username\AppData\Local\Android\Sdk verify the same by running `echo %ANDROID_HOME%` in command shell (not powershell)
- Add the following paths to windows PATH
C:\Users\username\AppData\Local\Android\Sdk\platform-tools C:\Users\username\AppData\Local\Android\Sdk\cmdline-tools\latest\bin - Use cmd shell, not powershell terminal in the VSC. If step 5 is done well, this is not needed but still works as a backup step. point sdk to the flutter by doing flutter config --android-sdk C:\Users\username\AppData\Local\Android\Sdk
- Download the commandline tools separately and ensure they are placed like this
C:\Users\username\AppData\Local\Android\Sdk\cmdline-tools\latest\bin\sdkmanager.bat - Install visual studio community edition with Desktop development with C++
- Now run 'flutter doctor' in VSC cmdline terminal and you should be good to go. Powershell might still work but not always, at least in my case.
Thursday, June 12, 2025
Django statics won't work for admin & drf
If you have django debug toolbar installed, loaded and being used then the statics for admin & drf won't work. It is a conflict between them. Disable debug toolbar if you need the statics to work for admin & drf pages.
versions: django 5.1.x
STATICFILES_DIRS = [ os.path.join(BASE_DIR, "static"), os.path.join(BASE_DIR, "media"), ] # Static files STATIC_URL = f"{STATIC_URL_BUCKET}/static/" # Or use your public MinIO endpoint # Media files (user uploads) MEDIA_URL = "/media/" # Not used for direct serving, but required by Django