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
Search - "step by step"
-
A few days ago while browsing devRant, my girlfriend stopped me at this one post and asked why does this person have a rubber duck. I went on to explain her about Rubber Duck Debugging. She was totally amazed by the concept (she's not a techie). Today suddenly a package arrived at my door step from her.
Well now I have an entire family of rubber ducks to code with :D
22 -
I just remembered the first time I set up a Linux-Server. It was a simple Apache webserver at my first internship anf I didnt have a clue about literally anything.
My mentor guided me through and gave me literal step-by-step instructions (alright, now type... and now type...).
At the end he told me "OK, now run 'sudo rm -rf /*' to finish setting up". Me, being the naive and clueless motherfucker I am, happily nuked the everloving shit out of my newly setup server. I was like "Alright, WTF just happened??" He then told me "Now that you know how it works, do the entire thing again all by yourself. And you just learned an important lesson: NEVER exexute commands you dont know what theyre doing". I really did learn a lot on that day and still follow that lesson :D8 -
How everyone uses stackoverflow:
1. Work on some project
2. Spot a bug
3. Try to solve the bug and fail.
4. Write a question for SO.
5. Post question on SO.
6. Get the answer and some points.
How I use stackoverflow:
1. Work on some project
2. Find a bug
3. Try to fix the bug and fail
4. Write a question on SO
5. Get scared that I might be downvoted.
6. Spend 45 minutes optimizing the structure of the question.
7. Try additional tests to cover all possible scenarios.
8. Still scared to click post.
9. Scrap everything and restart line by line writing further details of each step in your question.
10. Find the bug myself.
11. Click cancel on the question that took me 3+ hours to write.
12. Cry.20 -
So my friend has two-step authentication for his smartphone.
Now he is not able to find his phone.
So, he tried to find his phone by logging into his google account via Android Device Manager.
Now, it is asking for the authentication pin which is in his phone.😂
He just got deadlocked.12 -
Was irritated and annoyed because of a client.
Someone called the support line and I was ready for some temper-holding practice.
A very sweet lady was at the other side and she couldn't figure something out and was overwhelmed by all the options she had in her new hosting package.
Very calmly helped her and guided her to the right place, step by step. She did exactly what I said instead of playing a smartass.
She finally found it and said that she appreciated it and a ton of thanks 😊.
Now that's a good way to end a work day!8 -
The website i made has been hacked today.
Stored in their server.
They didnt give me an access for it.
The user account in the cms i used for updating content while building the website was revoked when the website is completed.
Now they ask me for the latest backup.
I have no backup because how the hell i do a backup when i got no access to the cpanel.
The only backup is the zip file for initial uploading into their server and the contents were added after the website is on their server.
That goddamn IT guy who wont give me any access for “securty sake” is calling me furiously asking for the backup and how to set up the stuffs from the beginning.
I thought he was the one who know his shit but i was wrong.
Fuck me?
No.
Fuck you.
But i still responding to him telling him step by step how to do shit with some swearing and sarcasm.
ALWAYS BACKUP YOUR SHITS, MATE7 -
That moment when you finished your first REST API 🎉
And you realise all it can do is useless ☹️
But then you realise, you can extend the functions easily with you new knowledge 🎊
Man, this emotional up an down is exhausting 😆4 -
Got annoyed by hitting f11 instead of f12.
("step into" versus "go to definition").
Solved the problem :)
12 -
Step 0: Feel incompetent with coding skills
Step 1: Try to practice by writing programs or learning new software, etc...
Step 2: Lose motivation and watch Netflix
Step 3: repeat9 -
The best I have seen and exploited was years ago with a web shop that allowed me to set my own check-out price by just inspecting the element and setting the desired price. It just happily advanced to the next step where they invoked the payment provider with my custom price. Unfortunately the shop doesn't exist anymore. I have encountered many more security leaks but this one was so easy and lucrative to exploit.3
-
Guys, my unfortunately daily rant of my pm
I was told to create a docker env for our team. Good. Document the process so everyone can know what to do. Good.
My PM follows what he wants to instead of step by step and changes whatever he wants to.
I am asked for help because he doesnt know. No prob.
Me: "Do this, do this and.."
PM: "that doesnt matter, trust me, I could change it and.."
Me: "...and it wont work"
PM: "I know suff too, check" *does his changes aaaaaand doesnt work*
* awkward staring*
That happened a while ago.
This week, he crashed his git repo because he was doing things in docker team (including him) decided not to.
Took me more enough time explaining him "you are not supposed to do that in the container" funny fact he wanted to prove that his way was right and even if he did my way it would crash.
Sooooo he did my way just to prove how wrong I was. Everything worked flawlessly. Rage-still-awkward staring.
Plus the "aww that's weird. I dont know how this happened" -
I'm trying to sign up for insurance benefits at work.
Step 1: Trying to find the website link -- it's non-existent. I don't know where I found it, but I saved it in keepassxc so I wouldn't have to search again. Time wasted: 30 minutes.
Step 2: Trying to log in. Ostensibly, this uses my work account. It does not. Time wasted: 10 minutes.
Step 3: Creating an account. Username and Password requirements are stupid, and the page doesn't show all of them. The username must be /[A-Za-z0-9]{8,60}/. The maximum password length is VARCHAR(20), and must include upper/lower case, number, special symbol, etc. and cannot include "password", repeated charcters, your username, etc. There is also a (required!) hint with /[A-Za-z0-9 ]{8,60}/ validation. Want to type a sentence? better not use any punctuation!
I find it hilarious that both my username and password hint can be three times longer than my actual password -- and can contain the password. Such brilliant security.
My typical username is less than 8 characters. All of my typical password formats are >25 characters. Trying to figure out memorable credentials and figuring out the hidden complexity/validation requirements for all of these and the hint... Time wasted: 30 minutes.
Step 4: Post-login. The website, post-login, does not work in firefox. I assumed it was one of my many ad/tracker/header/etc. blockers, and systematically disabled every one of them. After enabling ad and tracker networks, more and more of the site loaded, but it always failed. After disabling bloody everything, the site still refused to work. Why? It was fetching deeply-nested markup, plus styling and javascript, encoded in xml, via api. And that xml wasn't valid xml (missing root element). The failure wasn't due to blocking a vitally-important ad or tracker (as apparently they're all vital and the site chain-loads them off one another before loading content), it's due to shoddy development and lack of testing. Matches the rest of the site perfectly. Anyway, I eventually managed to get the site to load in Safari, of all browsers, on a different computer. Time wasted: 40 minutes.
Step 5: Contact info. After getting the site to work, I clicked the [Enroll] button. "Please allow about 10 minutes to enroll," it says. I'm up to an hour and 50 minutes by now. The first thing it asks for is contact info, such as email, phone, address, etc. It gives me a warning next to phone, saying I'm not set up for notifications yet. I think that's great. I select "change" next to the email, and try to give it my work email. There are two "preferred" radio buttons, one next to "Work email," one next to "Personal email" -- but there is only one textbox. Fine, I select the "Work" preferred button, sign up for a faux-personal tutanota email for work, and type it in. The site complains that I selected "Work" but only entered a personal email. Seriously serious. Out of curiosity, I select the "change" next to the phone number, and see that it gives me four options (home, work, cell, personal?), but only one set of inputs -- next to personal. Yep. That's amazing. Time spent: 10 minutes.
Step 6: Ranting. I started going through the benefits, realized it would take an hour+ to add dependents, research the various options, pick which benefits I want, etc. I'm already up to two hours by now, so instead I decided to stop and rant about how ridiculous this entire thing is. While typing this up, the site (unsurprisingly) automatically logged me out. Fine, I'll just log in again... and get an error saying my credentials are invalid. Okay... I very carefully type them in again. error: invalid credentials. sajfkasdjf.
Step 7 is going to be: Try to figure out how to log in again. Ugh.
"Please allow about 10 minutes" it said. Where's that facepalm emoji?
But like, seriously. How does someone even build a website THIS bad?rant pages seriously load in 10+ seconds slower than wordpress too do i want insurance this badly? 10 trackers 4 ad networks elbonian devs website probably cost $1million or more too root gets insurance stop reading my tags and read the rant more bugs than you can shake a stick at the 54 steps to insanity more bugs than master of orion 312 -
Once upon a time while browsing his Instagram, a young and inexperienced boy found a magic realm called devRant.
He decided to hop on the cyberweb of interconected computers, aka. the Internet and found the gate to the magic realm.
Timidly he took a step forward and found himself surrounded by strange structures called Rants and Stories.
No knowing what to do, he now roams in this new and strange realm looking for some guidence and perhaps even friendship.26 -
Dev manager: Can you fix this issue?
Me: Yeah, but i cant reproduce it using the explanation given in the ticket. Can i get a step by step guide and a confirmation that the issue is reproducible.
Dev manager: you're the lead dev, you figure it out.
askdjasfkjksadjkasd!!
Do you want me to spend an hour not developing things trying to guess? because that is how you make me spend an hour not developing things6 -
Hello again, everyone. As Sunday comes to a close, and Monday is fast approaching, I'll share with you the likely cause of my death by stroke and/or heart attack:
MONDAY MORNING COFFEE OF HORROR
Disclaimer: Do NOT try this. I am a professional addict. I am not responsible for anything this brew from hell causes to you and/or those around you.
So, I wake up, feeling like I haven't slept for days, or just notice the fucking alarm clock shrieking because I pulled an all-nighter.
Step 1: Silence alarm clock via mild violence.
Step 2: Get the coffee machine to brew some filter coffee (espresso works too)
Step 3: Get milk and ice cubes from the fridge (both are needed, I don't care if you don't like milk, trust me)
Step 4: Get 2 spoonfuls (not tea spoon, and actually FULL spoonfuls) into the biggest glass you have
Step 5: Pour just a little of the warm filter coffee into the glass, just to get the instant coffee wet enough, and start mixing, until the result looks like the horror you unleashed in your toilet a few minutes ago (and will do so again in a few)
Step 6: Mix in 25-50 ml milk, just for the aesthetic change of colour of the devil-brew, and to add the necessary amount of lactic acid to react with the coffee to produce chemical X
Step 7: Add ice cubes to taste (if you are new to this, add a lot)
Step 8. Slowly add the filter coffee while mixing furiously, so that the light brown paste at the bottom get dissolved (it's harder than it sounds)
Now, take a deep breath. Before you is a disgusting brew undergoing a chemical reaction, and your moves need to be precise otherwise it will explode. Note that sugar or any other form of sweetener is FORBIDDEN, as it will block the reaction chain and the result won't be as potent.
Take a straw (a big one, not those needle-like ones that some cafeterias give to fool you into believing that the coffee is more than 150ml). Put it inside the mix, and check that the route to the bathroom is free of obstacles.
Now, clench your abs, close your nose if you are new to this, grab the straw and DRINK!
DRINK LIKE THERE IS NO TOMORROW!
THAT BROWN DEVIL'S BILE WILL HAVE YOUR INTESTINES SPASM AND DANCE THE MACARENA WHILE TWIRLING A HULA HOOP!
YOUR HEART WILL GO OVERDRIVE HARDER THAN YOUR PC'S CPU WHEN COMPILING ON ECLIPSE AND BROWSING WITH IE AT THE SAME TIME.
The combination of caffeine and lactic acid will bring out the perfectly disgusting combination of sour and bitter usually expected in rotting lemons. After you manage to chug it down (DON'T SPILL OR SPIT ANY!) you have 30 - 60 seconds max to run to the porcelain throne, where you will spend the next 30-60 minutes.
After that, nothing can stop you! You will fix bugs, write entire codebases from scratch, punch that annoying coworker, punch that boss! You will be a demigod among mortals for the next 6-8 hours!
Your recipes for Monday morning coffee?13 -
A lot of Project managers are idiots.
Here is what happened: I am a backend developer and was asked to replace some images on some website (not even sure this is supposed to be a backend task). So i did, changes went through review and then they were live.
A few hours later they come to me saying i made a mistake because the image has wrong color tone in one of the browsers (internally facepalming myself)... I didn't design the images nor made any changes to them... I just fucking uploaded the files that were sent to me... That's fucking it.
They blamed me for a design issue and how I should've noticed this issue blah blah blah... And i had to spend an entire fucking hour to explain to them step by step what i did, how i did it and why the color tone was wrong even though i am not a designer and my main tool is VISUAL FUCKING STUDIO AND NOT PHOTOSHOP.
The shit part is that the images were sent to us by the client, so really, it is their fucking fault not mine.
Oh, and they tried to guilt me by saying the client won't pay for this since the images are wrong.
Lost an hour to this bullshit.6 -
!rant
Let's take a moment to appreciate interested and enthousiastic non-developers who really want to learn a programming language.
I am studying Medical IT at my college and most of my classmates aren't coming from an IT background.
We're currently working with Java, PHP, JavaScript and some require Node for their semester projects.
Some of my classmates approach me when they're stuck while coding and I try to teach them as much as possible so they understand what they are doing wrong and how to fix it.
I also show them how they can optimise their code step by step and they love it!
As a classmate told me yesterday:
"It's always so much fun working with you. I come up with a small problem, but I end up learning so much more about programming when solving a problem with you. I appreciate that."
It's a mindset I've learned when I was doing my developer apprenticeship back in the day. One of my colleagues told me: "if they want your help because they need a quick fix, tell them to kiss your ass. If you know they've already tried everything they could and ask you specifically because they want to understand what they are doing wrong, they are future developers with great potential, so go teach them."
May the force be with you, my enthousiastic little non-devs ❤️6 -
I don't mind if you down vote my answers on stack-overflow. But unless you leave a better answer or a comment explaining why, you are a fucking troll and an asshole.
I MEAN, YOU SHOULD TAKE A BIG STEP BACK AND LITERALLY FUCK YOUR OWN FACE!!!!
You aren't helping me or others learn from our mistakes by showing us the better way.32 -
I SENT YOU THE EXACT SIGNUP URL ON NETLIFY
I TOLD YOU STEP BY STEP WHAT WOULD HAPPEN, AND HOW I CAN TRANSFER THE SITE TO YOU
AND NOW YOU COME TO ME COMPLAINING YOU DON'T UNDERSTAND??!?!?!?!
fucking toxic clients I swear, never again
this is what I get for doing something for free for an acquaintances friend
if you can't handle ownership of your own website, maybe get the hell out of the internet
🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡🎪🤡9 -
A new linear time O(N) sorting algorithm [Keep it secret 🔒]
* Compare two adjacent elements one by one starting from the first element
* If there are out of order, delete the second element and continue with step 1
* If in order, go to the next two elements
* Once done, act like the numbers you deleted never existed
Works all the time.
Not yet published. Thinking of a good name for it.25 -
For fucks sake if I send you a clearly described 5 step install instructions do not start on step 3! Yes you fucking moron instructions labeled 1,2,3,4,5 should be carried out one after the other! Not in random order.
Seriously, how deranged are you that you have never ever encountered a step-by-step instruction before?!
Don't give me that "oh, should I have started with step 1 first? You weren't very clear about that. I think it is a bit too complicated."
Here are some more instructions:
1. Close your PC
2. Donate it to someone with detectable IQ level
3. Go fuck yourself
4. Please die
5. Yes, start with step 15 -
When I learnt programming, sugar was still made out of salt and hence not used in coffee.
Also, we didn't have source level debuggers, only the "print" method. However, compiling was also slow. It was faster and more convenient to go through the program and execute the statements in one's head. This helped understanding what code is doing just by reading it. It also kept people from trial and error programming, something that some people fall for when they resort to single step debugging in order to understand what their own code is even doing.
Compiling was slow because computers in general were slow, like single digit MHz. That enforced programming efficient code. It's also why we learnt about big Oh notation already at school. Starting with manual resource management helped to get a feeling for what's going on under the hood.14 -
Guys, please help me answer this intellectual being. The more stupid the answer, the better. Even better is if there is like a fake loooooonnnngggg step by step guide of it. NB: tafadhali == please.
21 -
// Rant
I can understand that people accidentally commit something sensitive to GitHub, I did it too once, but ...
WHY THE FUCK DO YOU MAKE YOUR MISTAKE WORSE BY MAKING IT SEARCHABLE VIA THE GLORIOUS COMMIT MESSAGE OF "REMOVING PASSWORD"
... seriously just google "git remove password" and there is a step by step guides on how to remove sensitive data from git.
Reference (320,006 free passwords):
https://github.com/search/...9 -
Two new coworkers step in. HR hasn't set up their accounts yet. We create all necessary tickets and wait. A week has now gone by. New guys are just sitting there reading documentation. Call HR
- We are currently processing the request.
- But what is taking so long?
- The request needs to be approved in 4 steps by people on higher and higher levels.
- What level is it currently on?
- Two
*Rage quit*2 -
How Google loost its data Monopoly-
Present:
Step 1- US bans Huawei
Step 2- Google Bans Huawei
Step 3- China Gov helps Huawei get back on its feet
Future:
Step 4- Huawei makes their own OS to rival Google, the OS can run Android apps as well as IoS apps and has its own language/framework for developing new apps
Step 5- China bans Google from their market
Step 6- Chinese mobile manufacturers adopt the new OS
Step 7- China's population starts using the new OS i.e. country with the world's largest population starts using the new OS
Step 8- Chinese manufacturers like Xiaomi, Vivo, Oppo and OnePlus who already own approx 40% of India's smartphone market start distributing the new OS based phones in India. Factors like cheaper devices take this market share to 50%+
Step 9- Cry, cause the new OS is now being used by approximately 30% of the world's population.
Yeah, bring your hate in the comments but come back and talk to me in August 2022...12 -
---WiFi Vision: X-Ray Vision using ambient WiFi signals now possible---
“X-Ray Vision” using WiFi signals isn’t new, though previous methods required knowledge of specific WiFi transmitter placements and connection to the network in question. These limitations made WiFi vision an unlikely security breach, until now.
Cybersecurity researchers at the University of California and University of Chicago have succeeded in detecting the presence and movement of human targets using only ambient WiFi signals and a smartphone.
The researchers designed and implemented a 2-step attack: the 1st step uses statistical data mining from standard off-the-shelf smartphone WiFi detection to “sniff” out WiFi transmitter placements. The 2nd step involves placement of a WiFi sniffer to continuously monitor WiFi transmissions.
Three proposed defenses to the WiFi vision attack are Geofencing, WiFi rate limiting, and signal obfuscation.
Geofencing, or reducing the spatial range of WiFi devices, is a great defense against the attack. For its advantages, however, geofencing is impractical and unlikely to be adopted by most, as the simplest geofencing tactic would also heavily degrade WiFi connectivity.
WiFi rate limiting is effective against the 2nd step attack, but not against the 1st step attack. This is a simple defense to implement, but because of the ubiquity of IoT devices, it is unlikely to be widely adopted as it would reduce the usability of such devices.
Signal obfuscation adds noise to WiFi signals, effectively neutralizing the attack. This is the most user-friendly of all proposed defenses, with minimal impact to user WiFi devices. The biggest drawback to this tactic is the increased bandwidth of WiFi consumption, though compared to the downsides of the other mentioned defenses, signal obfuscation remains the most likely to be widely adopted and optimized for this kind of attack.
For more info, please see journal article linked below.
https://arxiv.org/pdf/...9 -
Hacktoberfest time, and I usually try to contribute by creating some trivial issues and labelling them as such - ones that I could fix in 2 seconds, just to help those starting out get a pull request and get used to how the process works. Like, we're talking *really* trivial - remove superfluous import statements, that sort of thing. In most of these I list exactly what needs to be changed.
This guy picks, what's probably the *easiest* of these tasks going, and then comes back saying he's got some questions. Dude, seriously?! It's right there in the damn issue description.
Whatever, I decide to be nice and I say he's welcome to ask. Brace myself for answering some stupid crap, but fine, we were all new once.
THE GUY COMES BACK AND SAYS HE NEEDS A CALL. A call, seriously? What is this crap? I do you a favour by letting you create a trivial PR, and you want me to literally burn my time & jump on a call to take you through step by step what to do?! Pff, and people wonder why I'm grumpy most of the time.11 -
Omg so I've been stuck on this function I'm writing that checks if a certain array value is so many characters long and well, it just wasnt returning false when outside the conditions..
I tried taking it step by step, echoing out every line and it all made sense to me and there were no syntax errors.
Time goes by and inside the configuration file I was testing.. I was changing the value of a DIFFERENT array property than what I was using in my condition. They looked really similar.. fml xD2 -
LOL Have I Been Pwned has pwned itself, cost-wise. Here the steps:
1) Go all in on cloud shit like Azure
2) Think you're a smartass
3) Trick the cost side with even more cloud, this time Cloudflare
4) Be not quite as smart as you think
5) Enjoy your 7000 EUR bill
6) Make some tweaks and continue with step 2.
Source: https://troyhunt.com/how-i-got-pwne...
Bonus laughter: he's a "Microsoft Most Valuable Professional", though not an actual employee.22 -
Rant::aboutMyself(my_code){
Wrote 500+ lines of code without proper documentation. Got 200 little bugs. Got frustrated. Gave up on code. Started documenting it. Step by step. Resolved many silly mistake while documenting the code. Completed documentation. Run the program . Bugs reduced to 10. I'm sooo happy. I LOVE DOCUMENTATION 😍
}2 -
Might be a loose interpretation of 'vacation', but I was running a marathon using my phone for tunes, when suddenly I got a call from my boss; our application server had died and he had no idea how to restart it. So while running the race I was timing my exhales to give him the step-by-step instructions for reset-to-restart. The good news is that the miles just flew by as he read the logs, and I responded with commands. Suddenly I was at mile 22 and was actually feeling pretty good; didn't finish the race with a PR but was happy with the result and did get the server back up.2
-
Fukken School project
I spent days writing good documentation with step-by-step tutorials. I broke the project down into small, simple tasks.
Trying so hard to make everyone’s job easy.
And they still fail.
Give me a cookie2 -
a small local social network i made around 2008 as a replacement for the original which the owner closed down.
i missed the people from there, so it motivated me to make a replacement in a week, while learning html+php+mysql+js.
it worked for about 3 years and i redid it from scratch 3 times as i gradually learned more.
it was cool to be basically a host of a community i've come to like in the years before, and it was basically the only project i felt, really felt, had meaning, a point. people were grateful that i made a replacement for the original closed-down site, and i was grateful that they were using it and that i could keep talking to all of them on it.
at the height of its popularity it had about 1500 registered accounts, 150 daily logged in ones, and about 30-40 very active ones.
it was also the place where i went to implement all the cool stuff i learned and came up with.
it had a pretty cool questionnaire creator (originally just a test of how deppressed users are, but then i thought "why not let people make their own tests/questionnaires?"), which tracked people's results over time and showed them on a cool interactive flash-based chart.
also a whole forum system made from scratch, wysiwyg article editor, later seamlessly integrated admin controls for those who had privileges, like, not a separate admin ui, but the admin buttons right on the site, later even a realtime chat persistent across page reloads where you could put special links which, on click, would highlight site elements/buttons, or even complete step-by-step path to them if it was more clicks. would highlight the first step, after clicking would then highlight the second one, and so on...
it was pretty cool stuff for 2008, and afaik it basically landed me my first two full-time jobs with almost no actual job interview, basically just "we looked at the site, interesting stuff, tell us how you did x and y and z on it, okay, hired"
back then i kinda felt i have a bright future ahead of me =D1 -
Partner of ours claimed they are going to update their api. No breakage. My hopes were low and they did not disappoint.
Soon after the new version of their api went live, of course, loads of breakage. And the email contact with them is really fun.
Me: "Hello, since your update we get the issue A. Here's the complete communication."
Them: "We did not change the existing behavior. You are doing X wrong. Repeat that one call during the step and you should be fine."
Me: "Thank you, if I repeat the call, it does indeed work, albeit slower, since we are now repeating calls. Furthermore, our application was consuming your api for years and we did not change anything. So why is that step necessary now? Only after your update do our logs show errors from your API. And by the way, we now also have a issue with B. Why is that?"
Them: "Oh that's because your query the endpoint with "Fnord", try "Baz".
Me: "Yes, I do know that we query it with "Fnord" as that is what a previous endpoint of yours is responding to us. Why are we getting "Fnord"? What request do I have to make to get a "Baz" back?"
It feels like a game of wackamole. Squash one issue, ten more will pop up. I am one step away from becoming active-aggressive.3 -
Step by step here:
1. Choosing a stack
2. What to put where(folder structure)
3. Naming stuff(variables, classes etc etc)
4. Finish what I started.1 -
When you're stuck on the same error for so long, you try so many different things and by the time you get it to work, it feels like you've made so much progress. But once you take a step back you realize you really haven't done much.4
-
Agreed on an offer from company X... Told them I'd sign the contract on my first working day, still a week away.
The offer had a lower salary than my previous job, I needed to relocate, and travel costs were not covered. It was a step back for me but I really needed a new job.
After the weekend I got an invitation for another interview... All went well and the perks were better than the offer made by company X.
Next day I had the second interview and they were very excited and offered me a contract.
Contract came in on friday, signed it and called company X that I'd like to reject the position after reconsidering my options...
Boy were they pissed off 😂 -
Dear Client,
You said it was of paramount importance that this software work flawlessly. I've worked hard to make it so, even when your indecision and lack of attention to detail indicate you don't care as much as you say and have made the project late.
Yesterday when I handed you a step-by-step user acceptance test plan, you delegated it to someone not as familiar with your specific requirements. You said you don't have time for such things.
I will remind you of those words when the project launches and you find something you dislike.
Sincerely,
Me -
Business Intelligence, the most confused market technology has to offer. (Perhaps rivaled only by machine licking. Learning, whatever)
Step 1: develop a product that can replace a company's database guys. Make it cost more than the database guys.
Step 2: Show off product to managers using images of the product that the managers will love, but never have the skills to do themselves.
Step 3: Fucking obviously the managers buy it.
Step 4: Fire half the database staff.
Step 5: Managers give the BI tools to their remaining database guys ANYWAYS and instruct them to use it
Step 6: Database guys spend a month learning the new tool because management "wants to use it too".
Step 7: Database guys now use this new system for reports but have trouble using it for complex use cases, as it was designed for simple use cases. Meanwhile, management will never, ever touch the tool again.
Step 8: Hire new guys for reporting, because the remaining database guys can't complete both their normal tasks *and* the reports.
Step 9: Database guys are expensive. Go to step 1.1 -
I used to have imposter syndrome when I first started at my current job. But then I discovered that one of my coworkers was an actual imposter. He didn't lie on his resume or anything but he was basically incapable of thinking for himself. If there was no step-by-step process to follow, he'd spin his wheels for weeks before doing it in the worst possible way, refusing all offers of assistance from the rest of our team.
After he quit and the true extent of his incompetence came to light, I no longer felt like an imposter.1 -
I have an Android app suggestion:
A different alarm clock.
- wakes you up by increasing ring tone, from least to most, each step taking at least two seconds.
- you can give it a stream url (e.g. online radio or yt) and it uses that to wake you up.
- you give it an offline ringtone as well, in case the stream doesn't play.
- has repeated snooze. You hit the off button once and it goes to snooze. You hit it twice or trice and it is off. Otherwise, it rings again in 2-60 minutes. (User preference)
- is free. 😛
Shouldn't take long to make. I'd make it myself if I had the technical capabilities right now. Do link me if you make it or if you know of one already existing. (The existing ones I've found so far, I have issues with unnecessary permissions they ask mostly.)17 -
I seriously hate email problems with a passion. Like even when I step through every setting, checking things one by one. Everything seems fine, yet my clients email is getting rejected incoming and out and the only error is basically whoops it bounced! pretty much anything could've cause this.. yeah that's very helpful.7
-
So a few weeks ago I wiped my MacBook Pro to regain some space and speed, it wasn't really that slow I just had the disk partitioned into two installments of MacOS. When I erased the disk I thought the secure thing to do would be to set the format to journaled, encrypted rather than just journaled. Everything was working fine, there seemed to be this weird step of login when I restarted but whatever, except iCloud Drive. On my iMac it works fine but for whatever reason my MacBook Pro doesn't want to download custom folders (ones that aren't created by an app and don't have an app icon on folder icon) from my account despite them being clearly available in iCloud.com. So after this much time of messing with it I'm wiping my MacBook Pro again and formatting it as journaled (not encrypted). Wish me luck...undefined this must just be a bug or a security feature... probs a bug tho i still like apple products this stuff usually works for me3
-
Step 1: Become a freelancer
Step 2: Enjoy working
Step 3: Get annoyed by doing all the backoffce
Step 4: Get hired instead
Step 5: Work hard
Step 6: Boss notices your talent
Step 7: Boss founds startup with you
Step 8: Repeat Step2 until you have to repeat Step45 -
One of my main hobbies is composing music. I had been in a creative funk for almost half a year when, during my vacation, I randomly discovered this little music production program for Nintendo Switch called Korg Gadget.
So far I've created 6 finished tracks, and this latest one I took a step further by giving some extra time and care.
I'm really glad to have the creative juices flowing again, especially since work has not been great lately...
Give it a listen, if you like. The other tracks are available as well :-)
New track. Sort of Synthwave. Composed with Korg Gadget on Nintendo Switch, mixed on a pc.
https://soundcloud.com/anders-bliru...
https://cloudbounce.com/zitilites/...8 -
Today I had to give a step-by-step guide on how to open a rar file (and explain what it is) to my software engineer classmate in the software engineering class...5
-
maybe Step 2 didn't make it.
maybe it decided to leave and disappear.
or maybe, it was destroyed by an underpaid, overworked dev who holds grudges against Step 2.
Wherever you are, I'd miss the step that I didn't have to take to make the plugin works.
-
Yesterday i realised the importance of documenting everything step by step . I was told to port an driver/application that we made for linux 4.1 to a 4.9 kernel . Eventhough i did already port another similar application to the same , didnt remember what are things that i did.. Thank God ..If not for the constant pestering of my colleagues to document each step.. I would have been stuck in that island for 2 more days ..1
-
WTF IS WRONG WITH ASSEMBLY LANGUAGE?!
I was just modifying an existing program for adding a sequence of numbers from the data section and through console input. I studied the code and started modifying it one step at a time. I needed to modify it into a multiplication program. So I started by changing the ADD functions, replaced the result and buffer registers with bigger size and thought I completed it. WELL GUESS WHAT? SHIT JUST GIVES ME SEGMENTATION FAULT! NOW I HAVE TO REDO THE WHOLE THING! WHY DOESN'T IT TELL ME WHICH LINE OF THE CODE I FUCKED UP AT?! STUPID NASM COMPILER.9 -
The person who claims we should be "in control" of our stack and not use any of this pre-made, one size fits all, BaaS bullshit.
Even though none of our projects are even remotely close to needing scaling and whatnot.
Then proceeds to argue all we need is a step by step guide on how to deploy things very easily using Cloud Formation.
Spends the next two weeks trying to figure out why config files and scripts don't work.
And now that we have that "recipe", we're fully capable of deploying our own pre-made, one size fits all backend.1 -
Here's some screenshots of my c++ learning project, CursesWidgets! (Or ConsoleWidgets, it's officially just named "CW")
Just got layout managers done - pretty nice step forwards since now widgets don't need to render their children themselves; they can (and by default DO) delegate the work to a layout manager.
Here are the StackingLayoutManagers, which are the equivalent of WPF StackPanels or just the normal way HTML works. They have different orientations, however, and will soon have different alignments (Start, Middle, and End, which is the same thing as the typical Top, Middle, Bottom, Left, Center, Right, except SME can be used for either horizontal or vertical alignments)
Anyways, enough of my rambling. Here are some screenshots. If you made it this far you earned the knowledge that I plan to make a beastly terminal devRant client using this technology.
3 -
So I let myself go by all of this talk about giving more freedom and autonomy to your team. "Don't micro-manage them", they said. "Trust them," they said. And that's the way I wish to be treated. That's how I personally work best.
Alas, this only works only when they're truly good at what they're doing. Sometimes I feel like we'd go faster if I did everything myself. These baby devs must be taken by the hand every damn step of the way.4 -
👨🏽💻 Switching between multiple Git accounts: work, personal, freelance?
Ever pushed a commit with Company A's email to Company B's repo? 😩🥶
Been there. Done that. Regretted it immediately.
I just dropped a step-by-step guide on how to set up Git so it automatically picks the right name, email, and SSH key based on your project folder.
No more manual config switching. 💡
✅ No more identity mix-ups
✅ No more commit shame
✅ Just clean, context-aware Git workflows 🙌
🔧 What’s inside:
- Multiple SSH key setup
- Smart .gitconfig using includeIf
- Folder structure that keeps you sane
- Bonus tips for HTTPS + personal token users
If you’ve ever yelled at Git (or yourself), this one’s for you.
👏 Drop a clap if it helps and follow for more dev-friendly tips!
👇 Read it here:
https://rhymezxcode.medium.com/how-... -
If only they allow us to write unit test at work, its not that It is forbidden but we are not given time to do so :\
Done my test on my side project and now I can happily move to the next step.
Though I'd be happy if someone answers this:
1. When I have to execute functions by order, do I write all their code in one single function and divide them into regions (speaking of C# #reagion)
OR
2. I keep them split and implement the order attribute for XUnit?
My test case is basically just to make sure CRUD methods inside my repositories are working as expected, noting complex
5 -
1. Go to Github for you
2. Download the 'codes'
3. Send them as a pdf to you when the code is there in the repo.
4. Write you a step by step tutorial when there's a clear README.
YOU LAZY MOTHERFUKCER!
2 -
Best way to avoid procrastination : We tend to avoid commitments or to do large tasks as even visualizing them seems tiring and the longer it takes, the vulnerable we are to distractions
So I use this simple trick
I break my task into numerous sub tasks. For example if I need to finish a feature before day end, I would first list down all the cases I can think of in order and write them down using actual pen and paper.
I then start implementing them step by step.
I mark them checked once done.
It gives me a sense of achievement as I see those checks besides the sub tasks and I can also take breaks between steps.
So all it takes is just first five minutes of planning.
I had to do the above procedure, for this post as well.
Hope it helps fellow developers
:) -
Well. Fuck.
A sunny monday morning. The sun almost glimpsing over the horizon. I'm on my way to the office, taking a breath of fresh cool air. It is infused by the scent of sweet pastries.
I reach the office, but something is different. Why is the door slightly opened? Carefully I grab the door handle. I do my first step past the doorframe and wooosch. Thick and sticky stuff is running done my spine, finding it's way through my clothes. I feel so un-fucking-believably dirty in this very moment.
This should give you an impression how I felt when I had to change a DNS record in this completely broken setup for just a matter of seconds until the letsencrypt client renewed the certificate.
I'm feeling seriously dirty.1 -
I get you're a little over twice my fucking age but you still shouldn't need a step by fucking step instruction book to download and open a damn document. Especially since you do it every damn day in office. Just cause you're remote on a laptop doesn't change how shit works.
Hell I took the damn time to make your laptop as close yp your desktop as I could. And asked you to test it before you left. You didn't. At this point its just incompetent and not my problem.
Fucking hell. Half an hour on phone to open a damn .docx in word. At 48 you should be able to do this. Fuckinh hell3 -
That feeling you get when you write code so complicated, that a few weeks later, even with tutorial-level documentation, you don't know whats going on, so you just rewrite from scratch.
Yeah that just happened to me.
No time for deep work to re-grok what the fuck I was working toward, so I just rewrote the core of it to relearn the entire process.
Had comments, documentation, step-by-steps. Still the ability to understand and reason about it noped-the-fuck-out of the building apparently.
Might have had something to do with zero sleep three days in a row and too much red bull.
Sleep-deprived me operates on a whole different plane of existence.
12 -
Sending automatic spinned content email to a client asking him for payement... Starting at 60mn and decreasing interval by 1 minute each step ! He pays when interval become 7 minutes and phone me to say: "Hi ! How are you ?" ... mmmm' well well well... Calculate the number of emails he receive !6
-
As the saying goes "beggars can't be choosers" and I need to get a job.
I got approached by a recruiter in LinkedIn who had attached a PDF brochure.
It seems OKish, but the only part that worries me is "step 3" of recruitment process:
"Invitation to France and have a face-to-face technical interview and meet the team."
Will I be out of bounds if I ask the technical interview (if I ever make it that far) take place into Skype?
There are some savings, but going to France (somewhere between Cannes and Nice in summer period!!!) just for an interview that I might fail is a big gambit for me.8 -
!rant
In relation to https://devrant.com/rants/1643249/...
The tree has started!
The lovely pycairo package was super easy to pick up, and I made a rather shitty looking fractal tree with it!
Next step is to figure out a color scheme I like, and to make the tree look more natural/better.
It's happening guys
3 -
I am torn apart for several months now. My boss and coworkers are amazing people, projects are quite fun and interesting, workplace is close to home and they pay for my exams (step by step reaching for MCSD certification), but...
The salary if fcking low (you could probably earn same ammount while working as a waitress of normal restaurant). Not only for me of course, but still :( Now I am thinking of running to some bank and doing boring programming job coding same tasks again and again, but getting payed very well4 -
Here’s my step-by-step guide for the idiot:
1) take <cutting-egde tech> (Tech)
2) read documentation for Tech
3) figure out what you want to do with Tech
4) if you are being ambitious, simplify the idea appropriately
5) Go do the thing with the Tech
6 When you fail at something, RTFM
7) Rinse and repeat2 -
For the love of sex, can someone help me out??!!
There is a VS Code extension that helps in creating a step-by-step tutorial of a codebase. Can someone please tell me its name?!
Google is a bitch today.3 -
`if (sequenceNum - 1 != -1)`
instead of
`if (sequenceNum != 0 )`
lol
and yes what it does is to check if we are at step 0 of sequential thing. I was confused for 5 minutes. just to accept that he doesn't mean something else by it.3 -
Oh god... technical decisions should be taken by people who actually know what they are doing and even so still counter-checked and not followed blindly.
I am currently working in a company that wasted millions by trying to implement micro-services where they don't belong and didn't step back when they realize it was a mistake
(protip: micro-services usually don't belong in most places).
Now we're dealing with the sunken costs fallacy and I am seriously believing that the company is going bust in a few months. Let's wait and see. -
Teacher asks me to join him for a web app development.
First stages, I have to dig deep into a framework I don't know (He doesn't know it too, and I know that learning is the only way to step through)
Month goes by, began developing some mock-ups, he says he didn't like it, sends me a website made in fucking Wix. Seriously?
Fast forward another month, tonight I'm coding some stuff, he stills doesn't know how to fucking use Yii. fml4 -
Wasted a day as Shitlock Holmes with the build chain.
It would not reproduce the firmware hexfile that had been checked in. Reverse engineering that along with the mapfile to find out the cause, it was a const string that was guarded by an ifdef from another file that was auto-generated as prebuild step via a script that fetched some version control info.
Or, it would have been if the installation instructions had been correct and someone had described that no spaces in the absolute path name of the project are allowed. Otherwise, that shit just failed silently.
I then had to reverse engineer the intended workflow from the commit history in the version control to figure out that the last dev obviously hadn't quite understood the project specific workflow and how the version control interacts with these build scripts.
At least, I finally did get a matching hexfile.1 -
If software developers / engineers and various other technical people stop serving banks and governments and become free minded we’re be having our own clothes and food served to us whenever we want and where we want by now.
Fucking capitalism and stupid dickheads.
I think being able to be served by robots in your own house to provide you everything you need is first step for long spaceship trips that can take over galaxies.
Living on this planet is boring as fuck.2 -
Just gonna leave this here because I am too lazy to write a proper article for my website:
If anyone is trying to create a Vue.js website with Node.js backend do NOT use express-vue, it is unnecessarily complicated and broken. Instead use this method I found.
You will need:
- IntelliJ IDEA / WebStorm / other IDE supporting multiple modules per project and tasks
- Nodejs and npm
- vue-cli
Step by step:
1. Create new empty project
2. Add your frontend module using vue-cli generator
3. Add your backend module using Express generator
4. Run npm build in your frontend module once
5. Move or remove public folder in your backend module
6. Create a symlink from your backend module root called public pointing to dist folder in your frontend module root
7. Make sure to add "Run npm build" from frontend module to your "bin/www" task (default task for Express module)
8. Enjoy developing your REST API in Node/Express and your frontend in Vue.js with single-file components and it being served by the same server that is providing the backend.
(Since they are separate modules and you are not mixing webpack and Node/Express you can add ts-loader, stylus-loader, pug-loader or any other loaders without screwing anything up)
For deployment you just need to copy the contents of dist into public on the server. (and not upload the symlink)6 -
I've always thought that Wordpress is HOT CARBAGE for custom solutions. The opinion is influenced by devRant actually. And I'm really starting to see that after few of months working with it.
For context, it's a accommodation booking site with sub-theme that uses plugins such as Woocommerce Bookings. I didn't build it but I'm now developing and maintaining it.
The emails... I've tried to make them function properly. But no. Because we skip the fucking verification step to allow instant booking it just won't send them. I made yet another workaround and casted some spells. NOW IT SENDS THE EMAIL TWICE...
I'm done. It's good enough.2 -
20 years ago, in China, they sold a so-called learning-machine which is a modified version of super Nintendo with a full sized keyboard, you could use it to learn how to type, and play Nintendo games. somehow it supports basic, and the manual book have printed a full code to create a stupid game with you could move a super Mario character with arrows, me and my step brother spend a whole day typed the 40+pages of code and enjoyed the game for 5 mins. BTW you can not save your program. after that I think it is so cool to create vedio games by programming.
-
It has now become trend for all new startups in my country to follow these three steps.
Step 1 - Attract developers by showing them high CTC.
Step 2 - Make them work mercilessly on intern basis giving them low pay.
Step 3 - Fire them after intern period without giving some valid reasons.
I am fed up now as I have wasted my six months without getting much pay and now I am jobless 😨5 -
Ok, so I have been lurking around here for a while now. Not at all knowing what to rant about. I like my work, I don't have to deal too much with annoying (or almost any at all) customers and all in all I feel fine.
However, I feel like I want to, in some way step into this awesome community in other ways than just comments and ++.
So this post will be about a book. It's almost our Bible. Well it's probably the closest thing to a proper part of the trilogy we will get.
And for not being written by Douglas Adams (the almighty) himself; this book is surprisingly good! If you haven't, and get your hands on it, do read it!
3 -
I work remotely for a team that works together in an office, and this morning on the conference call a team member said
"one thing i think we need to do with this is stay on task, because while these things that have been added are cool we don't need to be doing anything not outlined in the MVC requirements"
Okay first of all -- this is a completely foreign technology to this team. It's not like I diddled around adding fancy animations and no function. The problem working in a new technology with an old mindset is assuming that it's going to move linearly from step 1 to step 2. And that drives me fucking insane.
- Progress in paid contracted work is done by staying on task.
- Progress in research isn't done linearly. You have to try shit -- and figure out what doesn't work.
I feel bad because I'll chime in and shoot down ideas with a fucking guided missile because I know the answer and I've done the fucking research -- I'm not a dick about it, but replying with a simple "no that's not possible, because of this or that", the call becomes silent for 30 seconds because I've shattered their understanding of the technology because nobody has taken the time to understand anything about how this thing works!!
So until they either listen to me, ask me, or learn the smallest amount to get on my fucking level, I'll keep progressing -- because whether the old world idealists like it or not -- that's my job.
Progress.
</ rant>14 -
TL;DR: I'm reading papers and doing computer science like I could never afford to in college.
I am beginning my scientific arc.
Over the past few days, I have been working on implementing my own Evolutionary Algorithms
I've been doing a combination of "experimentation" and (probably less than I should,) actual research.
My Mark 1 was just a proof of concept that set up the data structures correctly, Mark 2 generalized the data structures and actually implemented some natural selection, but this was really just made up by me so I'm only getting mediocre results.
Next step: I have two papers lined up to read on EAs. Mark 3 might not implement them exactly, but I hope to beat the performance of Mark 2.
I'm encouraged by the fact that these research papers have TONS of different things they tried, and I'm really only on my first prototype (since Mark 1 didn't have any selection implementation, only randomness)
Follow along if interested:
https://github.com/AlgoRythm-Dylan/...13 -
Whenever I see a website ask
1. Accept all cookies
2. Customize selection
I can see what they're really saying...
1. Accept! and I'll fuck off out of your way and let you read.
2. So you wanna read the content heh? Step into our office. Ok then, lets go through them one-by-one and you can explain to me why you think you don't need that cookie. and then MAYBE we'll fuck off our of your face so you can read the scant few lines of text standing between you and finishing your homework/job/whatever.16 -
Today I asked a stupid question on stackoverflow
Got a reply which I already knew
I just hadn’t implemented it as it had to be put in a complex part of code step by step.
I took the time and implemented the solution step by step and it worked.
Why have I become like this.....old and stupid....2 -
I am trying to apply for a student credit card. Should be relatively simple, but guess what: it isn't. First there was a question on your income. I didn't know if you had to include your student loan by issued by the goverment and after calling the bank, the answer seemed to be no. And the form didn't succeed because your income should be higher than 1 euro. So I've contacted the bank again and it seems that you could just fill in your student loan as income. Okay, so that should fix the problem. So I came very close to completing the form, gave the website me an error in the last step!1
-
Question: tl;dr: looking for an open source bug tracking tool, or one that's affordable for small freelancers.
I'm working as freelancer with a client on a project and currently all the bugreporting/feature request/information/discussions/and other stuff happen by Telegram (not my first choice but hey, you know clients).
It happend twice, that I forgot about the specs of a feature we discussed briefly, because there was to much going on and I wasn't able to find it. So the next logical step would be to get a bugtracker.
So far my favorite would be http://www.redmine.org/
Does any one of you have good or bad expirience with it? Would you recommend something else, if so what and why? Other stuff I should consider?6 -
Fuck you Tony Abbott and fuck your "Liberal" party of profit-mongers!!!
First they crippled the NBN. Then they blew out its budget. Now they are leveraging its monopolistic power.
Step 1: Build a single national broadband network 👷♂️
Step 2: Legislate everyone switches to it and phase out every other infrastructure (ADSL) i.e. establish monopoly by design 👑
Step 3: Profit 💸💸💸
Source: https://amp.9news.com.au/article/...19 -
Step 1: Make own cat feeder: https://youtube.com/watch/...
Step 2: Integrate it with http://open-notify.org/Open-Notify-... to dispense food every time International Space Station is above my location.
Step 3: Wait some time, and check if I will be able to tell ISS location by looking at my cat2 -
We've been using private GitHub repos as a distribution method for our personal npm packages at work for years.
I finally got sick of it and did the work to publish them to artifactory yesterday. Today, I worked out the remaining kinks, fixed the CI builds, and wrote a wiki page explaining the change with step by step migration instructions and sent it around to the rest of the devs. And it's working great!
I feel simultaneously like a hero for finally getting this fixed and an idiot for putting up with it for so long.
Also thankful for my devops friend who helped a bunch.1 -
Working on something...
-Hun?! Why the hell doesn't it work?
Attempt a few fixes...
-Still doesn't work? Damn what am i doing wrong?
Attempt other changes...
-Why is it still not working!?
Debug step by step, validate my values are fine...
-Why does my output not correspond to my values!?! What the hell is this black magic!?
Rebuild the same solution for the 5th time...
-...Why does it work now... -
Google documentation sucks!
Lack of practical examples. They show us very simple example like clicking on button and then straight away redirect to API docs.
Wait, let me at least understand how things fit in together.
Me: Hey google where is step by step guide, at least for setup?
Google: We don't do that here!5 -
So after two and a half months of waiting 30-40 minutes for every build on the build server, and trying my best to start refactoring the hugeness of our main solution with limited success...
I discover that 2/3 of the build time is caused by the Get Source step deleting and getting EVERY BRANCH IN THE MAIN REPO!!!
This was taking 15-25 minutes. Every. Build.
I changed the build definition to map and cloak the repo correctly, so now the Get Source step takes less than a minute, and the whole build completes in 12-14 minutes...
Yowza! I guess that's a pretty good win to start my two week's vacation on ;-) -
New day, new rant, same shit.
So basically, if you are following my rants you already know I'm working with a crappy framework forgotten by God and you should even be aware my manager is not an IT expert.
So anyway, we have this requirement to implement: a step-by-step process.
They asked us to make the UI design.
My big ass manager couldn't hold his expertise so basically he told us he would make the UI design.
He is a self-entitled UX designer, just saying.
I still don't know who he is, why he is there and why he is doing all this damage. (I only know he is a friend's ceo )
Today I got his UI mockup. It's a fucking nightmare. xD I mean, you would shoot yourself in the foot. If I was the customer I'd just leave the page. You may ask yourself: "How bad a UX process can be designed?" Well, a lot.
The interaction on the page is a clusterfuck.
I'd give you an example but it's so complex to describe I'm just leaving this rant as it this.
I'm implementing this... I'd like to say sorry to all our customers, it's not the devs fault.4 -
Got some Freelance work(PHP) via my friend so i said ok lets see. Those were some college students and wanted their project to be deployed that their seniors built and none of them knew how to fix the issues so here i step in.
Nightmare of a design, no signs of framework, html/css looks like it was designed by a 10th grader, no prepared queries, every file uses db config seperately so a minor change would require me to edit those 50+ php files... overall a broken mess. FML.5 -
Oh Lord give me the strength and the brainpower to step a way from freelancing or at least overcome the humongous pile of shite tied to the aforementioned barely lucrative activity.
AMEN !!
Recently got a client. We had an agreement on requirements, deadlines and on pricing. It's a job that can be done in a week if all the resources are at hand.
He reaches back a couple of days later and says :
Him: Listen I am on an intermediate...
Me: Mmhmm.
Him: I had a talk with the actual owner and he can only pay you in June.
Me: I see, but that I can't do. That means if the website is live by the 15th I'll have to wait for 2 weeks at least before getting paid.
You'll have to come up with something that makes more sense.
fml.6 -
I'm a little afraid of what I'm doing. I just asked my boss to change my current role, almost on site, with a new one requested by the global function of my company. If they accept I will be traveling >80% of the time. I know I will miss my little daughters but I also know that this is maybe the last chance for a step forward in my career. I'm sharing my feelings only with my brother and devrant people.10
-
Non-IT
Can't afford laptop
Want to make an app from scratch by coding , compiling from my Android mobile.
Is it possible??
What would you suggest me?
Which language would be better to start with.
step by step procedure would be helpful.
Do's and don't!!!
Or this attempt look silly/lame?!22 -
Been a ReactJS user for a year, today thanks to: @
chrisrhymes, @Devnergy, & @Hammster I decided to go into Vue, so much I like what I'm seeing.
For those that used both, what difference have you found in terms of performance and output size?
Oh, and using their nice resource: https://laracasts.com/series/...5 -
People need to throw away their manufactured outrage about the gimp fork, glimpse. Aside from the fact that there are people who are genuinely offended by the term, it also just makes FOSS look unprofessional and foolish, that such a capable piece of software is named so crudely. If we want to be taken seriously, then something easy like changing crude and offensive names is a no-brainer.
Alt-right, 4chan, edgy defenders of the right to offend need to step aside, because they're in the way of progress.9 -
A day in the life of @C0D4
Yay it's Tuesday.....
So morning goes something like coffee, yea no coffee no @C0D4, get to the office, get busy with normal morning routine - run the almost automated scripts I have to run - delete the 100+ emails I don't actually need from last night, read the 2 I do care about - yea 2 freakin emails out of 117 🤦♂️
But what ever that's what outlook rules are for... except I actually have to glimpse over them all just in case something of mine broke.
Go get another coffee,
Start working through the days tickets - ok cool nothing major to worry about, let's get back to writing tests from yesterday.
Well fuck that was a bad decision, no matter what I do this little fucker won't pass, yet doing this process step by step, detail for detail, it works - no issues, but automate this fucker and it screams its head off.
So fine, I give up and go to lunch,
Come back... spend next 3 hours on this 1 problem... 1 FREAKING problem 🤦♂️🥴🤦♂️🥴🤦♂️
This thing has beaten me, and for no apparent reason - it just doesn't like running under a test scenario.
Would have given up hours ago, except its a vital piece of code I'm trying to cover 😑 of course it is.
Well somewhere in there I managed to do a deployment for another project and change a few things in there.
This week is starting to look like hell,
Yay hump day tomorrow!!!!!
That's something, the week is coming to an end.... right? Please.... right!!!5 -
Windows - what the fuck! I cannot understand why people WANT to use this - its' buggy, unstable and the user-experience leaves me with the same feeling as when i step on a dog turd barefoot.
I know Linux has been a hard road for many, even a few years back I would do an update and my day would be lost to fixing it. But it's literally made by people in their spare time! Ultra-corp Microsoft fuck it up all the time, with thousands of full time employees!
Gah. Come back steve jobs - I need a hug. (please wear your turtleneck)16 -
Created a website for a client at a pretty low quotation. Set up 2 email accounts and provided step by step instruction on how to do it. Client now expect me to do it for all 13 of his employee with migration. For free. Told him i will need to charge extra for this, he claims that i didnt mention right at the start. Is this my fault? Should i do it? Please share.7
-
Start with a TI Basic program on ti 84 plus in schhol. The program was written by my math teacher an calculate within 10 step the square root from an number.
Then i start code my on programs and play a costum os on my ti. Years later start with java in computer science at school. Coding in java editor. -
oh shitty shit of all shits in the world
I just run out of time on a crossover test of Android Architect because of a stupid call by a stupid old friend.
The test were a bit difficult but I did something really good, and I was on the step 4/5. -
A customer asks for a change request or a bug fix and it results in creating a ticket for that.
It's the process and how it works in most places but after you finish with the task and fix the same customer who provided you with the requirements will request that you share the steps on how to test the fix or the feature.
I'm not speaking about the data preparation or required configuration. I mean a step-by-step instruction on how the tester/QA will test it.
It's driving me mad!! So a way to counterplay this stupid requests, I provide the happy path and what to expect. And in case, they stumbled on a bug later in production, I can easily say "It was approved by your testing team and that's a new requirement ;)"2 -
Why the fuck are there so many utterly useless programming blogs? I have to implement DES in C++ for our college project. After coding most of it step by step, I decided to swallow my pride and check for an implementation online to save time because I was confused in the XOR part. Now most programming blogs had the same code copy pasted. To top that, NAME YOUR FUCKING VARIABLES PROPERLY YOU MORONS! I decided I'm better off resolving my confusions the hard way.3
-
Imagine both having the build step AND not having a strong and reliable type system. What have we got ourselves into? Truly an asylum run by its inmates.8
-
well I was going to go with the Baller peak but it seems more than a few people beat me to it.
for me I like to step away for a quick game of pool, it allows me to temporarily disconnect from the issue by physically doing something else whilst I play and talk it over. sometimes by myself and other times with a colleague but it usually does the trick. -
Inspired by my professor’s rant about people don’t know how to google stuffs, I made a scriptable script to solve all those issues. It’s a super smart script that shows detailed step by step solution of how to tackle down a problem
For those who doesn’t know, scriptable is a free app for Apple basically writing scripts that can be used, in JavaScript.
Here is the repo:
https://github.com/txstc55/...
Please try it out, you will love it, I promise
Disclaimer: I am not responsible for the ending of any relationship after using this script
4 -
Jenkins' triggerManualBuild randomly but if so then consistently produces 500 errors for certain newly created jobs. I haven't really found a pattern, yet I was bit by it in the past already. I used to "solve" it by deleting the offending job and re-creating it.
Now, I have this annoying issue again, and no matter how often I re-create that shitty one-liner job in the pipeline, it won't trigger. (The job itself is fine. It's the actual trigger that is broken.)
It's not like it's important or anything, as this is basically only the "push to production" step.
FML. And fuck me for stating: "Creating a delivery pipeline should be straightforward. I therefore consider 1 storypoint enough."4 -
Anyone know of any good reference material that teaches you how to implement and train your own Yolo object localization neural network? (Preferably for tensorflow) I'm not looking for pretrained models that you just downloaded and run, rather a tutorial that walks you step by step through the implementation of the network, the reasoning behind the architecture, and examples of the training data used for the training as well as the process of training?
I know it's a lot to ask but it's really frustrating when ever example is just "clone this repo, hit run and use the pretrained models" sure it might get you up and running quickly but it doesn't really teach you anything...
P.s. - seems like every educational post goes from super simple to super complex without any middle ground and the super complex stuff doesn't tell you why its used the way way it is.5 -
Customer: You don't seem very comfortable with this; maybe you could pass it on to another engineer..?
Situation:
I'm a System Management team engineer. Customer is asking about licensing (which is a different team) and has that very rude habit of asking a question, doing a small pause in which I start answering, and then speaking again and cutting me off; thus causing me to seem very splutter-y. Since I couldn't give a definitive answer to his licensing question he doubts everything and thinks I can't do crap. And he's the one who wants me to sit on an upgrade with him because he's too afraid to follow documentation.
His words to me: "Have you ever done this upgrade before; I mean are you familiar with it?"
Me: "Nope since it's not policy to sit on upgrades as we are a break-fix center but I've directed other customers to do it through the documentation I've given you and they got on fine."
Seriously doubt the capacity of some of these guys to do an upgrade where there's step-by-step videos and very legit documentation (never mind this upgrade uses the tool which has the best record for not breaking)4 -
Why are hooks so awful?
What justifies having everyone using React relearn how to do things when hooks do not bring any new features to React?
Why does getting setInterval to work with hooks require a ~3000 word blog post by a maintainer which constantly assures you this IS a step forward?
Is scrolling up and down a class component really so hard that this clusterfuck is worth it?
>:(6 -
I've posted about this a little in the past but.. my situation is that I got hired by a company as a developer, it turns out it was a lead dev role and they some how believe that I'm a one man army that's gonna finish a really huge web application started by another dev that left the company (apparently out of frustration from what I'm gathering in code comments and other employees)
All of this needs to be done in four months. I have never written a web application from the ground up and have always been subordinant to more competent developers. The team I with speaks mostly French and I can't help but notice the ever increasing social, communication, and cultural divides, being ostracized by people that I need support from because they don't speak great English has been frustrating to say the least. People have taken a step back in other areas which has me concerned they might be wanting to axe me cause I'm not making enough progress. Helppppppp1 -
Bruh, I tried so many times to explain a problem that something I could have done in 2 days stretched over a month.
The point was to give them a chance to learn and get familiar with the programming language we use. This task was supposed to have no have no deadline, but it's been too long, so now there's a deadline and the work so far was so unsatisfactory, that I'm rewriting it myself, despite having 3 upcoming deadlines on top the fact that our best engineer will not be there for the next week, just because someone doesn't have the ability to think themselves, even though receiving higher education, even though I always lend them an ear and personally guide them, going as far as giving them a step by step guide, just to be greeted with a something wrong after days of no asking for help, followed by days where I need to explain <20 lines of code for literal hours in hopes they learn how to think for themselves.
Also, I don't know when to finish a sentence1 -
1) git init
2) organize the structure of the project and check what features you need
3) google the name of the features and search a module that solves it
4) follow the module's tutorial step by step
5) compile the code
6) notice it doesn't work
7) StackOverflow, github, Quora, emails with insults to developers, parcel posts with bombs, try suicide
8) ascertain you could have spent all that time in funnier or more productive tasks
9) right click on project -> delete
10) forget the previous experience
11) goto 1 -
Programming is like getting a crush.
When you couldn't turn her on, you never figure out why.
Even if you did it, you still cannot believe why it could succeed all in a sudden.
The first time you did a unit test
is when you asked if she is okay
for a date; step by step,
In order not to break.
First, ask if she is free; Then, if she really need to eat,
she said OK there.
But, finally she didn't turn up
Integration test failed.
She was such a bitch. -
In a class right now. The rants are more interesting than what the professor is teaching!
How our professors teach:
Step 1: Open up a PDF of the subject book.
Step 2: Read everything line-by-line.
Step 3: "Refer the internet".
Yeah, because I don't have the book to read the shit you're teaching.1 -
Client wants me to document the updated patch in the system... In detail. I just want to upgrade their server memory but noooooo. They want me to detail it all in step-by-step, including change impact, description task, expected time duration, back-out plan.
The first time I had to do this, it was cute. But now it's FUCKING ANNOYING ON HOW DETAIL THEY WANT ME TO PUT IN!!!
Client: "OK, so you wanna upgrade the server memory. What do you need to bring into the data centre?"
Me: "Just my laptop. I'm just configuring your underutilised server memory and upgrade it."
Client: "Good. Put that in the document, including your laptop serial #, make and model."
Me: *Screaming internally* -
>Working on code
>Shit works as intended first try, nice
>Goes to play strange bootleg Gameboy Color ROM sent by a friend
>ROM immediately fucking dies
wtf.svg
>Pop emulator's debugger
we're executing from VRAM, stack's firmly embedded in ROM
>why
>Add execution breakpoint to entrypoint of game, restart emulated system (because i'm actually using the legit bios i hacked so it allows null/corrupted games to run)
>Step through everything, everything goes well until all of a sudden we call a function and shit hits the goddamn fan
well we have the culprit
>step through subroutine
if <unused_byte_in_HRAM> != 0 then stackPointer+=32;tryAgain();else return
>***y***
>Realize this is using a bootleg Memory Bank Controller with hard-backed encryption so none of the bytes executed or read as data are the right byte
>Find emulator that'll handle the jank MBC
>read code to try and figure out how it works
if checksumExtendedLogoBlob == some_number then set MBC_Bootleg1 else if checksumExtendedLogoBlob == some_other_number then set MBC_Bootleg2 else if...
>of course
>Spend 10 minutes finding the right bootleg MBC
>code shows 8 possible tables for real bit order based on some value in the cart header
>look for code that gets this value
>not in the header
>not in ANY header in this 1000+ file emulator
>not in any related cpp files???
>get desperate
>email author
>"Delivery failed: email doesn't exist"
fuck me i guess2 -
A remarkably stupid but efficient technique I invented today to measure the latency of an audio feedback channel involving multiple hardware elements that is difficult to synchronize by itself:
1. Knock. Observe the echo in the feedback.
2.Try to knock in such a way that the physical sound more-or-less lines up with the feedback. The human brain is really good at this on average.
3. Once you often only hear one knock (as perfect synchronization as your ear can tell), record several minutes of audio
4. Stop knocking, count the additional knocks in the echo
5. Multiply the average delay between knocks on the recording by the number of additional knocks from step 44 -
Starts search and replace.
Trys to replace a type in the whole Project.
Syntax Check: lol no, apparently everything is broken now, good job
(literally my whole project was marked red)
Reverts changes
(project still marked red)
Syntax Check: lol what? Your code already looked like shit before, won't let you compile this.
It was a bug which breaks the syntax check after big replace requests. Had to start a new project and copy my code step for step, so it didn't break again. However I've forgotten to replace the type before I copy...
Another story regarding this shit:
Renames Variable
IDE: oh, let me help you by replacing all old var names with the new one
Agrees
IDE: oh shoot, didn't know it could break things
Wants to revert
IDE: did you think I would go through this mess again?! Do it yourself!3 -
Can i just get a simple consistent react tutorial that goes step by step even when consuming an API...
IS THAT SO HARD TO ASK FOR? -
A week late but I was just thinking about this:
How to slow down, read instructions/specs, ask instead of assume, and step away when my brain is going crazy.
I think the technical stuff I’m learning I could learn by myself, but needing to slow down and pay attention is a problem I’ve had my whole life, and I’m truly only now addressing it with help from my teachers, cause I’d fail every class if I didn’t!!! -
(heading)How a programming language is created? Because I want to make my own.(heading)
I am learning C and next I will learn C++, SQL,DS&A, Assembley, Lex&Yacc,Operating Systems, Computer Arcticture, Computer Networks because I think it's enough for my goal. The only reason I am learning this, to make my own C++ clone with my own knowledge. But I really don't know how can I create my own programming language like C++ from scratch. Like what are the first steps to began with. As I know that C, first step is Preprocessor then Compiler then Assembler then (Loader/Linker).
Anyone please give me a step by step guide like learn this language first then this then this. So I can finally reach that amount of knowledge which I can implement to create my own programming language like C++.6 -
Caused an outage on production because of a bug in the make file that hasn't been fixed for years. It hasn't been fixed because everyone knows to side step it. Except for me. Unit now. So the bug shall continue to live until the next newbie gets smacked in the face by it.
Kinda feels like an initiation. -
Got a new job and I'm moving from academia to industry. Decided to step up my web dev game by using Netlify and GatsbyJS to build a static site blog.
Not a difficult task but it forces me to look at more current technologies. -
HOW I CAUGHT MY CHEATING PARTNER WITH THE HELP OF SOLACE CYBER WORKSTATIONS
Solace Cyber Workstations is a tool designed to help individuals find important information about their partner's online activities without causing any disruption or breach of privacy. This software works by gathering data that is publicly available, allowing users to understand more about their partner's digital presence. It can include social media profiles, public posts, and other online interactions, making it a comprehensive solution for those seeking clarity in their relationships. Using Solace Cyber Workstations is simple and user-friendly. The interface guides users step-by-step through the process of retrieving information. There are no complicated setups or technical skills needed. Once the user inputs the relevant details, the tool quickly navigates the internet to compile the necessary data, ensuring a seamless and efficient process. This ease of use supports individuals in their quest for knowledge about their partner's online life. One of the key features of Solace Cyber Workstations is its commitment to non-intrusiveness. The tool respects privacy and ensures that all information collected is taken from public sources. This means that users can learn more about their partner without violating their privacy or crossing any ethical boundaries. Users can feel comfortable knowing they are not engaging in any harmful or invasive practices while seeking information. Moreover, Solace Cyber Workstations are particularly useful for individuals looking to enhance trust and communication in their relationships. By using this tool, users can clarify any doubts they may have about their partner's online presence. Understanding their partner’s online interactions can lead to more open discussions and strengthen the bond between both individuals, ultimately fostering a healthier environment for the relationship. In conclusion, Solace Cyber Workstations provides a reliable and respectful way to learn about a partner's online life. Its user-friendly interface and non-intrusive methods make it an ideal choice for those who want to ensure transparency while maintaining ethical standards. By utilizing this tool, users can promote understanding and trust in their relationships, which is essential for long-term success. Send a W h a t s A pp D M via: +1 2 4 0 7 4 3 7 6 8 9
Thanks.9 -
There are billionaires/millionaires who get asked almost the same question -> "What would you advise for a beginner?" and they usually say some BS answer like -> "Wake up early. Read books. Workout" etc. And they get clowned on for giving out "generic" advices.
But I think, they do it on purpose. Like, think about it. If I make a billion dollars tomorrow, (somehow), why would I lay out step by step to you, on how I did it? Why would I increase competition for myself by giving you "real" advice?
So they will never reveal what they did to get where they are, whether it is joining an elite cult, selling their soul to the devil or just keeping the business active. We will only get generic advices because it's an easy cop-out.3 -
Hello everyone!I need to see some opinion you guys might have.
I'm a self-taught everything about Computer, I've been trying to learn to develop software and games for a while now, was able to gather some information in a bunch of directions, but never was able be able to ACTUALLY develop anything by myself without the help of a step by step guide. Which stop me from program things and not copy pasta. I know that i seem to like how C works, since it have less features that confuse me (IMO of course)
So my question is: What kind of small projects would you recommend me to do other than calculators to help me figure out how we actually program something?
PS: I know python, C, a little bit of C++ and C#.11 -
Finally accepted as telematics lab. assistant
Had to go to 30 years old initiation tradition by drinking 'The Drink' before getting lab. full access
Full Recipe: Mineral water, instant coffee, vanilla milk, cola, banana, pineapple, apple, melons, cup ramen, peanuts, snickers, m&m, potato chips, nata de coco.
Step:
1. Shove it all to blender
2. Blend
3. Bon Appetit3 -
TGIF... And once again solved another issue brought up by another dev by just reading the javadocs on the problematic Spring annotation
How senior do you need to be to finally learn the first step to solving most problems is to RTFM....1 -
Spent 4 fucking weeks trying to implement this motherfucking feature and in the end after 15 failed implementations it turns out that my first implementation was good. Turns out this other devs fucking feature had a bug (he forgot to add two lines to clear current state and to update current state again). Motherfucker.
Took me over 100 hours to debug that piece of shiet spaghetti codebase and I had to go through grief stages few times to the point where I started questioning my own damn ability
Sometimes it sucks not being able to go step by steap and think in a linear way. I guess if I followed the breadcrumbs I would have solved it sooner. But poking around things and trying out random solutions was like going through a maze blindfolded until I got it right but I guess thats how my brain works.1 -
!rant
is pre-debugging a good thing?
I have a habit of implementing a project(for e.g. a mobile app) like this: See the project, break the tasks to be done into small parts(Like UI layouts- setting, listeners to implement , graphics involved, background threads required, databases necessary, etc.)and then code each of them step by step , while simultaneously testing their working (For all possible test cases I could think of ) side - by side. this results in my project getting developed in far more time than other people, but I always have something good and working all times to show to my bosses.But I really feel stupid when I spend 2 hours handling the animations and ui while I have yet to look into databases and other more important stuff
I guess that's a habit from my good old python days(its IDLE was a playstation for me) but I wish to know better approaches,if any?4 -
Hey guys, I want to switch from Windows dev to Linux dev but I am coding game using C# and Monogame's framework. I'd like to know if you think it is possible and viable to code big game projects with vscode ? And is there plugins inside vscode which can add automaticly the framework's needs and create breakpoint step by step for debugging like Visual studio do ?
Thanks for your help ! :)15 -
it's so comforting to live with Debian knowing that Debian is a journey, not destination. Slowly, step by step, you hone this system to be _exactly_ as you want it. it's computing on your terms.
I'm yet to wrap my head around the fact that what's on my screen is for my eyes only, and no one else anywhere in the world sees it, human or AI.7 -
Craziest prep for interview :
Step 1 : Given sufficient time for the scheduled interview by any company, start by searching "How to prepare for Google interviews". Awe at the information before you and get all pumped up to jump in.
Step 2 : Starting with Algorithms, study each one and try not to mix any of them in confusion. In case you are stuck in whiteboard coding, close your eyes, take deep breath and visualize Don Kunth. If that doesn't help, well you are ruined anyway.
Step 3: Practice coding without internet connection, till you are able to write code while you talk about how the weather is really great today. Libraries and methods should flow like poetry. SO is sin.
Step 4: The X programming language which you added to your resume because you can write Hello World, head over to Wikipedia and read more about it just in case.
Step 5: Read some xkcd comics so you can impress the interviewer with some humor. You can try Dilbert too. -
Technology will be the end of human liberty.
“{9} The post-totalitarian system touches people at every step, but it does so with its ideological gloves on. This is why life in the system is so thoroughly permeated with hypocrisy and lies: government by bureaucracy is called popular government; the working class is enslaved in the name of the working class; … Because the regime is captive to its own lies, it must falsify everything. It falsifies the past. It falsifies the present, and it falsifies the future. It falsifies statistics. …
{10} Individuals need not believe all these mystifications, but they must behave as though they did, or they must at least tolerate them in silence, or get along well with those who work with them. For this reason, however, they must live within a lie. They need not accept the lie. It is enough for them to have accepted their life with it and in it. For by this very fact, individuals confirm the system, fulfill the system, make the system, are the system. . . . .”
https://theamericansun.com/2018/12/...7 -
The bad thing about github library's readmes is that every time i act as it's step by step guide i encounter errors that no not mentioned how to solve it any where
-
Hey kids, do you want to know what's cool and hip?
Writing scripts to formalize and encode domain specific procedures related to development and sharing it within the entire team is cool!
Readmes with step-by-step guides are highly overrated.4 -
Shit is getting more and more weird.
Context updating hooks inside useEffect is just icing on the cake especially the comment about how putting that hook in useEffect dependecies would cause infinite loop. No 💩, Sherlock!!!
No dumb components in this project except maybe buttons.
Every fucking component has tons of business logic and you can't simply tear it apart as data structures are all over the place. Prop drilling with every drill-step recieveng data of a different type.
We are using Context. For just one value. One. That's it.
Fuck this shit! This shit beats every anti-pattern approach I saw in my whole life, and this is my 40-ish project!
Over engineering by stdOut playing in the backround while I curse at this POS code.
The product is cool though. And it works™ -
You know it's all good and well but compiling and building opensource software is like falling down a stairway and getting fucked by dependencies and quirky configurations on each step.
Forever...Down one step and down again.1 -
WarpCLI got me busy. It's not a replacement for r, but damn what is it intuitive. Instead of going like a maniac, it will ask you a lot. You're basically just discussing code all the time, one of my favorite things. It was not boring at all.
I made a scammer scammer. It'll be very naive and will waste a lot of time of scammers. Marcus is a middle aged man that does not know how the navigation of his Brabus works. I'm sure they want to help.
Result is here: https://retoor.molodetz.nl/retoor/...
It took ~2 hours to burn trough 5,-. 5,- is really a lot, normally i average on 1.50 per day and that's not even only my usage. Their subscription is actually just the same price as Claude. It also used Claude for this project. But yeah, they have a good deal with Claude, because I don't use the Claude API much because it's insanely rate limited.
This app is really worth a try, I am surprised. Especially because it let's you check everything step by step.
I knew this stuff would become popular, invented it seven months ago while working on r which is still my swish army knife.1 -
I think I've asked this before. Just cropped up again cuz I'm pushed to do some stuff in nextjs
I Wonder how much longer before js framework devs realise they've been reverse engineering the browser this whole time, that the current browser spec was outdated since the dawn of Web fidelity and real time applications
I wonder whether there are some guys who have seen this and are already cooking in the background. The browser still treats the Internet like front end and back end, whereas with the way apps are going (eg deprecation of the front/back end roles), it seems apparent the browser needs to scale up by fading whatever js is now
I'm seeing "use server", which was one of php's infamous atrocities back in the day (lack of separation of concerns, everything in index.php). It's shocking how those who ridicule that language let this fly, but that's probably a separate thread. Point is, a bunch of these stuff done by front end frameworks seem like boilerplate but the syntax is far different from what I remember javaScript to be. I only vaguely recollect and understand what I'm reading
Why not merge all the cryptic syntaxes struggling to achieve bare minimal expectations, into advanced markup language controlled by dom attributes? Overhaul and Rethink client - server communication to fit modern standard. Someone needs to step out of the box and take a good look at the rat race. I find our lives would be made much simpler if api integration into client side behaviour wasn't a separate thing altogether
You have all these funny hoops and precarious bridges to cross. The reality is what we're fighting to overcome is the manner the architecture is setup. We need a Google/meta/amazon/apple to step in with a new browser since it's not a weekend gig and might need their reach to catch on with mainstream users. Sadly, they're the same guys rolling out new js frameworks1 -
...by saying "so what?!"
Either my fears that I'm not good enough to be where I am are founded, in which case I need to be thankful for this opportunity to be "above my station" so to speak, and work hard to make sure I *do* deserve to be there.
...or they're unfounded, in which case I need to work hard to do the best job I can.
In either case, it doesn't change the outcome, so worrying about it is futile. Heck, even go one step further - shoot for the jobs you *think* are above your station, and then see what comes of it. -
Angular standalone migration breaks the project on the first step and I cannot find the culprit of the error. So it has to be done manually. Any other idea before doing all by hand? 😩
I guess nuking it all is also an option.1 -
The way to avoid procrastination is to understand and use what your mind is trying to do - give itself instant gratification.
I use this method:
Step 1: Prepare your workspace in every way possible.
Step 2: Leave. Go do something fun for 20 minutes or so (yes, procrastinate on purpose). Get your mind calmed down and get rid of the anxieties about starting by just not starting.
Step 3: Sit down in your prepped environment, free of distractions and with a calmed mind, and pick a task to start hacking away at. -
I think the "ultimate success" means success on a personal level:
Take a step back. Realize *this* does not matter. It allows you to build and support your own family. Be with your loved ones. Have pets. See your kids grow up. Grow old together. Looking back on a fulfilling life. Dying surrounded by your loved ones. Knowing, they are safe and cared for. I'm so proud of you what you have created out of nothing! You truly are a developer!
And now go back arguing about tabs vs. spaces on the internet.1 -
Why do I always get errors when I am trying to learn something by following YouTube tutorials like I follow every single step, write the same code but I get errors. I feel like giving up sometimes13
-
I am a mobile dev. Wants to step into backend world by learning python.. django perhaps. I am not sure myself. If someone can point towards good tutorials or links, which takes low learning curve in picking up things.. Thanks.
P.s. I found django rest framework official tut site. Also agiliq.com3 -
Usually, the best approach to get a quick answer is by sending a DM.
To my surprise, the person mentioned that he will check it (then typical radio silence).
Next step, post in a channel that is dedicated to that topic, nothing.
Let's try an experience, I posted the same thing in a channel that the project manager has access to it. He just added an emoji and within 5 mn everyone was adding his input to the thread.
It seems that's the way how things work here 🤷♂️7 -
It's so frustrating going from being able to create a microservice stack prototype by yourself in a couple of months in your free time at home to having to wait 3 months at work for someone to add a build step in Team City so you can automate deploying a database project.
-
1. Enroll in course/project/tutorial
2. Watch, apply, ask questions, find answers and repeat until nothing left to learn
3. Reformat the machine I was learning from
4. Forgot what was learnt and repeat from step 1 until it becomes 2nd nature
5. ???
6. PROFIT (by doing jobs)!!! -
Don't you love it when your in a class, let's say a Web Dev 1 class at a community college, and your surrounded by classmates that are completely computer illiterate and have to help them every step of the way, including reminding them what git clone does9
-
Can anyone recommend some Angular tutorials or documentation that I can go through that will provide an easy to understand, step-by-step of Angular 54
-
I don't wish for free techno advice, although this site is the best place to get it.
I have a simple problem and the answer to the first step towards grabbing it by its neck and telling it who the boss is, starts here.
The problem is File Explorer in Windows 11 is doing the thing where it acts like a Fentanyl addict trying to withdraw money at a Cash Point: fucking slow.
Now, the labtop is manufactured by HP. But the software I'm having a problem with is manufactured by Microsoft.
Whom do I make the phone call to?
Thank you.6 -
What is your favorite method of debugging?
Mine is a debug log. I like a key value setting for enabling/disabling, and logging most transactions, calculations, and variables, even if they seem trivial. I've been able to locate bugs much quicker with detailed logs while some coworkers are still stepping through the process line by line. I don't fault the step method as I use it when logging uncovers nothing (it usually means I didn't log something critical :p) or when logging is not possible.1 -
1. Music, something fast paced with minimal to zero lyrics (usually a GOA radio station in my case)
2. No distractions around (use a "do-not-disturb" flag or something to hang on your monitor or show on your desk)
3. No chats or other communication/social media visible, best case those apps / tabs are completely closed or muted
4. Having a clear goal to achieve, might even be only a sub-goal for the current coding session.
5. Structure your code before your actually write it, I usually create step-by-step comments in each file, documenting my thought process and what steps the current file/class/whatever should do.
6. Try to code your stuff in the same order as the aforementioned comment step-by-step list dictates (unless there is a reason to change the coding order)
7. Only windows open: IDE/Editor, Browser
8. Also keep only the browser tabs needed for your work open (testing clients, documentation, music if using a browser client, etc.)
At least that's what works for me2 -
Don't get me started at Win Updates. I know it is old school but I recently installed win 7 and I realized that updates work in a terribly f***ed up way.
Stuck at "checking for updates". OMG 😤 After quite some research I managed to get passed this step by manually downloading and installing an update that fixed the issue.
Why oh why? 😰2 -
I can't find a complete answer to this question, maybe this community has one:
Does putting an html file, with pure html code (without any php), as .php have any impact (or is processed differently) on the server load compared to simple .html?
Of course, if the content doesn't contain any php code to be processed it doesn't affect the performance, but the simple fact of declaring it as .php cause a different processing root on the server to output the same html result?
I'm aware that if there is any impact, not sure yet, tt's probably negligible, but I'm just curious about the backend root followed.
So, anyone know how exactly these two scenarios are handled (step by step) by the server?
1) Request of pure html as .html.
2) Request of pure html as .php.
My instinct says there must be an additional step in the second scenario to interpret and search for php code to execute.
There is? And does it have any calculatable impact, that multiples for X requests (ignoring caching) and depends of the length of the file?
Thanks5 -
Arg! Learn to debug for your bleeding self you are supposed to be a bunch of senior developers it's the same bloody issues all the freaking time. So I create a step by step guide what buttons to click what text to enter because I'm so f***ing through with the same issues you bug me with day in day out! A 12 year old with no computing knowledge can follow the guides yet you don't even bother reading it half the time or choose to completely miss steps out and bug me with your issues.
Damn it why do I bother you bunch of ass hats get paid more than me too I know it! -
Is there any Vue.js tutorial that show you step by step how to build a full aplication with database interaction?
We are building a page with inventory features in Vue.js and would be nice to have a reference.
So far all the tutorials and articles I've seen shows only the classic "app" with some limited features.2 -
So it's been 4 months and my struggles with Power bi continues. The .net developer I once remains only a bleak memory.
So yesterday the client thought about securing reports, I appreciate the step and suggested embedding them in SharePoint Web parts and securing the access from the desktop app. The client wasn't thrilled with my suggestion as his clients might not have SharePoint, valid point. Instead he wants me to create a small web app with a login page to share the public web url of the reports.
He can't trust client by giving them direct urls but will trust them to login first and then have the url....1 -
I got a report of a relatively simple WinForms app created by a senior (!!) developer who left just as it was released taking 3 minutes to load.
Step through it.. Narrow it down to one stored procedure.
Open said query, every join is a left join.
None needed to be a left join.
Change them all to inners, app now loads in 5 seconds.
Left Joins: For when people can't be assed to learn SQL basics. -
With the rising popularity of mobile gaming, having access to your favorite casino game on the go is now essential. The https://crazy-timebd.com/app/ page offers everything you need to download and install the Crazy Time app quickly and securely. Whether you use Android or iOS, this guide walks you through the process step by step, ensuring smooth installation and reliable performance. The app brings all the fun of the Crazy Time live game show directly to your smartphone — complete with real dealers, interactive gameplay, and vibrant visuals. Moreover, the site explains the app’s features, compatibility, and advantages over playing in a browser. If you're serious about enjoying Crazy Time anytime, anywhere, downloading the app through this guide is the smartest move.2
-
What is the correct way of pulling the latest changes via docker?
Please write step by step commands.
This is how i do it:
1. docker build -t dashboard:latest -t dashboard:v2 dashboard/.
2. docker rm -f dashboard-latest
3. docker run --name dashboard-latest -d -p 8081:80 dashboard
So...
1. Build latest changes
2. Remove the old container
3. Pull those latest changes
---
Is there a better way? Less commands? Is this the right way to do it?
Sometimes the changes dont get updated so i waste hours of time trying to figure out if i fucked up the commands, or order of commands, or if its some caching problem etc.
Teach me the right way once and for all.9 -
Dev ranting about US foreign policy. Trigger warning!
US has a track record of funding the bloodiest regimes, funding terrorists and then using it to create problems for neighbouring regions. I'll tell you step by step how that's done.
1. Look for opposition in non-aligned/sovereign or even-allied country but opposing viewpoints. (Remember spying on German chancellor, Merkel?)
2. Covertly provide them support (providing fundings, potentially arming them).
3. Slow media propaganda, claim the country is undemocratic.
4. Opposition might stir things up.
5. Paint the current leadership in the sovereign country same as Hitler.
6. Continuous bombardment of propaganda using MSM like CNN, MSNBC, Fox, France24, or bribed insiders.
7. Once the regime is finally toppled, black out the media, and see deals can be made with the opposition (Oil, Military bases, or whatever)
8. Reality: these countries are worse now, but no media coverage because exploitation is complete and no-one gives a shit about democracy or whatever. (If you watch few videos about Iraq, Libya their own people says they shouldn't have toppled their leader.).20 -
https://brilliant.org/wiki/...
Is a fascinating breakdown for anyone interested in complex numbers but intimidated by complex *math*.
They really go over it step by step. Take a look -
Hi guys, Please suggest some resources to learn software testing. Currently I am learning through ArtOfTesting(dot)com. They provide free step-by-step.
Please suggest some other websites/youtube channels.2 -
I am a Computer Science student which started work for a company 5 months ago being paid 20k. In the same time I am working on a project for somewhere over 17 pounds an hour. The guys on that project want to keep me for good to work with them on projects (they are a software company ran by a friend of my best friend) but the problem is they are in Europe and they can only offer me freelance work. This place I am working at is great but the salary increases are low. I have a colleague working there for 3 and a half years running a big chunk of their operations and he is making a petty 33k. I do not know what to do, should I job hop after 6 months and work with those amazing people for a bigger salary even if they are in Europe or should I keep hanging on this job on the current wage with maybe a 5k increase by the end of the year because it is more stable? I am curious to hear about similar experiences and how other people will perceive me by doing this step.4
-
!rant
I've been following and finished a course about MVC 5. On the deployment side he showed how to deploy the Release on the filesystem through the vs 2017 publish Wizard GUI and after that he suggest to deploy that folder on the IIS server. Now I looked around on the web and I've not found a way\guide on how to self host that project on my PC and expose the project to internet (which I do mostly by using no-ip.org). Someone have any clue or can point to a step by step guide? -
I point out to a guy which documentation and which section he should read to solved his problem, 30minutes later I swing by and the dude sits and watches tutorials on YouTube. I ask him "did you figure it out and solved the problem?", he replies " nah! This tutorial is really great, it shows step by step...blah blah.. I can send it to you! We should all watch it tomorrow after standup" ... Really? He honestly believes were getting paid to drink latte watch tutorials on YouTube? I almost imploded at that point, went into "whatever"-mode and seriously pondered how much mentoring sucks some days. But seriously tutorials on the tube were targeted for 14year old beginners a last time I checked,did the world do a double revolution and left me behind?? Or is that guy just plainly trying to hide the fact how incompetent he is at reading docs?
-
I've been applying to jobs in Canada while living in the UK. I'm employed here and trying to move, I'm also a UK national. However, my CV is instantly getting rejected by all companies. I'm not sure if my CV sucks or I should be doing some other step before applying for jobs in Canada from abroad. Am I missing something obvious and being quite dumb here?3
-
How can I change a price display in WooCommerce as I have already seen several tutorials and I am following one of the article WooCommerce price display (https://cloudways.com/blog/...) to implement it step by step but still having an issues in changing price on Shop page2
-
Can anybody recommend me a good sacala/playfranework tutorial? I've checked the tutorials that are being referred in the docs but they are very specific and I couldn't find ant updated tutorial that shows me a step-by-step tutorial of how to build a full application
Thanks in advice :)4 -
I want to build a industry grade recommendation system. Total users are 1M and total items are more than 100M. Conversion events are item consumption in form of view time and view.
Can you suggest me how to build or some step by step tutorial to build full fledged recommendation system5 -
"Android users looking for top-tier casino entertainment will find the https://pinup-casinoapp.com/ to be the perfect solution. The app is optimized specifically for Android devices, delivering a smooth and responsive experience.
Players can access a wide variety of games, from video slots to poker and blackjack. The live casino section offers a real-time gaming experience with professional dealers, creating an atmosphere similar to a land-based casino. The app also integrates seamlessly with secure payment gateways, allowing users to deposit and withdraw funds with confidence.
With step-by-step installation guides available on the platform, players can quickly download and set up the app. Once installed, they gain instant access to exciting games, promotional offers, and 24/7 customer support. The Pin-Up Android app sets the standard for mobile casino gaming in Bangladesh."4 -
I was once 'fraped' by a former (non technical) manager. I decided to retaliate by returning the favour while he was out of the office, but instead of the basic toilet humour I had been subjected to, I took it one step further and posted a status on his behalf, a sensitive cry for help, full of sadness, regret, alluding to betrayal and broken friendships. The texts, calls, concerned replies and messages on Facebook started flashing up his phone. He called me demanding I delete the status now as he couldn't figure out how to do so from his phone. Needless to say he was not happy. Highly recommended.1
-
I want to automate some tasks in my PC. But usually when I try to automate something, I have to show the bot exactly step by step, how to do it. Like click on something that looks like this then write something here and so on.
But I want to make a bot, that will learn from my usage replicate the behavior, even if any step gets missed in the middle.
So my question is: to achieve this, which programming language and framework/library should I use?
Thanks12 -
How do you easily understand firebase? I'm implementing google sign in on my application but I can't make it. I read the firebase tutorials and google sign in tutorial but still I don't get it
Anybody here can explain to me step by step google sign in with firebase? -
The "recycle bin" feature of Samsung "My Files" is amazing for data loss prevention when moving files out of the smartphone.
There used to be two ways to move files out of the smartphone to make space free. One is direct moving, the other is copy-deletion. The first is self-explanatory, the second means first copying the files and then deleting them on the phone.
Thanks to the the recycle bin, which keeps data for a month, files on the phone can be copied out and then put into the recycle bin instead of immediately deleted.
This means that if the copying was incomplete, there is a thirty-day grace period to get the files back from the phone.
The benefit of moving files instead of copy-deleting them is the lack of the deletion step. Moving files out directly does not have the emotional barrier of deleting the files from source like the deletion step of copy-deleting does.
Moving files feels like moving items to a new room, where as the deletion step after copying feels like destroying something.
So why not move files out? Because there is a risk of data loss if the device disconnects while files are moved to an USB OTG device. Due to write buffering, files that are moved out might be deleted on the phone shortly before they are completely written on the USB-OTG.
This is not an issue with MTP (Windows or Linux through USB cable) because the file systems are managed by the computer, so if the phone disconnects while files are moved out of the phone using MTP, the file system is kept intact by Windows or Linux.
Now, thanks to the recycle bin, there is no emotional barrier to deletion because the files on the phone are automatically deleted after 30 days in the absence of the user. The user can press the "delete" button without worries because of knowing "I can get it back until a month from now anyway". -
ADVICE: I’ve been assigned someone I was told was mid weight developer for a ‘fast paced project.’ I’ve quickly discovered he doesn’t understand core concepts and is likely very junior; this means I am picking up all the slack to cover for him.
We’ve had to ditch every PR he’s made so far and I’ve had to pair up with him to explain each one, from scratch, step by step.
Not sure what to do, he’s a nice guy, but I’m going to burn myself out if I have to do everything, it’s not acceptable and there is enough pressure on me already.
Do I request for him to be moved off the project, talk with him about my frustrations or raise my concern with the product owner with some evidence?
I get that no one comes to work to do a bad job, but I have my own shit to work on, and don’t fancy doing late night catch ups before every demo tbh1 -
ohhhhh I am pissseddddddddddd
itss the fucking pytorch.module class it would seem !
I do exactly the same goddamn shit as its supposed to do in a goddamn notebook and run it step by step and the fucking model trains and the output values change !!!! and the loss decreases !!
I do this in the goddamn class derived from model with a call to model.parameters() and the fucker fails !!!
why ???
why ?????
why ??????
is it cloning the goddamn parameters so the references aren't there ????
seems to work goddamn fine when i call a layer and activation function at a goddamn time chaining the calls one after another !!!!!!
UGHHHH IT LOOKS LIKE IF YOU DEFINE THE LOSS AND OPTIMIZER OUTSIDE THE FUCKING CLASS IN A SEPERATE TRAINING FUNCTION IT DOESN'T TRAIN !!!!!!
WHY ??
A REFERENCE IS A GODDAMN REFERENCE !!!! -
You know when you start making some guide/tutorial, everything is working e.g for 1 hour, step by step.
Theeeeen suddenly 1 error from universe stopped your work. Checking for the error debugging it next hour, asking questions online aaand ? no one has an answer. Yeah that's it stick with it, or restart ;D
4 -
While I was browsing online for some school-related information, I stumbled upon a recommendation for a service called Malice Cyber Recovery. At first, I didn’t think much of it. However, after reading several positive reviews and testimonials from people who had used their services, I decided to reach out. I had been struggling with a problem of my own: I had 2 BTC stuck in my binary options trading account, and no matter what I did, I couldn’t withdraw the funds. I felt completely frustrated and helpless. I had tried everything to resolve the issue on my own, but nothing worked. That's when I decided to give Malice Cyber Recovery a shot, based on all the positive feedback I had seen. I reached out to them, and to my surprise, their team responded almost immediately. They were professional and clearly knew what they were doing. They explained the whole process to me step-by-step, and I felt reassured that I was in good hands. Within just 24 hours of contacting them, I was able to successfully withdraw my 2 BTC. I couldn’t believe how quickly and efficiently they were able to recover the funds I had thought were lost forever. Their team made the entire process smooth, and I was kept updated every step of the way. It was clear that they were experts in handling situations like mine, and they took care of everything with professionalism. I am incredibly grateful to Malice Cyber Recovery for coming through for me when I didn’t know where to turn. They helped me get my funds back in a way that I couldn’t have done on my own. The entire experience was hassle-free, and I didn’t have to worry about a thing. Interestingly, just the other day, I saw a segment on NBC 5 Dallas, where they mentioned Malice Cyber Recovery. They highlighted how the service had helped people recover their funds from binary brokers, especially those who had trouble withdrawing their money. This news made me even more confident in my decision to reach out to them. If you're having trouble withdrawing funds from your binary options account or are facing similar issues, I highly recommend Malice Cyber Recovery. They really came through for me, and I’m so thankful for their help.
1 -
USE DIGITAL HACK RECOVERY EXPERTS TO TRACK AND RECOVER LOST OR STOLEN BITCOIN AND OTHER CRYPTOS
including forensic investigations, digital asset tracing, and personalized recovery strategies tailored to each client's unique situation. Their expert team leverages advanced technology and sophisticated methodologies to track lost assets, ensuring no stone is left unturned in the pursuit of justice. Understanding the emotional toll that losing cryptocurrency can take, Digital Hack Recovery emphasizes compassionate support throughout the recovery process. From the initial consultation, where they assess the situation and potential avenues for recovery, to the ultimate resolution, clients receive expert guidance and transparency at every step.
With a proven track record of success, the Digital Hack Recovery team approaches each case with a blend of determination and innovation. They keep clients informed with regular updates and work closely with law enforcement and financial institutions, when necessary, to maximize recovery chances. This dedication has earned them numerous testimonials from satisfied individuals and businesses, each attesting to the transformative difference Digital Hack Recovery made in their lives after experiencing cryptocurrency theft.
In today's digital landscape, where the allure of cryptocurrency can attract both investment and deception, it's crucial to partner with professionals who not only understand the technology but also possess the strategy and resolve to recover what is rightfully yours. Digital Hack Recovery stands as a beacon of hope for those affected by fraud in the crypto world, restoring not simply assets but also confidence and peace of mind. Reach out to their team today and take the first step on the pathway to recovery.
Digital Hack Recovery’s contact details⁚ WhatsApp +19152151930
Email; digital
hack recovery @ techie . com
Website; https : // digital hack recovery . com
3 -
CRYPTO RECOVERY COMPANIES FOR HIRE SPARTAN TECH GROUP RETRIEVAL
Losing access to a £250,000 cryptocurrency wallet felt like my worst nightmare come true. One moment, I was clicking what seemed like a routine link; the next, I was locked out of my funds with no way back in. The panic that set in was overwhelming. Frantic and fearing that my money was lost forever, I started researching solutions and stumbled upon SPARTAN TECH GROUP RETRIEVAL. From the very first interaction, I knew I was in good hands. Their team handled my case with remarkable professionalism, offering clear communication and genuine reassurance. They didn’t make any exaggerated promises but instead walked me through their recovery process step by step, making sure I understood how they would tackle my situation. Their use of advanced forensic tools was impressive, and it became clear they were experts in recovering lost crypto. What stood out the most was their transparency and commitment to delivering results without resorting to empty guarantees. They kept me informed at every stage, making sure I knew exactly what they were doing and why. It wasn’t long before they delivered results beyond my expectations. Not only did they recover every cent of the £250,000 I thought I’d never see again, but they also provided me with invaluable advice on how to secure my wallet and prevent similar incidents in the future. Their attention to detail and thoroughness ensured that I walked away not only with my funds but with the knowledge to safeguard them moving forward. Their transparency in pricing and dedication to my case were refreshing. Unlike other services I had considered, SPARTAN TECH GROUP RETRIEVAL didn’t try to upsell or pressure me into additional services. I felt reassured every step of the way, knowing that my case was being handled by professionals who genuinely cared about my financial well-being. If you’ve ever found yourself locked out of your cryptocurrency wallet and think your funds are gone for good, don’t lose hope. SPARTAN TECH GROUP RETRIEVAL is the team that will get you through it, with professionalism, expertise, and an approach that inspires trust. Whether you’re dealing with a minor hiccup or a major loss, they are the ones to turn to for recovery solutions you can rely on.
INFO ABOUT THE COMPANY :
WhatsApp:+1 (971) 4 8 7 - 3 5 3 8
Email: spartantech (@) c y b e r s e r v i c e s . c o m
Telegram:+1 (581) 2 8 6 - 8 0 9 2
1 -
**Title: How Bitsquery Web Retriever Helps Recover Stolen Bitcoin: A Lifeline for Crypto Theft Victims**
In the ever-expanding world of cryptocurrency, Bitcoin theft is unfortunately becoming more common. With digital assets being highly sought-after and often stored in decentralized wallets, hackers have found creative ways to infiltrate and steal unsuspecting users' funds. If you've ever typed *"I need a hacker to recover back my stolen BTC"*, you're not alone—but there’s now a trusted, legitimate solution that doesn’t require hiring a black-hat hacker: **Bitsquery Web Retriever**.
This professional crypto recovery service has helped hundreds of victims reclaim stolen or lost Bitcoin using blockchain forensics and real-time tracking technology. Here's how the Bitsquery Web Retriever team works—and why they’re quickly becoming a go-to resource for crypto recovery.
---
### What is Bitsquery Web Retriever?
Bitsquery Web Retriever is a blockchain analysis and asset recovery service dedicated to helping individuals and organizations recover stolen or lost cryptocurrencies, particularly Bitcoin. Unlike shady “hacker-for-hire” options that often scam victims a second time, Bitsquery operates through legal, transparent methods.
Their approach relies on deep blockchain scanning, wallet address tracing, forensic crypto investigation, and partnership with cybersecurity networks to track and, where possible, recover funds.
---
### How Bitsquery Web Retriever Works
**Step 1: Submit Your Case**
Victims start by contacting Bitsquery Web Retriever via email or Telegram. You'll need to provide basic details such as:
- The amount and type of cryptocurrency lost
- Wallet addresses involved (yours and the suspected thief’s)
- Any transaction IDs
- A short description of how the theft occurred
**Contact Information**
📧 Email: **bitqueryretrieverhacker@bitquery.co.site**
💬 Telegram ID: **@Bitsquerywebretriever1**
---
**Step 2: Blockchain Forensic Analysis**
Once the information is received, the team launches an in-depth blockchain analysis. Using advanced tracking tools, they follow the flow of your stolen Bitcoin through various wallets and exchanges. Their software identifies movement patterns and attempts to pinpoint where the stolen funds have landed.
---
**Step 3: Recovery Path Strategy**
Based on the analysis, the Bitsquery team develops a strategy to recover the funds. This might involve:
- Working with crypto exchanges to flag and freeze assets
- Collaborating with legal authorities or private investigators
- Deploying retrieval scripts or tools to reclaim access (when possible)
---
**Step 4: Updates and Recovery Process**
Bitsquery keeps you updated throughout the recovery process. They offer clear communication, evidence of progress, and a timeline estimate. While not every case is 100% recoverable, many users have reported successful recoveries or partial fund returns.
---
### Why Choose Bitsquery Web Retriever?
✅ *Legitimate and Transparent*: No shady dealings—everything is above board.
✅ *Real Blockchain Forensics*: They don’t guess—they track.
✅ *Experienced Team*: Professionals with crypto, cybersecurity, and investigative backgrounds.
✅ *Supportive Process*: You’ll never feel left in the dark.
---
### Final Thoughts
Bitcoin theft can feel devastating, especially when it seems like there’s no way back. But with tools like Bitsquery Web Retriever, you have a chance to fight back with the power of forensic tracking and real crypto expertise.
Instead of risking more by hiring unknown hackers, trust the professionals who have a proven method and a growing base of satisfied clients.
---
**Get in Touch with Bitsquery Web Retriever Today:**
📧 Email: **bitqueryretrieverhacker@bitquery.co.site**
💬 Telegram: **@Bitsquerywebretriever1**
Your stolen Bitcoin might not be lost forever—reach out and start your recovery journey today.2 -
GENUINE BTC AND ETH RECOVERY COMPANY= CONTACT SALVAGE ASSET RECOVERY
In an era where cybercrime is growing increasingly sophisticated, the impact of financial loss can leave victims feeling utterly powerless. Amid this landscape of deception, Salvage Asset Recovery stands as a beacon of trust, offering a team of technical experts whose skills transcend traditional recovery methods. My own journey from frustration to resolution began when I entrusted my case to Salvage Asset Recovery, a name that now represents excellence in digital asset restoration. After falling victim to an elaborate Bitcoin scam, I faced countless dead ends and empty reassurances. Conventional channels offered little more than scripted sympathy, which only added to my frustration. Then I found Salvage Asset Recovery, an elite group of professionals who focus not on empty promises, but on tangible results. From our first conversation, they approached my case with clarity and honesty, replacing confusing technical jargon with a clear, step-by-step plan that provided me with real confidence. Their sense of urgency and precision assured me that I was no longer alone in this fight. What truly sets Salvage Asset Recovery apart is their ability to combine cutting-edge innovation with ethical integrity. Using advanced blockchain analytics, cryptographic tools, and an in-depth understanding of cybercriminal operations, they were able to dismantle the scam with remarkable speed. The team of forensic analysts, legal experts, and cybersecurity specialists worked together seamlessly to outsmart the criminals. Within days, they traced the complex web of transactions and recovered assets I had once thought were lost forever. Beyond their technical expertise, what truly stood out was their compassion. Salvage Asset Recovery wasn’t just solving a problem, they were restoring trust. They communicated frequently, turning a cold, technical process into a humane and supportive experience. When success came, it felt like a shared victory. In a field clouded by opportunists, Salvage Asset Recovery shines with integrity and heart. They are more than just a service, they are a lifeline. For anyone impacted by Bitcoin or cryptocurrency fraud, Salvage Asset Recovery is the name to remember. CONTACT INFO
WhatsApp+ 1 8 4 7 6 5 4 7 0 9 62 -
GET YOUR STOLEN CRYPTO BACK : PROFESSIONAL HELP FROM SPARTAN TECH GROUP RETRIEVAL
I'm incredibly grateful that I did enough research to recover my stolen cryptocurrency. When I first fell victim to a scam, I felt hopeless and lost, unsure if I'd ever see my funds again. A few months ago, I was approached by someone on Telegram who claimed to have a lucrative investment opportunity in cryptocurrencies. They promised huge returns and played on my emotions, making it seem like a can't-miss chance. I was so eager to make my money grow that I didn't fully vet the situation, and unfortunately, I ended up falling for the scam. They guided me to invest a significant amount of money, and soon after, I realized I had been duped. The scammers blocked me, and my funds were gone. I felt devastated. All of my savings had been wiped out in what seemed like an instant, and the feeling of being taken advantage of was crushing. I spent days researching how to recover my stolen cryptocurrency but found the process to be overwhelming and complicated. I was starting to lose hope when I came across SPARTAN TECH GROUP RETRIEVAL. At first, I was skeptical about reaching out to a cryptocurrency recovery company, but after reading testimonials and researching their reputation, I decided to give them a try. I contacted SPARTAN TECH GROUP RETRIEVAL ON WhatsApp:+1 (971) 4 8 7 -3 5 3 8 OR Telegram:+1 (581) 2 8 6 - 8 0 9 2, and I was immediately reassured by their professionalism and expertise. They took the time to listen to my situation, and they were honest about what could and could not be done. What stood out to me was their deep understanding of cryptocurrency fraud and the recovery process. They were able to track down the scammers and initiate the recovery of my stolen funds, step by step. Thanks to SPARTAN TECH GROUP RETRIEVAL, I was able to get back a significant portion of the cryptocurrency I had lost. Their team was responsive, transparent, and diligent in their efforts. I was kept informed throughout the entire process, and they made sure I felt supported every step of the way. I truly can't thank them enough for their dedication and for restoring my faith in the possibility of recovery after such a devastating loss. I will definitely recommend SPARTAN TECH GROUP RETRIEVAL to anyone who has fallen victim to a cryptocurrency scam. Their professionalism, knowledge, and commitment to helping victims recover their stolen funds is unmatched. If you find yourself in a similar situation, don't hesitate to reach out to them they can make all the difference in getting your cryptocurrency back.
OTHER CONTACT INFO:
Email: spartantech (@) c y b e r s e r v i c e s . c o m
4 -
Professional Bitcoin Recovery Expert ⁄⁄ Digital Hack Recovery
Recovering your lost bitcoins requires patience, dedication, and the right expertise. While the process may seem daunting, the opportunities for reclaiming stolen or misplaced digital assets are just as viable today as ever, provided you have the right tools and support. Like many others, I once thought my lost Bitcoin account was beyond recovery after it was stolen. However, my perspective changed when I found Digital Hack Recovery.At first, I was skeptical. Could any service really help me recover my cryptocurrency? The world of digital assets is complex, and I had resigned myself to the idea that my coins were lost for good. But from the moment I reached out to Digital Hack Recovery, I was impressed by their professionalism and knowledge. They use a variety of advanced techniques and recovery tools to retrieve digital assets from a wide range of sources, making the entire process both effective and secure. Their team immediately reassured me that recovery was possible, and they guided me every step of the way.What truly sets Digital Hack Recovery apart is its user-friendly interface. Even if you don’t have a technical background, their platform makes it easy to follow the recovery steps. The service is designed to be simple and intuitive, with clear instructions for both beginners and more experienced users. This was a key factor for me, as I didn’t have a deep understanding of the technicalities of Bitcoin recovery. Digital Hack Recovery’s clear, step-by-step process made it accessible and easy to navigate, even for someone with limited tech skills.Security and privacy are also top priorities for Digital Hack Recovery. They assured me that my personal information would remain completely secure throughout the recovery process, and I never had any concerns about the confidentiality of my data. Knowing that my information was in safe hands gave me the peace of mind I needed to trust them with such an important task. I highly recommend Digital Hack Recovery to anyone who has lost or misplaced their digital assets. Their advanced recovery tools, combined with an easy-to-use interface and top-notch security, make it an invaluable resource for both individuals and businesses. Thanks to their expertise and dedication, I was able to recover my lost Bitcoin. If you’re facing a similar situation, I’m confident that Digital Hack Recovery can help you too.
Contact info⁚
WhatsApp +19152151930
Email⁚ digital hack recovery @ techie . com
Website⁚ https : // digital hack recovery . com7 -
It's crucial to work with a reputable recovery service that has a proven track record. Wizard James Recovery demonstrated exceptional expertise in tracking and reclaiming stolen cryptocurrency, giving me hope in what seemed like a hopeless situation. Their team utilized advanced blockchain analysis tools and investigative techniques to trace my lost funds. They kept me updated throughout the process, explaining each step in a way that was easy to understand. Their professionalism and dedication reassured me that I was in good hands. If you ever find yourself a victim of cryptocurrency theft, seeking help from experienced professionals like Wizard James Recovery can significantly increase your chances of recovery. Always conduct thorough research before choosing a service, and be cautious of scams posing as recovery experts. Reach out to Wizard James Recovery by visiting their web at: wizardjamesrecovery(.) com . mail: wizardjamesrecovery (@)usa (.) com1
-
HACKER FOR HIRE: iBOLT CYBER HACKER - CRYPTOCURRENCY RECOVERY COMPANY
I highly recommend iBOLT Cyber Hacker for anyone seeking expert assistance in recovering lost or stolen cryptocurrency, I recently engaged iBOLT Cyber Hacker after falling victim to a cryptocurrency scam, their team demonstrated deep knowledge of blockchain forensics, wallet tracing, and transaction monitoring. They handled my case with a high degree of transparency and integrity, clearly explaining each step of the process and setting realistic expectations.
If you've been affected by a crypto scam, phishing attack, or wallet breach, iBOLT Cyber Hacker offers a legitimate path to potential recovery. While no company can guarantee 100% success in every case, iBOLT delivers results with professionalism, discretion, and a client-first mindset.
info @ iboltcyberhack . org/
www . iboltcybarhacker . com/
+.39.. 351. .105. .3619.
I strongly recommend their services to anyone in need of cryptocurrency recovery support.5 -
I’ve always been cautious with my finances, but the promise of high returns in the crypto world drew me in. I invested $390,000 into what I believed was a legitimate Bitcoin investment platform. Initially, everything seemed promising—the returns looked incredible, and the dashboard showed my portfolio growing daily. However, when I attempted to withdraw my earnings, the site became unresponsive. Emails went unanswered, and my funds appeared to vanish without a trace. I was devastated. My trust in digital finance was shattered, and countless sleepless nights followed as I researched recovery options. That’s when I discovered SANTOSHI HACKERS INTELLIGENCE (SHI) through an online forum. Many others shared similar stories of loss but spoke highly of SHI’s ability to recover their stolen assets. Though skeptical, I reached out to them, clinging to hope. From my very first interaction with the SHI team, I was struck by their professionalism and genuine empathy. They took the time to understand my situation, asking detailed questions about my transactions and communications with the scam site. Their approach was meticulous and transparent, explaining step-by-step how they would trace blockchain transactions to uncover the trail left by the scammers. The process wasn’t instantaneous, but SHI regular updates and clear communication gave me confidence. Using advanced blockchain analytics, they traced my $390,000 through multiple disguised addresses used by the scammers. Weeks of effort culminated in incredible news: SHI had located a significant portion of my funds. Through their expertise and collaboration with legal teams and cryptocurrency exchanges, SHI recovered 75% of my initial investment. This outcome was beyond what I had dared to hope for. More importantly, SHI didn’t just recover my funds—they provided invaluable education on securing digital assets. They taught me about wallet security, the importance of due diligence in investments, and recognizing red flags in too-good-to-be-true platforms. What could have been a devastating financial loss became a powerful lesson in resilience and cybersecurity, thanks to the exceptional team at SANTOSHI HACKERS INTELLIGENCE. I am immensely grateful for their support and expertise. For anyone seeking trusted cryptocurrency recovery services, I wholeheartedly recommend SHI.8
-
CONSULT A REPUTABLE LOST CRYPTO RECOVERY SERVICES // DIGITAL HACK RECOVERY
While I was browsing online for some school-related information, I stumbled upon a recommendation for a service called Digital Hack Recovery At first, I didn’t think much of it. However, after reading several positive reviews and testimonials from people who had used their services, I decided to reach out. I had been struggling with a problem of my own: I had 2 BTC stuck in my binary options trading account, and no matter what I did, I couldn’t withdraw the funds. I felt completely frustrated and helpless.I had tried everything to resolve the issue on my own, but nothing worked. That's when I decided to give Digital Hack Recovery a shot, based on all the positive feedback I had seen. I reached out to them, and to my surprise, their team responded almost immediately. They were professional and clearly knew what they were doing. They explained the whole process to me step-by-step, and I felt reassured that I was in good hands.Within just 24 hours of contacting them, I was able to successfully withdraw my 2 BTC. I couldn’t believe how quickly and efficiently they were able to recover the funds I had thought were lost forever. Their team made the entire process smooth, and I was kept updated every step of the way. It was clear that they were experts in handling situations like mine, and they took care of everything with professionalism.I am incredibly grateful to Digital Hack Recovery for coming through for me when I didn’t know where to turn. They helped me get my funds back in a way that I couldn’t have done on my own. The entire experience was hassle-free, and I didn’t have to worry about a thing.Interestingly, just the other day, I saw a segment on NBC 5 Dallas, where they mentioned Digital Hack Recovery. They highlighted how the service had helped people recover their funds from binary brokers, especially those who had trouble withdrawing their money. This news made me even more confident in my decision to reach out to them. If you're having trouble withdrawing funds from your binary options account or are facing similar issues, I highly recommend Digital Hack Recovery. They really came through for me, and I’m so thankful for their help.Contact Digital Hack Recovery via: WhatsApp +19152151930
Website; https : // digital hack recovery . com
Email; digital hack recovery @ techie . com1 -
BITCOIN ASSET RECOVERY SIMPLIFIED BY DIGITAL TECH GUARD RECOVERY PROVEN PROCESSES
Overcoming the Cryptocurrency Crisis: Finding Hope and Recovery Amidst Scams and Deception.
contact @ digital tech guard . com
WhatsApp: +1 (443) 859 - 2886
Telegram: +56 (997) 059 - 700
In a world increasingly dominated by cryptocurrency, the rapid rise of scams has left many, including myself, feeling lost and vulnerable. As a resident of New Jersey, I’ve witnessed firsthand how victims grapple with confusion and despair while navigating this treacherous landscape. The allure of digital currencies often blinds individuals to the risks, and I learned firsthand just how easy it is to fall prey to deceitful schemes. After I was scammed out of my hard-earned funds, I felt an overwhelming sense of hopelessness. The financial and emotional toll was immense. I had trusted the promises of easy profits and financial freedom, only to find myself on the wrong side of a scam. Like many victims, I turned to Digital Tech Guard Recovery. However, I soon realized that even these professionals are not immune to the perils of the online world. Many claim to offer solutions but can themselves be involved in shady practices, complicating the recovery process even further. As I navigated this difficult situation, vigilance became my guiding principle. I spent countless hours researching and seeking answers, but it often felt like I was just running in circles. It was during this time of uncertainty that I stumbled upon Digital Tech Guard Recovery. Their reputation for assisting victims of cryptocurrency scams caught my attention, and I decided to reach out. From the moment I connected with Digital Tech Guard Recovery, I felt a glimmer of hope. They provided me with clear guidance and a dedicated approach to recovering my stolen funds. Their team was not only knowledgeable but also empathetic, understanding the emotional toll that such scams can take on individuals. They walked me through the recovery process step by step, ensuring that I remained informed and engaged throughout. Thanks to Digital Tech Guard Recovery’s expertise, I was able to recover a significant portion of my lost funds. Their thorough investigation and commitment to client success made all the difference. I learned the importance of acting quickly and decisively when dealing with financial fraud, and I felt empowered to take control of my situation. If you find yourself in a similar predicament, whether you’re in New Jersey or elsewhere, I highly recommend reaching out to Digital Tech Guard Recovery. They are dedicated to helping victims reclaim their financial peace. In a world rife with scams, it’s essential to stay informed and vigilant, but having the right support can make all the difference in your recovery journey. Take that step toward regaining your financial stability don’t let the scammers win. -
My Experience With Mayermusk Recovery Company On How They Help Me Recover Back My Lost USDT
I recently found myself in a distressing situation after losing a significant amount of USDT due to a fraudulent transaction. Feeling overwhelmed and unsure of where to turn, I stumbled upon Mayermusk Recovery Company. From the moment I reached out to them, I was met with professionalism and empathy. The team at Mayermusk took the time to understand my situation thoroughly. They guided me through the recovery process step by step, providing clear communication and updates along the way. Their expertise in cryptocurrency recovery was evident, and I felt reassured knowing I was in capable hands. Thanks to their diligent efforts and strategic approach, I was able to recover my lost USDT within a matter of weeks. I cannot express how grateful I am for their support during such a challenging time. If you find yourself in a similar predicament, I highly recommend Mayermusk Recovery Company. They truly deliver on their promise to help those in need.1 -
Autism Treatment in Hyderabad - Can Autism Really Be Cured or Just Managed Better?
The word “cure” can be tricky when we talk about autism. Autism isn’t a disease it’s a different way of experiencing the world. So, instead of looking for a “cure,” most parents and experts now focus on early support, therapies, and care that help children live fuller, more independent lives.
If you're seeking help in India, there are many trusted options for Autism Treatment in Hyderabad where parents can find the right path forward.
Here’s what real support can look like:
Therapies that work: Speech, behavioural, and occupational therapies provided at a good Child Development Center in Hyderabad can greatly improve communication and daily skills.
Personalised care: Every child is different. The best centres offer customised care plans.
Supportive environments: A well-equipped Rehabilitation centre for autism in Hyderabad ensures your child gets expert care in a calm and friendly space.
Family training: Parents also learn how to support their child at home and school.
Lifelong progress: With time, many kids show major improvements in how they talk, behave, and learn.
While there may not be a one-size-fits-all "cure," places like a top Autism rehabilitation centre in the city focus on Autism Care and Prevention that leads to real progress, step by step.
In short: Don’t look for a miracle pill - look for the right help, at the right time, from the right people.
All the best to every parent out there. You're doing great!5 -
I was absolutely devastated and deeply depressed when I realized I had lost $38,000 to a crypto investment scam. I thought I’d never see that money again, and the hopelessness was overwhelming. Then, I came across Global Hack Technology, and even though I was skeptical, I decided to give them a chance.
From the first interaction, their team showed compassion, professionalism, and expertise. They walked me through the recovery process step by step and kept me informed throughout. To my amazement, they successfully recovered my money!
I can’t thank them enough for what they’ve done. If you or anyone you know has fallen victim to a similar scam, don’t hesitate to contact Global Hack Technology. They are truly lifesavers who can turn an impossible situation into a success story."
Below is their contact info:
W h a t s a p p Number : +44 7747 969957
Telegram :@G l o b a l h a c k t e c h n o l o g y
Company Email: G l o b a l h a c k t e c h n o l o g y @ g m a i l . c o m1 -
Secure Crypto Recovery: Regain Access to Lost Wallets and Funds Hire iForce Hacker Recovery
iForce Hacker Recovery assisted me in recovering a lost wallet phrase containing $317 worth of Bitcoin. After accidentally losing access to my wallet, I contacted them for help. Their team used advanced cryptographic techniques and blockchain expertise to securely recover my wallet phrase. They guided me through the process step-by-step, ensuring my funds were restored without compromising security. Their professionalism and efficiency provided peace of mind, saving my hard-earned funds and demonstrating their expertise in digital asset recovery.
Contact info www .iforcehackerrecovery. com
Email; contact@iforcehackerrecovery . com
Whatsapp +1240. 803. 370. 61 -
Puran Crypto Recovery: The Best Cryptocurrency Recovery Agency Helping Victims Reclaim Their Lost Assets
The Puran Approach to Recovery: A Step-by-Step Process
Recovering stolen crypto is a meticulous process that involves several critical steps. Here’s how Puran Crypto Recovery handles each case:
Initial Consultation: Puran starts by understanding the nature of the scam and gathering all relevant details from the victim. This step ensures a tailored recovery plan for each case.
Evidence Collection: Puran’s team helps victims compile essential evidence, including transaction IDs, wallet addresses, and communication records with scammers.
Blockchain Tracing: Using advanced tools, Puran traces stolen funds through the blockchain, identifying where the assets were transferred and potentially uncovering the identities of those involved.
Collaboration with Authorities: Once the funds' trail is established, Puran works with law enforcement and regulatory bodies to secure legal support for recovery.
Recovery and Resolution: The final step involves reclaiming the stolen funds and returning them to the victim’s wallet, ensuring the process is completed securely and transparently.
The world of cryptocurrency is both exciting and perilous, offering opportunities for growth but also vulnerabilities to exploitation. If you’ve been targeted by crypto thieves, don’t lose hope. With Puran Crypto Recovery, you’re in the hands of the best cryptocurrency recovery agency. Their team of experts works tirelessly to trace stolen assets, collaborate with authorities, and ensure victims recover what’s rightfully theirs.
For personalized support and expert guidance, contact Puran Crypto Recovery at purancryptorecovery@contactpuran.co.site. Visit their website at Puran.Online to learn more about their services and start your journey to recovery today.1 -
I am currently trying to set up a unit-test using Python Django framework.
I follow the official documentation step by step. I completed the steps.
It spits out an error: the table does not exist in the database.
Seriously, do you need any more proof that Python is bad? The developers of Python framework cannot even put together a working tutorial. If the unit-test framework requires the database then it should auto-create the tables3 -
HIRE THE BEST CRYPTO / BITCOIN RECOVERY / SERVICES - Call iFORCE HACKER RECOVERY
Iforce Hacker Recovery employs a team of skilled professionals who utilize advanced techniques and tools to recover lost crypto assets.
Here’s a brief overview of their process:
Initial Consultation: They start with a free consultation to
understand your situation and assess the chances of recovery.
Data Analysis: Their experts analyze your wallet and transaction
history to identify potential recovery methods.
Recovery Strategy: Once a strategy is determined, they guide you
through the recovery process step-by-step.
Results: Depending on the complexity of the case, recovery can take
anywhere from a few hours to several days.
Website info; ww w. iforcehackersrecovery. com
Email; contact@iforcehackersrecovery. co m
Whatsapp> +1 (240) 803. (3706)3 -
How to Withdraw on Bhalo88 💰 | A Complete Guide
Withdrawing money securely and efficiently is crucial for any online gaming or betting platform. If you’re looking for an easy way to withdraw your winnings, this guide on how to withdraw on Bhalo88 will walk you through each step. Moreover, we will discuss secure mobile banking in Bangladesh like bKash, Nagad, Upay, and Rocket for fast transactions.
Why Choose Bhalo88 for Withdrawals? 🚀
Bhalo88 offers a user-friendly and secure withdrawal process. Multiple payment options ensure seamless transactions. With instant processing, you can receive your winnings directly to your mobile wallet or bank account. Whether you’re using bKash, Nagad, Rocket, or Upay, Bhalo88 ensures a hassle-free experience.
Step-by-Step Guide: How to Withdraw on Bhalo88 📝
Step 1: Access the Security Center
To begin, log in to your Bhalo88 account and navigate to the Security Center.
Step 2: Click on “E-Wallet Binding”
This step ensures that your mobile banking details are securely linked to your Bhalo88 account.
Step 3: Select Withdrawal Method
Choose the method through which you want to withdraw your funds (bKash, Nagad, Rocket, or Upay).
Provide your full name as per your bank or wallet account.
Enter the mobile number where you wish to receive the money.
Input the number registered with your Bhalo88 account.
Click on Send and enter the OTP received on your number.
Set a new 6-digit transaction PIN for added security.
Step 4: Enter Withdrawal Amount
Specify the amount you want to withdraw.
Input your saved transaction PIN and click on withdraw.
Secure Mobile Banking Options in Bangladesh
When withdrawing on Bhalo88, you can use some of the most trusted and secure mobile banking services in Bangladesh. Let’s take a closer look at these options:
bKash: The Most Popular Mobile Banking
Fast and secure transactions
Available across Bangladesh
Instant withdrawal processing
Nagad: Trusted by Millions
Low transaction fees
High security and encryption
24/7 customer support
Rocket: Powered by Dutch-Bangla Bank
Direct bank integration
Safe and efficient transactions
Supports large withdrawals
Upay: The New and Reliable Choice
Competitive transaction fees
Instant mobile wallet transfers
High withdrawal limits
These services ensure safe and instant transactions, making them perfect choices for withdrawing on Bhalo88.
Tips for a Safe Withdrawal on Bhalo88 🛡️
Always double-check the number and account details before withdrawing.
Use a strong transaction PIN for added security.
Withdraw during banking hours for the fastest processing.
If you face issues, contact Bhalo88 customer support immediately.
Frequently Asked Questions (FAQs) 📊
1. How long does it take to withdraw on Bhalo88?
Most withdrawals are processed instantly. However, bank-related transactions may take up to 24 hours.
2. Is there a minimum withdrawal amount?
Yes, the minimum withdrawal amount depends on the selected payment method. Usually, it’s around 100 BDT.
3. Can I withdraw using a different mobile number?
No, the withdrawal must be made to the registered mobile number linked with your Bhalo88 account.
4. What should I do if my withdrawal fails?
Check your account balance, internet connection, and OTP entry. If the issue persists, contact Bhalo88 support.
Conclusion 🏆
Withdrawing money on Bhalo88 is quick, secure, and hassle-free when you follow the correct steps. By using bKash, Nagad, Rocket, or Upay, you can enjoy a smooth withdrawal experience. Moreover, ensure security measures are followed, and always double-check your details before processing any transaction.
Now that you know how to withdraw on Bhalo88, go ahead and enjoy your winning
1 -
How to Jitter Click and Increase Clicks per Second?
If you are a gamer who wants to increase clicks per second speed, you must learn how to jitter click. Here, I am sharing an easy step-by-step process of jitter clicking and how to master the technique with practice.
For those who are new to the concept of jitter clicking, let me first tell you about that.
What is Jitter Clicking?
Jitter Clicking is an advanced mouse-clicking technique that gives you more clicks per second on the CPS test ( https://cpstest.pro ) than the regular way of clicking. You use your forearm and wrist muscles to create vibrations in the hand and use it to make more clicks in less time.
How to Jitter Click? Step by Step Guide
If you want to learn jitter clicking, follow the steps provided below.
1. First, hold the mouse properly. A claw grip works the best for jitter clicking.
2. Start by making for forearm stiff and putting all the stress on the wrist muscle.
3. Use the stressed wrist to create vibration in your hand and the index finger.
3. The index finger must be on exactly the top of the mouse button keeping it just a few millimeters away.
4. The vibration in the finger will make the mouse button click way faster than normal
That's it. You've successfully learned how to jitter click. It might seem a bit difficult in the beginning, but after you practice it enough, you'll be able to master jitter clicking within a week.
Among all my gamer friends who started using jitter clicking, most of them have seen significant improvement in their clicking speed. Those who had around 6-8 CPS earlier, started to get 11-12 CPS within a week of jitter click practice. A few of them went even beyond that with 14 clicks per second.
According to stats, jitter clicking is recommended as the fastest way of clicking.
Clearly, it is a good technique but those who are starting to jitter click should take proper precautions as the method involves unusual muscle movements and may lead to wrist pain, cramps, or even carpal tunnel syndrome.
It is advised that gamers take sufficient breaks while jitter clicking and not perform it for long time periods in one go.
Keeping this in mind, I hope you'll definitely get better clicks per second using the jitter click technique.4 -
Are you looking for ways to recovery your lost Bitcoin and other Cryptocurrencies from scammer's? Search no more! ( RECOVERY SCAM CRYPTO @ GMAIL . COM ) WhatsApp +1 (603) 702 ( 4335 ) Is the best Scammed Crypto Recovery Agency I have come across on the google internet . So glad I took the bold step by contacting them. All my stolen cryptocurrencies was reversed back to my Coin Base wallet within few hours . I will advice you all to contact their customer support to help you with their strategies and thank me letter.1
-
My Experience with Mayermusk Recovery Company on how they help me recover back my lost USDT
I recently found myself in a distressing situation after losing a significant amount of USDT due to a fraudulent transaction. Feeling overwhelmed and unsure of where to turn, I stumbled upon Mayermusk Recovery Company. From the moment I reached out to them, I was met with professionalism and empathy. The team at Mayermusk took the time to understand my situation thoroughly. They guided me through the recovery process step by step, providing clear communication and updates along the way. Their expertise in cryptocurrency recovery was evident, and I felt reassured knowing I was in capable hands. Thanks to their diligent efforts and strategic approach, I was able to recover my lost USDT within a matter of weeks. I cannot express how grateful I am for their support during such a challenging time. If you find yourself in a similar predicament, I highly recommend Mayermusk Recovery Company. They truly deliver on their promise to help those in need.
1 -
For players in Bangladesh seeking a reliable source of information about online casinos and sports betting, https://pinupbd.blog/ has become a central hub worth exploring. This platform isn’t just another affiliate site – it’s a dedicated blog offering news, reviews, tutorials, and expert tips tailored specifically for Bangladeshi users interested in the Pin-Up gaming ecosystem.
The blog provides detailed insights into how to register and deposit safely using local methods like bKash, Nagad, and Rocket. It also walks readers through the latest promotions, bonuses, and updates across Pin-Up’s casino and sportsbook platforms. Whether you're curious about the newest slot releases or want to learn how to place smarter bets on cricket or football, the blog provides step-by-step guidance that’s easy to understand.
Additionally, keeps users updated on changes in gaming laws, platform security, and responsible gambling measures in Bangladesh. With a clean design, helpful visuals, and frequently updated content, this site has become an essential resource for both beginner and seasoned gamblers who want to make informed decisions while enjoying their favorite games online.3 -
Losing access to a $250,000 cryptocurrency wallet felt like my worst nightmare come true. One moment, I was clicking what seemed like a routine link; the next, I was locked out of my funds with no way back in. The panic that set in was overwhelming. Frantic and fearing that my money was lost forever, I started researching solutions and stumbled upon Digital Web Recovery. From the very first interaction, I knew I was in good hands, Their team handled my case with remarkable professionalism, offering clear communication and genuine reassurance. They didn’t make any exaggerated promises but instead walked me through their recovery process step by step, making sure I understood how they would tackle my situation. Their use of advanced forensic tools was impressive, and it became clear they were experts in recovering lost crypto, It wasn’t long before they delivered results beyond my expectations. Not only did they recover every cent of the $250,000 I thought I’d never see again, but they also provided me with invaluable advice on how to secure my wallet and prevent similar incidents in the future. Their transparency in pricing and dedication to my case were refreshing, and I felt reassured every step of the way, If you’ve ever found yourself locked out of your cryptocurrency wallet and think your funds are gone for good, don’t lose hope. Digital Web Recovery is the team that will get you through it, with professionalism, expertise, and an approach that inspires trust, CONTACT INFO; Website; https: // digitalwebrecovery. com WhatsApp;+13433003465
-
What is the best crypto recovery company? HACKER NEMO RECOVERY is the best
Reaching out to HACKER NEMO RECOVERY begins with a simple consultation, where potential clients can discuss their situation and explore possible recovery strategies. The dedicated team at HACKER NEMO provides guidance throughout the entire process, ensuring that victims are informed and supported every step of the way. By taking these proactive measures and enlisting the help of professionals, victims can reclaim their financial stability and restore their peace of mind.
Email -; Nemohackpro @ planetmail . n e t
WhatAspp ; 1 (30, 2) 203, 71 211 -
Contact: Morphohack@cyberservices. com This is the email that changed everything for me.
I thought my $88,000 in Bitcoin was lost forever. After exhausting every possible recovery method, resetting passwords, contacting exchanges, and searching through old files. I was at a complete loss. It felt like all hope was gone.
Then, I came across a review about MORPHOHACK CYBER SERVICES and their expertise in recovering lost Bitcoin. At first, I was skeptical. After all, I had already tried everything. But desperation pushed me to take a chance, and I reached out.
From the moment I contacted them, I was impressed by their professionalism and clear communication. They asked for the necessary details, explained the recovery process step by step, and reassured me that they had helped many others in my situation. Within just a few hours, to my absolute disbelief, they successfully recovered every last bit of my Bitcoin!
The relief and gratitude I felt were overwhelming. I had already accepted that my funds were gone, but thanks to Morphohack Cyber Service, I got everything back quickly and securely.
If you’ve lost Bitcoin due to a scam, forgotten passwords, or any technical issue, don’t give up hope. Morphohack Cyber Service has the skills, experience, and technology to help you recover what’s rightfully yours. I highly recommend their services to anyone in need of crypto recovery.
Morphohackcyber. com1 -
DIGITAL TECH GUARD RECOVERY: YOUR PAETNER IN BITCOIN RECOVERY
I'm incredibly grateful that I did enough research to recover my stolen cryptocurrency. When I first fell victim to a scam, I felt hopeless and lost, unsure if I'd ever see my funds again. A few months ago, I was approached by someone on Telegram who claimed to have a lucrative investment opportunity in cryptocurrencies. They promised huge returns and played on my emotions, making it seem like a can't-miss chance. I was so eager to make my money grow that I didn't fully vet the situation, and unfortunately, I ended up falling for the scam. They guided me to invest a significant amount of money, and soon after, I realized I had been duped. The scammers blocked me, and my funds were gone. I felt devastated. All of my savings had been wiped out in what seemed like an instant, and the feeling of being taken advantage of was crushing. I spent days researching how to recover my stolen cryptocurrency but found the process to be overwhelming and complicated. I was starting to lose hope when I came across Digital Tech Guard Recovery. At first, I was skeptical about reaching out to a cryptocurrency recovery company, but after reading testimonials and researching their reputation, I decided to give them a try. I contacted Digital Tech Guard Recovery, and I was immediately reassured by their professionalism and expertise. They took the time to listen to my situation, and they were honest about what could and could not be done. What stood out to me was their deep understanding of cryptocurrency fraud and the recovery process. They were able to track down the scammers and initiate the recovery of my stolen funds, step by step. Thanks to Digital Tech Guard Recovery, I was able to get back a significant portion of the cryptocurrency I had lost.
WhatsApp: +1 (443) 859 - 2886 Email @ digital tech guard . com
Telegram : digital tech guard recovery . com website https : // digital tech guard . com1 -
law courses in bangalore:The ABBS School of Law has started from the academic year 2018 – 19 under the aegis of Samagra Sikshana Samithi Trust. The Trust started the institution with a cherished ambition to impart legal education which is a very important step towards spreading legal awareness and empowering the helpless in the society. The College is affiliated to Karnataka State Law University, Hubballi and recognized by Bar Council of India, New Delhi. The college has a Governing Council duly constituted by Samagra Sikshana Samithi Trust. All the members of the Governing Council are accomplished academicians, legal luminaries, management experts and persons of eminence in public service. Governing Council meets regularly two times a year to review academic and administrative work.visit:http://abbslaw.edu.in/
-
Recovering Your Stolen Crypto: The Ultimate Guide to Puran Crypto Recovery (PCR) and Reclaiming Your Digital Assets
The world of cryptocurrency is filled with opportunities, but it also comes with risks. By staying informed, taking proactive steps to protect your assets, and choosing trusted recovery services like Puran Crypto Recovery, you can safeguard your digital wealth and restore your financial security.
If you’ve been a victim of crypto theft or loss, don’t wait. Reach out to Puran Crypto Recovery today and take the first step toward reclaiming what’s rightfully yours. Remember, in the world of cryptocurrency, vigilance and professional support are your best defenses against scams.1 -
RECOVER FROM CRYPTO TRADING BROKER WITH TECHNOCRATE RECOVERY
Memory can be a tricky thing, especially when it comes to passwords. I experienced this firsthand when I completely forgot the password to my Bitcoin wallet holding $100,000. It was a chaotic week in our household, compounded by the fact that my daughter was sick, and I had set the password during this particularly stressful time. With sleepless nights and constant worry weighing on my mind, the password I had chosen became a distant memory, lost in the whirlwind of my chaotic life. Desperate for help, I turned to TECHNOCRATE RECOVERY. I knew I needed expert assistance to get back into my wallet, but I also felt embarrassed about my situation. When I called them, their compassionate team quickly put me at ease. They listened patiently as I explained my predicament and the stress I had been under. Their understanding made me feel less alone in my struggle, and I was grateful to find people who genuinely cared about my situation. As they began working on my case, I was amazed at their expertise. They guided me through the recovery process step by step, using their advanced tools and techniques to help me regain access to my wallet. Throughout this journey, their professionalism shone through, and I felt a sense of reassurance knowing I had a knowledgeable team on my side.
Contact These Experts
Email : te chnocratrecovery(@) contractor. net
WhatsApp Contact: +1573 3563 708 -
CRYPTOCURRENCY FRAUD HACKER FOR HIRE: BLOCKCHAIN CYBER RETRIEVE
While I was browsing online for some school-related information, I stumbled upon a recommendation for a service called Blockchain Cyber Retrieve. At first, I didn’t think much of it. However, after reading several positive reviews and testimonials from people who had used their services, I decided to reach out. I had been struggling with a problem of my own: I had 2 BTC stuck in my binary options trading account, and no matter what I did, I couldn’t withdraw the funds. I felt completely frustrated and helpless.I had tried everything to resolve the issue on my own, but nothing worked. That's when I decided to give Blockchain Cyber Retrieve a shot, based on all the positive feedback I had seen. I reached out to them, and to my surprise, their team responded almost immediately. They were professional and clearly knew what they were doing. They explained the whole process to me step-by-step, and I felt reassured that I was in good hands.Within just 24 hours of contacting them, I was able to successfully withdraw my 2 BTC. I couldn’t believe how quickly and efficiently they were able to recover the funds I had thought were lost forever. Their team made the entire process smooth, and I was kept updated every step of the way. It was clear that they were experts in handling situations like mine, and they took care of everything with professionalism. I am incredibly grateful to Blockchain Cyber Retrieve for coming through for me when I didn’t know where to turn. They helped me get my funds back in a way that I couldn’t have done on my own. The entire experience was hassle-free, and I didn’t have to worry about a thing.Interestingly, just the other day, I saw a segment on NBC 5 Dallas, where they mentioned Blockchain Cyber Retrieve. They highlighted how the service had helped people recover their funds from binary brokers, especially those who had trouble withdrawing their money. This news made me even more confident in my decision to reach out to them. If you're having trouble withdrawing funds from your binary options account or are facing similar issues, I highly recommend Blockchain Cyber Retrieve. They really came through for me, and I’m so thankful for their help.
Contact Blockchain Cyber Retrieve
WhatsApp: + {1 (520) 564-8300}
Don’t let scammers get away with your hard-earned money. If you’re struggling with withdrawals, reach out to Blockchain Cyber Retrieve today and take the first step toward getting your funds back.
I know firsthand how hopeless it feels to think your money is gone forever, but there is hope. With the right team by your side, you can fight back and recover what’s rightfully yours.1 -
Losing access to a £250,000 cryptocurrency wallet felt like my worst nightmare come true. One moment, I was clicking what seemed like a routine link; the next, I was locked out of my funds with no way back in. The panic that set in was overwhelming. Frantic and fearing that my money was lost forever, I started researching solutions and stumbled upon GRAYWARE TECH SERVICES . From the very first interaction, I knew I was in good hands. Their team handled my case with remarkable professionalism, offering clear communication and genuine reassurance. They didn’t make any exaggerated promises but instead walked me through their recovery process step by step, making sure I understood how they would tackle my situation. Their use of advanced forensic tools was impressive, and it became clear they were experts in recovering lost crypto. What stood out the most was their transparency and commitment to delivering results without resorting to empty guarantees. They kept me informed at every stage, making sure I knew exactly what they were doing and why.It wasn’t long before they delivered results beyond my expectations. Not only did they recover every cent of the £250,000 I thought I’d never see again, but they also provided me with invaluable advice on how to secure my wallet and prevent similar incidents in the future. Their attention to detail and thoroughness ensured that I walked away not only with my funds but with the knowledge to safeguard them moving forward.Their transparency in pricing and dedication to my case were refreshing. Unlike other services I had considered, GRAYWARE TECH SERVICES didn’t try to upsell or pressure me into additional services. I felt reassured every step of the way, knowing that my case was being handled by professionals who genuinely cared about my financial well-being.If you’ve ever found yourself locked out of your cryptocurrency wallet and think your funds are gone for good, don’t lose hope. GRAYWARE TECH SERVICES is the team that will get you through it, with professionalism, expertise, and an approach that inspires trust. Whether you’re dealing with a minor hiccup or a major loss, they are the ones to turn to for recovery solutions you can rely on.
3 -
ASSET RESCUE SPECIALIST - RECOVER LOST BITCOIN/USDT/CRYPTO/ETH/USDC
ASSET RESCUE SPECIALIST stands as the leading specialist in contract development dedicated to recovering stolen cryptocurrency. With a track record of assisting victims across the world, ASSET RESCUE SPECIALIST has successfully facilitated the retrieval of over $2 million worth of Bitcoins that were misappropriated by fraudulent investment platforms. Their standout achievement lies in their unique triangulation method, which has emerged as a game-changer in the field of cryptocurrency recovery.The problem of cryptocurrency theft is increasingly prevalent, with scam platforms continuously evolving their techniques to deceive unsuspecting investors. This makes it imperative for victims to seek effective solutions swiftly. ASSET RESCUE SPECIALIST offers a sophisticated approach to this issue, providing a beacon of hope for those who have fallen prey to such schemes.The core of ASSET RESCUE SPECIALIST success is their specialized triangulation method. This innovative approach involves a multi-step process that enables the precise tracking and recovery of stolen assets. By employing advanced technology and leveraging deep industry knowledge, they are able to pinpoint the location of misappropriated funds with a high degree of accuracy. This method has not only proven to be effective but has also set a new standard in the recovery of stolen cryptocurrency.For those who have been scammed or lost their cryptocurrencies, ASSET RESCUE SPECIALIST offers a structured process to initiate recovery. The first step involves opening a detailed case with their team. This is crucial, as it allows the recovery specialists to assess the situation thoroughly and devise a tailored strategy to recover the stolen funds. In particular, the ASSET RESCUE SPECIALIST approach is not just about recovering funds; it is about providing a sense of security and closure to victims. Their commitment to ensuring that every victim gets their money back is reflected in their meticulous work and proven results. With their expertise, they have established themselves as a trusted ally for those navigating the complex and often opaque world of cryptocurrency recovery.if you have been a victim of a cryptocurrency scam or have experienced a loss of funds, it is crucial to act immediately. ASSET RESCUE SPECIALIST offers a dependable and effective solution to recover your stolen assets. By initiating a case with their team, you take the first critical step towards reclaiming your stolen cryptocurrency and ensuring that justice is served.
Contact Email : assetrescuespecialist[@]qualityservice . com
WhatsApp No : +1 (579) 300 1389
3 -
Crypto Recovery Services: Legitimate crypto recovery companies - Recover lost Crypto
I am pleased to report that my lost investment of $110,000 has been successfully recovered, all thanks to the exceptional services provided by CAPTAIN WEBGENESIS CRYPTO RECOVERY CENTER . One of the most reassuring aspects of working with CAPTAIN WEBGENESIS CRYPTO RECOVERY CENTER was their commitment to transparency. From our initial consultation to the final stages of the recovery process, they kept me informed every step of the way. This level of communication helped rebuild my trust and hope.. CAPTAIN WEBGENESIS CRYPTO RECOVERY CENTER truly epitomizes excellence in their field and I am sincerely thankful for their assistance in resolving this matter efficiently and effectively.
Contact:
EMail (Captainwebgenesis@ hackermail. com)
Visit website: (captainwebgenesis. com)2 -
DON'T LET SCAM DEFINE YOUR FUTURE — RECLAIM YOUR MONEY FROM FAKE INVESTMENTS USING TRUST GEES HACK EXPERT
I'm incredibly grateful that I did enough research to recover my stolen cryptocurrency. When I first fell victim to a scam, I felt hopeless and lost, unsure if I'd ever see my funds again. A few months ago, I was approached by someone on Telegram who claimed to have a lucrative investment opportunity in cryptocurrencies. They promised huge returns and played on my emotions, making it seem like a can't-miss chance. I was so eager to make my money grow that I didn't fully vet the situation, and unfortunately, I ended up falling for the scam. They guided me to invest a significant amount of money, and soon after, I realized I had been duped. The scammers blocked me, and my funds were gone. I felt devastated. All of my savings had been wiped out in what seemed like an instant, and the feeling of being taken advantage of was crushing. I spent days researching how to recover my stolen cryptocurrency but found the process to be overwhelming and complicated. I was starting to lose hope when I came across Trust Geeks Hack Expert. At first, I was skeptical about reaching out to a cryptocurrency recovery company, but after reading testimonials and researching their reputation, I decided to give them a try. I contacted Trust Geeks Hack Expert Website: w w w :// trust geeks hack expert . c o m /, and I was immediately reassured by their professionalism and expertise. They took the time to listen to my situation, and they were honest about what could and could not be done. What stood out to me was their deep understanding of cryptocurrency fraud and the recovery process. They were able to track down the scammers and initiate the recovery of my stolen funds, step by step. Thanks to Trust Geeks Hack Expert, I was able to get back a significant portion of the cryptocurrency I had lost. Their team was responsive, transparent, and diligent in their efforts. I was kept informed throughout the entire process, and they made sure I felt supported every step of the way. I truly can't thank them enough for their dedication and for restoring my faith in the possibility of recovery after such a devastating loss. I will definitely recommend Trust Geeks Hack Expert to anyone who has fallen victim to a cryptocurrency scam. T e l e G r a m: Trust geeks hack expert & w h a t's A p p +1 7 1 9 4 9 2 2 6 9 31 -
Being a gym instructor at Zaki's New Life Fitness Gym, I’ve always believed in strength and resilience both physically and mentally. But I never thought I’d be tested in such an unexpected way. I’ve always tried to manage my finances responsibly, but when my cousin approached me with an opportunity in cryptocurrency, I never imagined I could fall victim to a scam. He spoke passionately about a “golden opportunity” promising incredible returns. Trusting his judgment, I invested $68,000.50. What followed was a nightmare. I soon realized the platform was a complete scam. The money was gone. I felt helpless, thinking I’d never recover my hard-earned savings. Then, a fellow gym member recommended Digital Resolution Services. At first, I was skeptical. But with nothing to lose, I decided to reach out. Their team exceeded all expectations professional, compassionate, and incredibly knowledgeable. They guided me through the recovery process step-by-step. To my astonishment, they successfully recovered the full $68,000.50. It felt like a miracle. I am so grateful for their dedication and expertise. Digital Resolution Services gave me hope when I thought everything was lost. I highly recommend them to anyone who has been a victim of fraud. They gave me a second chance, and I’ll always be thankful.
Contact Digital Resolution Services:
====================================
Email: digitalresolutionservices (@) myself. c o m
WhatsApp: +1 (361) 260-8628
Email: digitalresolutionservices007 (@) zohomail. c o m
Stay healthy2 -
As cryptocurrency continues to grow, so do the risks. Scammers are becoming more sophisticated, leaving many victims unsure of where to turn after losing their hard-earned digital assets.
Apex Intervention specializes in crypto recovery services, helping individuals trace, track, and reclaim lost or stolen cryptocurrency. Our experts understand the complexities of blockchain technology and how online fraudsters operate.
Whether you’ve been misled by fake investment platforms or fallen victim to a phishing scam, we’re here to help you fight back.
Why Choose Apex Intervention?
Proven track record of successful recoveries
In-depth knowledge of crypto scams and blockchain systems
Personalized support every step of the way
Get in Touch Today:
Email: info@apex-intervention.online
WhatsApp: +1 (365) 740-5227
Website:apex-intervention.online
Take action now. Don’t let scammers walk away with your crypto.1 -
You don’t realize how much trust you place in technology until it fails you or until someone exploits it. I learned this the hard way when my crypto wallet, containing over $87,000 in Bitcoin and Ethereum, was drained in an instant. A clever scam disguised as an official update cost me everything I had worked so hard to save.
At first, I believed what everyone said: “Once it’s gone, it’s gone.” The blockchain doesn’t forgive mistakes, and recovery felt like a fantasy. But desperation pushed me to keep looking, and that’s when I found DIGITAL RESOLUTION SERVICES. From the start, they were different: no false promises, no hype, just a practical and transparent approach. They explained how stolen funds could be traced, even through the complexity of blockchain transactions.
What followed was nothing short of incredible. Their team worked tirelessly, tracking the stolen assets step by step, wallet by wallet. They coordinated with exchanges, flagged suspicious accounts, and kept me updated at every turn. It felt like they were as invested in getting back my funds as I was.
Weeks later, I got the email I thought I’d never see: “We’ve recovered your funds.” Seeing my wallet balance restored felt like a second chance at everything I thought I’d lost. It wasn’t just about the money it was about reclaiming my future and finding hope again.
DIGITAL RESOLUTION SERVICES didn’t just recover my cryptocurrency; they gave me the ability to move forward without the weight of that loss holding me back. If you’ve lost crypto and feel like there’s no hope, don’t give up. There are people who know how to fight for you. I’m living proof that even in the world of crypto, recovery is possible with the right team.
Contact: Digital Resolution Services
Email: digitalresolutionservices (@) myself. com
WhatsApp: +1 (361) 260-8628
Forever grateful,
Monica dresdner
1 -
SURVIVING THE BYBIT HACK HOW CRYPTO RECOVERY CONSULTANT SECURE MY ASSETS
It was the kind of morning that left my heart pounding in my chest. My phone buzzed with a series of alerts—emails, messages, all talking about one thing: Bybit had been hacked. North Korean hackers had breached the exchange, and the total losses were over 1.5 billion dollars in cryptocurrency, Ethereum to be precise. My stomach churned as I read, realizing I was one of the many affected. I had been an avid Ethereum investor, with a substantial amount of my savings tied up in the coin. The idea of losing it all was unbearable. But panic was no help, so I immediately began searching for solutions. That’s when I stumbled across a company that specialized in crypto recovery and securing your asset, CRYPTO RECOVERY CONSULTANT. Their website promised to assist with situations just like mine. Skeptical but desperate, I reached out, hoping for a miracle. To my surprise, a representative called me within minutes. They explained that they had experience securing wallets from compromised exchanges and securing coins during massive hacks like the Bybit breach. After a brief consultation, they assured me they could secure my Ethereum by implementing a stronger security system that would block any unauthorized access. They guided me step-by-step, helping me transfer my assets to a more secure wallet and setting up additional layers of protection that I never even knew existed. Thanks to their swift action and expertise, I felt a weight lift from my shoulders. The hackers wouldn’t be able to touch my Ethereum now. My coins were safe, protected by multi-signature authentication, cold storage, and state-of-the-art encryption. Without CRYPTO RECOVERY CONSULTANT, I would have lost everything. Their quick thinking and advanced security measures saved my assets from the grasp of cybercriminals. I couldn’t be more grateful. Now, I sleep soundly, knowing that my Ethereum is safe, all thanks to them. cryptorecoveryconsultant312[@]zohomail,,,com cryptorecoveryconsultant[@]cash4u,,,com
1 -
RECOVER FUNDS FROM CRYPTO SCAM//CRANIX ETHICAL SOLUTIONS HAVEN
The bitter irony of decentralized finance struck hard: the very features that made cryptocurrency appealing anonymity, irreversible transactions now made my loss feel permanent. The moment I realized my digital wallet had been compromised, a cold wave of dread washed over me. $25,000 in bitcoin, gone. I scoured forums, filled out police reports, and resigned myself to the grim statistics of crypto theft. Then I discovered CRANIX ETHICAL SOLUTIONS HAVEN, and everything changed. Unlike the shadowy "recovery experts" populating dark web forums, CRANIX ETHICAL SOLUTIONS HAVEN projected immediate professionalism. Their website detailed a rigorous forensic process, utilizing advanced blockchain analysis tools and cyber investigation techniques akin to those employed by law enforcement agencies. Still, I hesitated until learning they operated on a no recovery, no fee basis. The financial risk was entirely theirs, not mine. The recovery process unfolded with military precision. Within 72 hours of submitting my case details, their team had mapped the thief's digital footprint across multiple wallets. They explained each step in clear terms: how they identified exchange deposit points, collaborated with compliance teams at trading platforms, and strategically froze funds. By week three, the impossible happened. A triumphant email notified me that my full $25,000 had been recovered. What truly astonished me wasn't just their technical skill, but their human approach. At every step, my case manager provided updates with the urgency of someone who understood this wasn't just about money, it was about restoring faith in the crypto ecosystem. Where other firms hide behind jargon, CRANIX ETHICAL SOLUTIONS HAVEN educated me, turning my victimhood into empowerment. Today, my bitcoin sits securely in a new wallet, protected by layers of safeguards they recommended. To anyone staring at a zero balance where their life savings once lived: this is not the end. CRANIX ETHICAL SOLUTIONS HAVEN doesn't just retrieve digital assets, they restore hope. Their existence proves that even in the Wild West of blockchain, justice still wears a white hat. If you find yourself in a similar situation, don’t lose hope. Take action, secure your assets, and consider reaching out to CRANIX ETHICAL SOLUTIONS HAVEN. You deserve a chance at redemption.
WHATSAPP: + 44 7460 622 730EMAIL: cranixethicalsolutionshaven @ post . com2

