Details
-
AboutCreating bugs from features because why not?
-
SkillsFull stack, blockchain, AI, IoT with machine learning and html developer guru, sometimes I'm a rockstar developer but meh....
-
LocationUnderground
-
Website
-
Github
Joined devRant on 2/17/2017
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
-
A bit of a shocker to see Microsoft putting an add that isn't annoying or eating up half the screen or damaging my eyes, let's hope it stays like this1
-
I wanted to write: useFetchData
I ended up writing: useFartData
not much of a difference just different wording 🤷🏻2 -
Been a while since I used Android Studio, the moment I hit build my laptop looks like its about to fly away, fans spinning so damn fast :\6
-
Nice little feature from Warp, auto hiding secrets, although this isn't a secret it is just a version number 😅8
-
Checking my work email, found three meeting invitation emails, got a mini heart attack, then noticed the other two are just rescheduling...
Not a nice way to start a Monday with meetings invitation 😅 -
I'm not sure if Google is sending me a hidden message or their AI system is trying to take over...3
-
Raise, zero releases on weekend, not mentioning for once that ChatGPT/Bard said this or that ...etc
I swear once ChatGPT gave my boss the exact opposite of what is mentioned in the documentation and I had to literally share the link of the docs so that boss believe me ... -
So much AI everywhere, I use Warp as terminal on macOS and today they introduced AI assistant and now at least if I sudo rm -rf / I can have someone to ask for help fast enough to know how bad I messed up ¯\_(ツ)_/¯9
-
I have the following scenario with a proposed solution, can anyone please confirm it is a secure choice:
- We have critical API keys that we do not want to ship with the app because de-compiling will give access to those keys, and the request is done before the user logs in, we are dealing with guests
Solution:
- Add a Lambda function which accepts requests from the app and returns the API keys
- Lambda will accept the following:
1. Android app signing key sha1
2. iOS signing certificate sha1
- If lambda was able to validate them API keys are sent back.
My concerns:
- Can an attacker read the request from the original (non-tampered) apk and see what the actual sha1 value is on his local network?
- If the answer to the question above is yes, what is the recommended way to validate that the request received is actually from the app that we shipped and not from curl/postman/script/modified version of the app11 -
Is someone is facing this issue? This is the second time I try to download LibreOffice, download speed is 200KB,
I just downloaded AWS CLI and download speed was 4MB, are they throttling or something?7 -
On a side note, XCode 14.0.1 up and running in a new time record on an HDD (not SSD)
Was always dreaming of this moment ever since XCode 6, finally it came true -
Stupid UX on Apple app store connect website!
*Enters email
*Enters password
*wrong password, password field still focused
*starts typing: email field focused and all content is written there now .....
Why?2 -
Two reviewers two comments on the same content, both comments conflict with each other and I'm required to apply both, how exactly?2
-
Usually websites:
- wrong password -> Password field cleared and focused again
Apple websites:
- wrong password -> Password field cleared and email field focused again and password field hidden because fuck you!10 -
I'm facing a strange problem, I have a 400GB microsd, it is formatted as exFAT
I tried formatting it again to either ntfs or ext4, on either Linux or macOS, but every tool says format complete then when scans again it still shows the files that storage had + that it's exFAT
I tried gparted, disk utilities (macOS), Disks (ubuntu), mkfs all show same result that it successfully formatted the card but after refresh still shows old filesystem + the contents of the memory already there no file was removed
Can anyone help?21 -
Is this really android 12? My phone is stuck at android 9, and I'm using simulator to test an app but wtf is this? its like the cheap copy of an iPhone settings :S
What is this even the stretching when we hit edge of scroll :S
This thing looks like when Windows Phone meets iOS9 -
Confession:
Owned a smartphone for 10 years, this month was my first time ever getting 3G/4G connection ...
I prefer no internet when I'm out ¯\_(ツ)_/¯5 -
Wtf is this ....
Google clock app, anyone can recommend an alternative I just want to set an alram5 -
Working with Swift & Kotlin again, feels good to work with them, although I did enjoy working with Typescript, but React Native is just not fun to work with ....1
-
Firebase:
I'm facing weird behavior. I have an app on Android 7 always received notifications evven if not used for a week.
On Android 9 if not used for three days it stops receiving anything.
Anyone knows what could be wrog?8 -
My laptop is powering off out of nowhere...
I've checked for SSD errors non found replaced it with HDD not issues at all ...
Any one can recommend a tool even if it's on Linux to scan for SSD issues?16 -
I'm starting to learn Solidity, and explore about smart contracts.
Anyone have a nice resource for learning?7 -
Domain Drive Design question:
I am working on a simple case to teach how to apply DDD, my case is as follows:
Simple forum with Author, Moderator and Users.
I am using Dotnet core for this. I am not sure how and where I should implement authorization:
1. Author can edit his posts only
2. Moderator edits any post
In dotnet core, we handle roles, policies in the api layer, and its per endpoint, I have an identity layer which handles accounts, registering roles and policies in database.
But I'm not sure if I should or how to handle authorization based on permissions in application layer.26