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 - "missing #9"
-
Yesterday's (scheduled and adhoc) meetings:
10:30-11:00
11:00-11:30
12:30-1:30 (adhoc)
1:30-2:30
4:30-5:00
6:00-6:20 (adhoc)
Today's (scheduled) meetings:
9:30-10:00
11:00-12:00
12:30-1:15
1:30-2:30
Tomorrow's meetings include a 1:1 with my boss who will invariably ask why I'm not done on this "should take a week" project that I've had for a week, despite that he just unblocked me on yesterday morning, and I've had nothing but meetings since...
Fucking hell.
They fill my day with shit spaced out just enough to waste practically my entire freaking day so I can't get anything done, conveniently forget this, and then have the audacity to yell at me for not finishing my tickets. Of course I didn't finish! You all were too busy blabbing at me every day for the past fucking week! (Oh, and do they listen if I have something to say? Of course they fucking don't.)
Also, as a secondary rant, the product douchebag files tickets (usually complex as hell tickets worded to appear trivial) with enough missing information to make missing large sections of them easy. If I ask him for clarification, he tells me to read the ticket, and if I insist, he gets all exasperated and quickly zooms through the site faster than I can follow, shows maybe half of what's in the ticket, and asks why I don't know how to do any of this yet. After I finish his shit ticket (and true to his douchebag nature) he blames me for missing several of those pieces he never outlined or showed, and insists that I obviously don't test anything. And because that's clearly not douchey enough, the fucking sack of shit also goes behind my back and trashtalks me to my coworkers, tells them he can't trust me to do a simple fucking thing, and that he's given up on me.
What the FUCK is wrong with these people?28 -
this.title = "gg Microsoft"
this.metadata = {
rant: true,
long: true,
super_long: true,
has_summary: true
}
// Also:
let microsoft = "dead" // please?
tl;dr: Windows' MAX_PATH is the devil, and it basically does not allow you to copy files with paths that exceed this length. No matter what. Even with official fixes and workarounds.
Long story:
So, I haven't had actual gainful employ in quite awhile. I've been earning just enough to get behind on bills and go without all but basic groceries. Because of this, our electronics have been ... in need of upgrading for quite awhile. In particular, we've needed new drives. (We've been down a server for two years now because its drive died!)
Anyway, I originally bought my external drive just for backup, but due to the above, I eventually began using it for everyday things. including Steam. over USB. Terrible, right? So, I decided to mount it as an internal drive to lower the read/write times. Finding SATA cables was difficult, the motherboard's SATA plugs are in a terrible spot, and my tiny case (and 2yo) made everything soo much worse. It was a miserable experience, but I finally got it installed.
However! It turns out the Seagate external drives use some custom drive header, or custom driver to access the drive, so Windows couldn't read the bare drive. ffs. So, I took it out again (joy) and put it back in the enclosure, and began copying the files off.
The drive I'm copying it to is smaller, so I enabled compression to allow storing a bit more of the data, and excluded a couple of directories so I could copy those elsewhere. I (barely) managed to fit everything with some pretty tight shuffling.
but. that external drive is connected via USB, remember? and for some reason, even over USB3, I was only getting ~20mb/s transfer rate, so the process took 20some hours! In the interim, I worked on some projects, watched netflix, etc., then locked my computer, and went to bed. (I also made sure to turn my monitors and keyboard light off so it wouldn't be enticing to my 2yo.) Cue dramatic music ~
Come morning, I go to check on the progress... and find that the computer is off! What the hell! I turn it on and check the logs... and found that it lost power around 9:16am. aslkjdfhaslkjashdasfjhasd. My 2yo had apparently been playing with the power strip and its enticing glowing red on/off switch. So. It didn't finish copying.
aslkjdfhaslkjashdasfjhasd x2
Anyway, finding the missing files was easy, but what about any that didn't finish? Filesizes don't match, so writing a script to check doesn't work. and using a visual utility like windirstat won't work either because of the excluded folders. Friggin' hell.
Also -- and rather the point of this rant:
It turns out that some of the files (70 in total, as I eventually found out) have paths exceeding Windows' MAX_PATH length (260 chars). So I couldn't copy those.
After some research, I learned that there's a Microsoft hotfix that patches this specific issue! for my specific version! woo! It's like. totally perfect. So, I installed that, restarted as per its wishes... tried again (via both drag and `copy`)... and Lo! It did not work.
After installing the hotfix. to fix this specific issue. on my specific os. the issue remained. gg Microsoft?
Further research.
I then learned (well, learned more about) the unicode path prefix `\\?\`, which bypasses Windows kernel's path parsing, and passes the path directly to ntfslib, thereby indirectly allowing ~32k path lengths. I tried this with the native `copy` command; no luck. I tried this with `robocopy` and cygwin's `cp`; they likewise failed. I tried it with cygwin's `rsync`, but it sees `\\?\` as denoting a remote path, and therefore fails.
However, `dir \\?\C:\` works just fine?
So, apparently, Microsoft's own workaround for long pathnames doesn't work with its own utilities. unless the paths are shorter than MAX_PATH? gg Microsoft.
At this point, I was sorely tempted to write my own copy utility that calls the internal Windows APIs that support unicode paths. but as I lack a C compiler, and haven't coded in C in like 15 years, I figured I'd try a few last desperate ideas first.
For the hell of it, I tried making an archive of the offending files with winRAR. Unsurprisingly, it failed to access the files.
... and for completeness's sake -- mostly to say I tried it -- I did the same with 7zip. I took one of the offending files and made a 7z archive of it in the destination folder -- and, much to my surprise, it worked perfectly! I could even extract the file! Hell, I could even work with paths >340 characters!
So... I'm going through all of the 70 missing files and copying them. with 7zip. because it's the only bloody thing that works. ffs
Third-party utilities work better than Microsoft's official fixes. gg.
...
On a related note, I totally feel like that person from http://xkcd.com/763 right now ;;21 -
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 -
Hesitated for a while before posting this, as I don't like to whine in public but this should be therapeutical
Beware, it's a #longread
Years ago, I thought about how cool it'd be to have conversation-based interactive fiction on my phone. I remember showing early prototypes to my ex in 2012. It took me over 2 years to build up the courage to make it my priority and to take time off. FictionBurgers.com was born.
A few weeks in, a friend of mine forwarded me a link to Lifeline. I was devastated. I literally spent 2 days cursing my past self for not making a move sooner.
I soldiered on, worked 7 months straight on it. Now the tech is 90-95% finished, content is maybe 60% finished and I just... gave up. Every other week now, similar projects are popping up. I'm under-staffed and under-financed compared to them. Beyond the entertainment space, "conversation-based" is hot stuff in 2016, and I still can't seem to know what to do with what I have.
I feel like I had this fantastic opportunity and squandered it, which makes me miserable.
Anyway, just so you get some cheese with my whine, here are a few lessons I learned the hard way:
Lesson #1 : Don't go it alone. I thought I could hack it, and for over 7 months, I did. But sooner or later, shit gets to you, it's just human. That's when you need someone; just so that their highs compensate your lows and vice versa. Most of the actual writing was done by a freelancer (and he did AMAZING WORK, especially considering that I couldn't pay him much) but it's not the same as a partner, who's invested same as you.
Lesson #1.5 : Complementary skills. Just like my fiction project failed because I was missing a writer partner, my fallback plan of getting into conversational tech hit the skids for lack of a bizdev partner. It's great to stick among devs when ranting, but you need to mingle with a variety of people. Some of them are actually ok, y'know :)
Lesson #2 : Lean Startup, MVP. Google those terms if you're not familiar with them. My mistake here (after MVPing the shit out of the tech) was to let my content goal run amok : what made my app superior to the competition (or so I reasoned) was that it would allow for conversations with multiple characters! So I started plotting a story... with 9 characters. Not 2 or 3. NINE FREAKING CHARACTERS! Branching conversations with 9 characters is the stuff of nightmare -- and is the main reason I gave up.
Lesson #3 : Know your reasons. I wasted some much time early on, zig-zaging between objectives:
"I'm just indulging myself"
"No, I really want it to be a project that pays off"
"Nah, it's just a learning opportunity"
"Damn, why is it bothering me so much that someone else is doing the same thing ?"
"Doesn't matter, I just mine finished"
"What a waste of time !!"
etc etc
And it's still a problem now that I'm trying to figure out what to do!
So anyway, that's my story, thanks for readin'
Check out chatty.im/player/sugar-wars if you want to test the most advance version.
Also, I've also tagged this #startupfail, if any of you fine people want to share the lessons you've dearly paid to learn!13 -
(Written March 13th at 2am.)
This morning (yesterday), my computer decided not to boot again: it halts on "cannot find firmware rtl-whatever" every time. (it has booted just fine several times since removing the firmware.) I've had quite the ordeal today trying to fix it, and every freaking step along the way has thrown errors and/or required workarounds and a lot of research.
Let's make a list of everything that went wrong!
1) Live CD: 2yo had been playing with it, and lost it. Not easy to find, and super smudgy.
2) Unencrypt volume: Dolphin reports errors when decrypting the volume. Research reveals the Live CD doesn't incude the cryptsetup packages. First attempts at installing them mysteriously fail.
3) Break for Lunch: automatic powersaving features turned off the displays, and also killed my session.
4) Live CD redux: 25min phonecall from work! yay, more things added to my six-month backlog.
5) Mount encrypted volume: Dolphin doesn't know how, and neither do I. Research ensues. Missing LVM2 package; lvmetad connection failure ad nauseam; had to look up commands to unlock, clone, open, and mount encrypted Luks volume, and how to perform these actions on Debian instead of Ubuntu/Kali. This group of steps took four hours.
6) Chroot into mounted volume group: No DNS! Research reveals how to share the host's resolv with the chroot.
7) `# apt install firmware-realtek`: /boot/initrd.img does not exist. Cannot update.
8) Find and mount /boot, then reinstall firmware: Apt cannot write to its log (minor), listed three install warnings, and initially refused to write to /boot/initrd.img-[...]
9) Reboot!: Volume group not found. Cannot process volume group. Dropping to a shell! oh no..
(Not listed: much research, many repeated attempts with various changes.)
At this point it's been 9 hours. I'm exhausted and frustrated and running out of ideas, so I ask @perfectasshole for help.
He walks me through some debugging steps (most of which i've already done), and we both get frustrated because everything looks correct but isn't working.
10) Thirteenth coming of the Live CD: `update-initramfs -u` within chroot throws warnings about /etc/crypttab and fsck, but everything looks fine with both. Still won't boot. Editing grub config manually to use the new volume group name likewise produces no boots. Nothing is making sense.
11) Rename volume group: doubles -'s for whatever reason; Rebooting gives the same dreaded "dropping to a shell" result.
A huge thank-you to @perfectasshole for spending three hours fighting with this issue with me! I finally fixed it about half an hour after he went to bed.
After renaming the volume group to what it was originally, one of the three recovery modes managed to actually boot and load the volume. From there I was able to run `update-initramfs -u` from the system proper (which completed without issue) and was able to boot normally thereafter.
I've run updates and rebooted twice now.
After twelve+ hours... yay, I have my Debian back!
oof.rant nightmare luks i'm friends with grub and chroot now realtek realshit at least my computer works again :< initrd boot failure8 -
Online tutorial pet peeves
————————————
My top 10 points of unsolicited ranting/advice to those making video tutorials:
1. Avoid lots of pauses, saying “umm” too much, or other unnecessary redundancy in speech (listen to yourself in a recording)
2. If I can’t understand you at 1.5 - 2x playback speed and you don’t already speak relatively quickly and clearly, I’m probably not going to watch for long (mumbling, inconsistent microphone volume, and background noise/music are frequent culprits)
3. It’s ok to make mistakes in a tutorial, so long as you also fix them in the tutorial (e.g., the code that is missing a semicolon that all of a sudden has one after it compiles correctly — but no mention of fixing it or the compiler error that would have been received the first time). With that said, it’s fine to fix mistakes pertinent to the topic being taught, but don’t make me watch you troubleshoot your non-relevant computer issues or problems created by your specific preferences (e.g., IDE functionality not working as expected when no specific IDE was prescribed for the tutorial)
4. Don’t make me wait on your slow computer to do something in silence—either teach me something while it’s working or edit the video to remove the lull
5. You knew you were recording your screen. Close your email, chat, and other applications that create notifications before recording. Or at least please don’t check them and respond while recording and not edit it out of the video
6. Stay on topic. I’m watching your video to learn about something specific. A little personality is good, but excessive tangents are often a waste of my time
7. [Specific to YouTube] Don’t block my view of important content with annotations (and ads, if within your control)
8. If you aren’t uploading quality HD recordings, enlarge your font! Don’t make me have to guess what character you typed
9. Have a game plan (i.e., objectives) before hitting the record button
10. Remember that it’s easier to rant and complain than to do something constructive. Thank you for spending your time making tutorial videos. It’s better for you to make videos and commit all my pet peeves listed above than to not make videos at all—don’t let one guy’s rant stop you from sharing your knowledge and experience (but if it helps you, you’re welcome—and you just might gain a new viewer!)14 -
Allright, I'm pissed.
Warning: more than 4k characters written by a non native english speaker ahead.
Legend:
Storytelling
> Short summary of the current situation
> "Something being said"
> (Something being thought)
* Actions *
-- Background --
In an attempt to reorganize my desktop I accidentally deleted a folder I called "development". In there I stored links to all my IDEs (Not sure how you call these in english), but also some workspaces like unity (Not much stuff there, processing (just some hobby stuff) AND Eclipse (FUCKING EVERYTHING RELATED TO SCHOOL WEB DEVELOPMENT). Now 3 days have passed and I realized this important folder was missing. Cleared that windows trash the instant I deleted the trash on my desktop.
> Shit, Regret
Install a file restore programm. Do every possible search. Nothing found.
> Big shit
Deadline was in like 3 days. Week was fucking rough so:
> "Screw this, the teacher nevet corrects the assignments and also fuck JSP"
Fast forward 2 months to last week. Teacher starts checking assignments.
> Fuck
* Sees pattern: Only students with missing or bad marks are checked. *
* Feels save *
Teacher approaching me while working on current projects.
* Doesn't feel save anymore *
> "Well, I'ld like to see your THAT programm"
> Well fuck
* Tells the truth *
> "Well that's unfortunate, but I must write a mark. Do you really have nothing to show?"
* Remember that I worked on the school pcs when I started *
> (Better than nothing. Gotta try it)
* Teacher checks programm, not pleased *
> (Fuck me, but at least it's over...)
> Nope
* Teacher calls me over *
> "With the mark I had to write today you can't reach that good mark even with a good examination, what are we gonna do about this?"
> "Well, there were other assignments that were never checked. Could we replace that mark with one of those?"
* Teacher agrees *
> (Srly bless this guy for that support)
My best choice was an Android app we had to develop during December in pairs. I did the front end (90% of the whole work) and my partner the backend (10 %). I also did 30 % of these 10 %, because I had to review the shit he wasn't able to debug himself.
> brainlogic.exe provided by windows vista
This distribution was partly my fault since I overestimated the work needed for the backend, but also the fault of that fucker. I mean, he didn't tell me the professor already provided 90 % of the backend...
Rest of the week was really busy (always 1 or 2 things to study for each day, workout and family stuff).
Yesterday (It's past 12 already) I arrived at ~9 pm in the dorm I could finally start reviewing my code.
Internet gets shut down at 10 pm.
Gotta hurry.
* Opens project *
* Sees half a year old code *
* Fights urge to puke *
> (Alright I gotta do this. For the mark!)
* waits for gradle to index files *
* Remembers the fact that I haven't opened Android Studio in the last 2 months *
For those who don't develop with android studio: This is an equivalent to ~10k windows updates waiting to be installed
> (Well, gotta work with this kinda old version)
"gradle sync failed"
> ( Ok, just restart it. You're fine )
* Android Studio doesn't react anymore and/or renders *
* Waits 5 min *
* Restarts laptop *
* Android Studio is reacting again*
"gradle is synching"
9:45 pm: gradle is done and I can finally compile my app
> FML
* Sees App launched on phone *
* Almost pukes again *
> (This was the assigment for the UX chapter, so design doesn't matter)
UX is decent. Proceeds with testing stuff. Save paths work, but some bugs can be caused by going of it
* fixes as much as possible *
* Takes quick look at backend *
Date date = new Date (GregorianCalender.getInstance().getTimeInMillis());
C'mon, I asked you to be the backend. You got 90% of the methods already written by the teacher and had 2 months to write the interfaces to my Front end AND you come up with shits like that.
Note: this example is a minor example of brainlogic.exe
I did what I could to make improve my situation. Hopefully he doesn't discover the bugs. And If it's a backend bug then I could't care less, since that was not my job!
Wish me luck for today!undefined web development jsp school assignment not my job fuck up android studio tldr; not getting paid enough for this shit gradle blame backend9 -
Worst exp. on a collab/group project?
Had a few, here is one.
Worked with a dev team (of two devs) in Norway to begin collaboration on providing a portal into our system (placing orders, retrieving customer info, inventory control, etc)
They spoke very good English, but motivation was the problem. Start the day around 10:00AM...take a two hour lunch...ended the day at, if I was lucky, 4:00PM (relative to Norway time). Response time to questions took days, sometimes weeks. We used Skype, which helped, but everything was "Yea...I'll do that tomorrow...waiting on X....I have a wedding to go to, so I'll finish my part next week."
I didn't care so much, I had other projects to do, but the stakeholders pounded me almost everyday demanding a progress report (why aren't you done yet...etc..etc.)
The badgering got so bad I told the project owner (a VP) if he wanted this project done by the end of the year, the company would have to fly me to Norway so I personally push things along.
When real money was on the line, he decided patience was warranted.
A 3 month project turned into 9, and during a phone meeting with the CEO in December
O: "Thanks guys, this project is going great. We'll talk again in February. Bye."
PM: "Whoa...what! February!"
<sounding puzzled>
O: "Um..yes? It's Christmas time. Don't you Americans take off for Christmas?"
PM: "Yes, but not until Christmas. Its only December 12th. Your taking the whole month of December and January for Christmas?"
O:"Yes, of course. You Americans work too hard. You should come over here and see how we celebrate. Takes about a month so we can ease back into the flow of things."
<Jack is the VP>
PM: "Jack wanted this project completed by the end of the year, that is what everyone agreed to."
O:"Yes, I suppose, but my plane is waiting on me. Not to worry, everything will be fine."
<ceo hangs up>
PM: "Oh shit..oh shit..oh shit. What are you going to do!?"
Me: "Me!?..not a darn thing. Better go talk with Jeff."
<Jeff is the VP>
J: "This is unacceptable. You promised this project would only take a few months. I told you there would be consequences for not meeting the deadline."
PM:"But..but...its not our fault."
J: "I don't care about fault. I care about responsibility. I've never had to fire anyone for not meeting a deadline, but .."
Me: "Jeff, they are in Norway and no one is working this project for the next two months. You've known for months about them dragging their asses on this project. We're ready to go. Services have been tested and deployed. Accounting has all the payment routing ready. Only piece missing is theirs."
J: "Oh. OK. Great job guys. I guess we'll delay this project until February."
<leave the office>
PM: "Holy shit I'm glad you were there. I thought I was fired."
Me: "Yea, and that prick would have done it not giving a crap that it's Christmas."
<fast forward to Feb>
O: "Our service provider fell through, so I'm hosting with another company. You guys know PHP? Perl? I don't know what they called it, but it sounded so cool I bought the company."
PM: "You bought what? Are we still working with Z and B?"
O:"Yea, sort of. How's your German? New guy only speaks German."
PM: "Um, uh... no one here speaks German"
O:"Not to worry, I speak German, French, and Italian. I'll be your translator."
PM: "What? French and Italian?"
O: "On my trip to France I connected with a importer who then got me in touch with international shipper in Italy. I flew over there and met a couple really smart guys than can help us out. My new guy only speaks German, J only speaks French, and R speaks Italian, Russian, and a little English. Not to worry, I'm full time on this project. You have my full attention."
We believe the CEO has/had some serious mental issues, including some ADD. He bailed within the first month (took another vacation to Sweden to do some fishing) and left me using Google Translate to coordinate the project. Luckily, by the end, the Norwegian company hired a contractor from England who spoke German and hobbled together the final integration.3 -
To all the Java Teams that died during the fucking Mobile Civil War, We salute you!
1. Millionaire 2011
2. Splinter Cell: Double Agent
3. Dragon Ball Z Saiyan Fighters
4. Moto Girls
5. 24 Special Ops
6. Thor: The Dark World
7. Kung Fu Panda
8. Worms 2011: Armageddon
9. Asphalt 4: Elite Racing
10. Resident Evil - The Missions
11. Ghost Recon: Future Soldier
12. Spider-Man 3
13. Need for Speed - Undercover 3D
14. Contra 4
15. Rambo on Fire
16. Fast and Furious 6
17. Counter Strike 3D
18. Men in Black 3
19. X–Men Origins: Wolverine
20. WWE Legends of Wrestlemania 3D
21. 3D Fight Night: Round 4
22. 3D Ultimate Rally Championships
23. Assassin's Creed
24. Zuma
24. Die Hard 4
25. 3D WWE Smackdown Vs RAW 2009
26. Prince of Persia 3: The Two Thrones
27. 3D Fight Night: Round 3
28. Super Mario Bros
29. Bruce Lee - Iron Fist 3D
30. Naruto Adventure: A New Apprentice
31. FIFA 2011
32. James Cameron's Avatar
33. Racing 2: The Real Car Experience
34. King Kong
35. Gangstar City
36. Iron Man 3
37. XIII 2: Covert Identity
38. 4x4 Extreme Rally 3D
39. Real Football Manager 2013
40. Splinter Cell: Conviction
41. 2008 Real Football 3D
42. Assassin's Creed 2
43. Hummer 3D
44. American Gangster
45. Real Football 2009
46. 3D Football: Real Madrid 2010
47. Xtreme Dirt Bike
48. Tekken Mobile
49. A Good Day to Die Hard
50. The Amazing Spider-Man 2
51. Asphalt 3: Street Rules 3D
52. GTA IV Mobile
53. 3D Contr Terrorism
54. Real Football 2015
55. The Amazing Spider-Man
56. Contra 4 (2009)
57. Mortal Kombat 3D
58. Bad Girls
59. Assassin's Creed: Brotherhood
60. Need for Speed: Hot Pursuit 3D
61. God of War
62. PES 2009 (Pro Evolution Soccer)
63. Ultimate Street Football
64. Assassin's Creed: Revelations
65. Prince of Persia: The Forgotten Sands
66. 3D Super taxi driver
67. Gangstar 2: Kings of LA
68. Asphalt 6: Adrenaline
69. Assassin's Creed III
70. Danger Dash
71. Real Football 2014
72. Gangstar - Crime City
73. Gangstar 3: Miami Vindication
74. Modern Combat 4: Zero Hour
75. Zuma's Revenge!
We know you guys did your best but the world is a fucking shit hole. We still remember your hard work!
76. Mission Impossible 3
77. Gangstar Rio: City of Saints (I guess these were your last days at work. Well-done guys!)
78. Real Football 2010
79. Real Football 2011 (Real Soccer)
80. Real Football 2012
81. PES 2011 (Pro Evolution Soccer)
82. Ultimate Mortal Kombat 3 (My Favorite)
83. And those missing the list.
WE SALUTE YOU ALL!!! ∠(^ー^)4 -
Quick Tutorial: How to find a missing bug.
0) Wake up & have breakfast
1) Goto work
2) Do your job until the end of the working day
3) Make a backup
4) Shutdown your PC
5) Stand up
6) Go to the office door
7) Grab the door
8) Now the phone rings
9) Turn and go back
10) Take the phone
11) Now you get the bug report
This is a well approved method.
It always works!3 -
Shit, again a long rant...
It all started 9 months ago.
We had a meeting with our group staff (5 people). Back the we discussed, if we should only work online or still send files around with mail.
Sure I suggested to run everything on a root server, would be the best performance/cost choice.
The president and the accounted refused, they said it's still working, why change. Payment will only be trough banktransfer and everybody keeps files local.
Back then I told them, that they will have sooner or later a problem. Files will be missing and bills not payd.
Last week we had a new meeting:
- Some of the group missed files.
- Some bills were unpaid
So now I have time until march to find and finish a groupware/collaboration tool.
I need to run member administration and payment online, this should be finished in October 2018. It should also do accounting.
Im really planing to use WooCommerce for this, I'm really crazy, I know! But I dont have time for that shit!
I work fulltime beside this and almost have no time to code something like that.
Well this week I demanded a memberlist, so I can plan a CRM database.
I received a word file as memberlist.
I asked them if this is a joke, right?!
They said no, thats the list. All the Data was mixed and some user details missing.
I HAD 3 HOURS TO GET IT DOWN IN EXCEL. WHY ARE YOU DOING THIS??? I REALLY WANNA PUNCH YOU ALL IN YOUR FACE!
When I sended it, I didn't receive a response or thanks.
The joke, I'm doing this stuff for free. I volontered, to make something big...
Im really going to shit Lego Bricks next... -
My friend works for my favorite company Apple, his boss ranted Apple is about giving options.
I figured out some missing options in my iPhone X
Need to listen music: sorry can't plug in a headphone we removed that option 😉
Other phones have option to unlock through face or finger print (oops we removed one option)
No option to take a photo in 16:9 aspect ratio (4:3 only)
No option to change themes or layout to personalize your phone
Any positive thoughts on this option statement? If I missed some option examples 😅11 -
never before have I been happy to be asked to work overtime, but for once, fuck yeah...
Bit of back story, I am tech lead on a massive project that has been run like a complete shit show, the PM who also happens to be the brains behind the project seems to think we are miracle workers and for the first 9/10 months of the project would make significant, like delete a weeks worth of code and start over changes, 3-5 times per week. There are features for the v1 release that have been built in excess of 5 times. I have been saying since October that even without all his constant changes, we will NOT make the deadline, and naturally as is part of my job I argued against every unnecessary feature he tried to implement, eventually he pulled me into a meeting to tell me how much he values my opinion, I need to stop arguing with him and he does not want to work with yes men (I have a rant about that convo already).
I believe our CEO finally started smelling a rat as he insisted on joining our daily stand-ups, during which said PM scripted some lovely stories to disguise the fuckup we are in, and since has assigned another PM to take over and do proper project management and risk analysis.
That is where the email comes in, a lot of the work assigned to me will miss the deadline by a month, honestly I am impressed that it is by so little and so few people will not be missing it, but anyway, he probably spun a few stories there too.
So I spent part of the work compiling the most perfect surgical response as not not actively throw him under the bu, but create a quite a few questions that they hopefully as, as himself and the CEO where cc'd into the mail.
And the jist is, the deadline itself was still impossible and 8 of the 10 tasks assigned to be have ZERO back-end whatsoever, and those tasks are about 80/90% integration to said non-existent back-end, some of those services and data structures have not even been planned yet and we are a week past the deadline and 3 weeks from the just as useless extension. -
!rant just a question. Sorry in advance for the long post.
I've been working in IT in Windows infrastructure and networking side of things for my entire career (5years) and recently was hired for a role working with AWS.
We use Macs and we use *nix distros for days. I've only ever dabbled for 'funsies' before with Linux because every previous job I held was a Windows house and f*** all else.
I'm just wondering if anyone here might have some insights as to a great way to learn the Linux environment and to learn it the right way. I'm not the best Windows admin ever and will never claim to be, but I have seen stuff that other people have done that makes me want to swing a brick at someone's head. And I feel that with all of the setup wizards and the "We'll just do it for you." approach that Windows has used since forever it allowed enough wiggle room for people that didn't know what they were doing to f*** sh*t up royally. I'm not familiar enough with Linux to know if this is also a common problem. I know that having literal full-access to every file in your OS can cause a n00b like myself to mess up royal, thus the question about learning Linux the right way.
I vaguely understand the organization of the folders and file structure within Linux, and I know some very basic commands.
sudo rm -rf /*
Just kidding
But All of my co-workers at my new job are like mighty oaks of knowledge while I'm a tiny sapling. And at times I've been intimidated by how little I know, but equally motivated to try and play catch-up.
In addition to all of this, I really want to start learning how to program. I've tried learning multiple times from places like codecademy.com, YouTube tutorials, and codeschool.com but I feel like I'm missing the lesson that explains why to use a certain operation instead of another. Example: if/else in lieu of a switch.
I'm also failing to get the concept of syntax in certain languages I've tried before. Java comes to mind real fast.
The first language I tried teaching myself was C++ from YouTube. I ended up having a fever dream that night about coding and woke up in a cold sweat. Literally, like brain overload or something. I was watching tutorials for like 9 hours straight.
Does anyone know of a training resource that will explain, in terms a 5 year old would understand, what the code is doing and why? I really want to learn but I'm starting to lose steam cause I'm just not getting it.
Thank you in advance for any tips guys and gals. I really appreciate it. Sorry for the ridiculously long questions.5 -
My experience with Fedora:
1. Copy to thumb drive
2. Find out the thumb drive wasn't good enough
3.copied to another thumb drive
4.Successfully booted
5.start installation
6.Shit forgot to partition my NTFS drives
7.Back to Windows to do it
8.back to install again
9.Start installation, setup partitioning
10. Didnt notice that my EFI partition wasn't detected
11.Fedora tries to install its bootloader in God knows what place
12.bootloader install fail
13.reboot comp
14. Missing operating system
15. Spend my whole fucking night repairing the boot partition and the problem was a fuckin missing BOOT flag
16. No grub
17.spent another decade trying to fix it
18. Give up and get some sleep
Probably Fedora will have to wait for another day, tiring experience7 -
Im currently doing my first project as a junior dev. I'm working with asp.net core and I had only used regular asp.net before. The project owner who was the guy that used to own the company I work for had only asked me if i was versed in asp.net and said that it was what I was going to work with. So from the start I'm a little bumed out. The difference isn't enourmous, but still.
First day, he says that we are going to use TFS for version handling (god damnit) then he says he has started a bit and has done the first push... And we're missing files. But he's asleep by the time i do the pull (9 hour timezone difference).
Next day he has gotten all the files up and I also get to know that I will be working alone and still have to use TFS.
A few days later he tells me I'm gonna present the first version the next week...
Oh, and did I mention that this is for one of the biggest companies in the world that the very top managers will use. Including CEO, cto etc4 -
If languages had slogans...
1) Java -- Buy one get two for free on your delicious NPEs.
2) C -- I burn way too much calories talking, let's do some sign language. Now see over there... 👉
3) Python -- Missing semi-colon? Old method. Just add an extra space and watch the world burn.
4) C++ -- My ancestors made a lot of mistakes, let's fix it with more mistakes.
5) Go -- Meh. I can't believe Google can be this lazy with names.
6) Dart -- I'm the new famous.
7) PHP -- To hide your secrets. Call us on 0700 error_reporting(0)
8) JavaScript -- Asynchronous my ass!
9) Lua -- Beginners love us because arrays start at 1
10) Kotlin -- You heard right. Java is stupid!
11) Swift -- Ahhh... I'm tasty, I'm gonna die, someone please give me some memory.
12) COBOL -- I give jobs to the unemployed.
13) Rust -- I'm good at garbage collection, hence my name.
14) C# -- I am cross-platform because I see sharp.
15) VB -- 🙄
16) F# -- 😴8 -
How to run PHP in a container :
1. Begin a docker file for an existing php cron app (when all you know is php, everything looks like a php app)
2. Set the FROM.. Apt get update .. Do composer install
3. Builds the image
4. Discover I need git
5. Add git to apt get install step
6. Builds the image
7. Launch the php script
8. Fatal : use of undefined constant SOL_UDP
9. Opens the source code of the third party. The there's no mention of where that constant is from.
10. Spend many minutes online to find what's missing.
11. Find the PHP sockets page about that option. Digs into the documentation to find out that's missing from the installed PHP.
12. Find out I need to add a step to install the socket extension in my docker file.
13. Build the image again
14. Execute it, finally it works
15. Remember why I hate php
(for brevity I've omitted the even more complex part of having to set up zlib)
How to install node js in a container image:
FROM node:8
ADD package.json
RUN npm install7 -
How do you mentally check out and stop caring at a toxic job?
Been at this big fintech for 4 months. Small teams, impossible deadlines, undefined tasks, missing specs, constant context switching. Everyone's doing overtime/weekends while management sets you up to fail then blames you. Performance evaluations every 3 months.
Was literally about to quit tomorrow but need the paycheck. So I'm turning this into an experiment - I'm a recovering people-pleaser who's never set boundaries at work. 9 years in my career, never been fired, I left multiple times due to burnout in the past.
Time to see what happens when I stop caring about pleasing incompetent managers and their made-up deadlines. Work at my own pace until they get tired of me. How do you actually do this though?
- How to not give into false sense of urgency induced stress?
- Ask for proper specs without feeling guilty?
- Work slower and not hate yourself for it?
- Push back on unrealistic expectations?
I'm burned out and need to learn how to be strategically as mediocre as possible for my own sanity.
Anyone been through this mindset shift?4 -
Been supporting the marketing department for 9 months. And they didn't make any revenue/traction.
Now I'm missing my pay upgrade because of that :/1 -
Worked some OT this weekend to get a project over the finish line. Got all my tests passing once again. Ready for a PR, but I had a few questions about some missing members I was expecting to initialize on my results.
"Oh you you just need to update the PublishedLanguage package."
"Yeah. I'm on the latest version: <package.service.name * 0.1.7-alpha.4>"
"Oh, that one is rubbish and should have been removed last week. you want <package.service.stupidfuckingdifferentname * 0.3.0-alpha.9>"
godfuckingdammit. of course, every class is completely different now. i literally get to re-do my sunday. on a fucking monday. -
I was about to have a screenshare presentation of a month-long work over Skype...
Hours before the presentation I got bored and upgraded from Xorg to Wayland for some reason the universe doesn't want to disclose...
Tried to call a friend to check if everything is working and the screenshare feature was missing! 😑 I thought Skype fucked up, tried Hangouts, still not working, tried praying to saint Ubuntu to somehow please let it work one time. It did fucking not.
My gosh, 30 minutes before the presentation and I was preparing the whole environment on Windows. I had never felt so stressed in my life! 😰
Investigating after the presentation informed me that screensharing only works on XOrg, not on Wayland.
Worst last-minute decision ever. *#-##-:$;"+3($(!#@/)#9"+(2(#1 -
We’re only random people living in random places, speaking random languages, eating random food, sleeping, studying and working random hours. Traveling to random points on a sphere.
Just random range is different.
Just random stuff happens on crossroads of two random dots and the entropy speed ups or slows down.
Nothing special at all.
Just a finite state machine iteration.
I mean the amount of effort we put into explanation of infinity is outstanding.
What if there is no infinity at all ?
What if infinity is just misunderstanding of our interpretation of the world around us. It’s just pixels, resolution, gaussian splatting, quantum state, you name it.
Hey man the world is flat. Just put it to the 2d space. How many space you need from a simulation perspective where your patient eyes can only see up to certain amount of light particles per second on a shitty lens.
Propose a world optimization techniques by slowing down subject perception, tiredness introduced. Compress memory, sleep introduced. Limit neurons, cpu power assigned. Deploy on cloud - put it to life. Exit 0 body failure. Exit 1 suicide. Kill -9 killed by tty from ip EARTH.X.Y
What you can do to make the world around this planet alive? Make it blink.
We developers are lazy and I believe that nature is even more lazy than us.
You think you’re going to elevator right now ? You’re going to the preloader. Looking at the window equals playing video from playback. Never goes live, just precomputed fsm. Cars, trains, airplains ? Preloaders everywhere. Highways to split traffic to cities and communication. The road and cities planning department is a matrix maintenance department. And don’t get me started about space.
Space is empty because it’s not even finished. So they put it all behind glass called milky way. You know how glass looked 500 years ago ? It was milky so it’s milky way so we don’t see shit.
If the space would be finished I’ll be starting writing this text from mars, finished it and sent from earth but no it’s light years guys, light years is not a second for a matter. Light year is a second of the the injected thoughts exchange only. Thoughts of the global computer called generative AI that they introduced on local computing devices called cloud.
Even the preloader system is not present, they left us with the one map and overpopulated demo. What a shit hole.I bet they’re increasing temperature right now to erase this alpha build and cash out. Obviously so many bugs here that his one can’t be fixed anymore. To many viruses.
Hope for 0days to start happening so we can escape using time travel or something.
I bet they cut a budget or something, moved the team to other projects. Or even worse solar system team got layoff off because we are just neurons that ordered to do it. And now we’re stuck in some maintenance mode, no new physics no new thoughts to pursue, just slow degeneration. I would pay more for the next run and switch to other galaxy far far away where they at lest have more modern light speed technology.
What do you think about it Trinity ? Not even worth wasting your time for that. No white rabbit this time.
I do not recommend this game at this stage of early access.
- only one available map despite promises for expansions over the years no single dlc arrived,
- missing space adventures
- no galaxy travel mode only a teaser trailers of what you can do in other “universes”
- developers don’t respond to complains
- despite diversity of species and buildings at first sight world looks to generic
- instead of new features bots with mind manipulation, AB testing and data harvesting was introduced
- death anti cheat mode installed -
RECOVER SCAMMED BITCOIN THROUGH → → SPARTAN TECH GROUP RETRIEVAL
The day I lost my life savings of $59,000 in Ethereum to a fraudulent investment scheme still haunts me. I had been so careful, or so I thought, in researching the opportunity and the individuals behind it. But in the end, their slick presentation and promises of outsized returns proved to be nothing more than an elaborate ruse, leaving me financially devastated and emotionally shattered. I was in a complete state of despair following the deception. Not only was the loss of such a large amount of money financially devastating, but it also had a profound personal impact. It was a gut-punch that left me reeling because I had worked so hard over the years to accumulate that nest fund. As I tried to pick up the pieces and figure out my next steps, I was overwhelmed by a sense of helplessness and uncertainty. Where could I turn for help? Who could I trust to guide me through this ordeal? The thought of navigating the complex world of cryptocurrency recovery and legal recourse was daunting, and I felt utterly alone in my struggle. It was at that point that I discovered SPARTAN TECH GROUP RETRIEVAL then contact them on this Email: spartantech (@) c y b e r s e r v i c e s.c o m, an entity that focuses on assisting victims of cryptocurrency theft and fraud. Initially, I was dubious since I had already been let down by deceptive claims and hollow guarantees. But I decided to get in touch because I was fascinated by their strategy and the client endorsements I had read. I knew right away that I had chosen the proper partner when I first made contact. My worries were promptly allayed by the SPARTAN TECH GROUP RETRIEVAL team, who listened to my case with compassion and understanding. In order to try to recover my missing Ethereum, they described the procedure they would follow to look into the theft, track down the money that was taken, and cooperate with law enforcement. These weren't just a bunch of tech-savvy amateurs – they were seasoned investigators and legal experts who had honed their skills over years of dealing with cases like mine. They walked me through every step of the process, keeping me informed and involved every step of the way. As the investigation progressed, I was amazed by the level of detail and diligence the SPARTAN TECH GROUP RETRIEVAL team displayed. They left no stone unturned, meticulously combing through blockchain records, financial transactions, and online footprints to piece together the puzzle of what had happened to my money. But the SPARTAN TECH GROUP RETRIEVAL team wasn't deterred. They worked tirelessly, collaborating with law enforcement agencies and financial institutions around the world, to try and recover as much of my lost Ethereum as possible. It was a long and arduous process, filled with setbacks and frustrations, but they never gave up. And then, after 2 days of painstaking work, the breakthrough came. Through their dogged persistence and innovative investigative techniques, the SPARTAN TECH GROUP RETRIEVAL team was able to trace a significant portion of the stolen funds and initiate the process of recovering them. It was a moment of pure elation, a glimmer of hope in the midst of the darkness that had enveloped my life. Talk to SPARTAN TECH GROUP RETRIEVAL via WhatsApp:+1 (971) 4 8 7 -3 5 3 8 OR Telegram:+1 (581) 2 8 6 - 8 0 9 2
14 -
LOST USDT AND ETHEREUM RECOVERY EXPERT CONTACT SPARTAN TECH GROUP RETRIEVAL
The day I discovered I had lost my 210,000 Bitcoin, I was overcome with a sense of hopelessness that I will never get over. My sorrow was instantaneous, and I was troubled by the possibility that I might never get my possessions back. I spent weeks dwelling on the situation's bleakness and mentally reliving my error. The psychological toll was intolerable, and it seemed like my hope of getting back what I had lost was getting more and farther away. That’s when I came across Spartan Tech Group Retrieval. At first, I was hesitant—after all, I had tried everything I could think of to recover my Bitcoin with no luck. But something about their professionalism and the positive reviews I found gave me a sliver of hope. I decided to reach out and see if they could help. I knew I had made the correct choice as soon as I got in touch with them. In addition to their expertise, the staff at Spartan Tech Group Retrieval showed a great deal of empathy for my predicament. They calmed me at every stage and provided a detailed explanation of the procedure. They tackled the assignment with tenacity and accuracy, and it was clear that they sincerely cared about helping me get my missing Bitcoin back. The waiting was agonizing, but throughout the entire process, the Spartan Tech Group Retrieval team kept me updated, alleviating some of the anxiety that had consumed me. When the day finally came, and I received the message that my 210,000 BTC had been successfully recovered, it felt like an entire weight had been lifted from my shoulders. The joy and relief I experienced were indescribable—what seemed impossible was now a reality. Thanks to the Spartan Tech Group Retrieval team's unwavering efforts, I moved from feeling hopeless to ecstatic. In addition to returning my missing Bitcoin, they gave me hope, which I had feared was lost forever. My perspective was totally changed by the event, and I will always be appreciative of their professionalism, tolerance, and knowledge. Spartan Tech Group Retrieval is an excellent option if you ever find yourself in a similar situation. They demonstrated to me that recovery is always possible with the correct support and that no circumstance is too dire. I can never express how much I appreciate their service. Send them a DM for assistance via; WhatsApp:+1 (971) 4 8 7 - 3 5 3 8
Email: spartantechretrieval (@) g r o u p m a i l .c o m
Telegram:+1 (581) 2 8 6 - 8 0 9 2
Greetings. Spartan Tech Group Retrieval
4 -
GET HELP FROM THE BEST CRYPTOCURRENCY RECOVERY EXPERT SPARTAN TECH GROUP RETRIEVAL
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
On a chilly winter night, I discovered the heartbreaking fact that my $52,000 USD bitcoin investment had disappeared. As I struggled to comprehend that my hard-earned money was gone, panic and frustration took over. I had placed my faith in the erratic realm of cryptocurrencies, only to have it collapse. I looked to the internet for a remedy since I was desperate for assistance. At that point, I discovered SPARTAN TECH GROUP RETRIEVAL, a business that specializes in recovering cryptocurrency funds that have been lost. At first, I wasn't sure if they could actually assist me, but their website's evaluations and testimonies gave me hope. I communicated with SPARTAN TECH GROUP RETRIEVAL, outlining my predicament and the sum of money I had lost. They told me that they could assist and, to my relief, reacted quickly. I was first dubious, but at this point, I had nothing to lose. To find the missing bitcoins and apprehend the thieves, the SPARTAN TECH GROUP RETRIEVAL team put in countless hours over the course of the following few weeks. They tracked the digital trail the criminals left behind using state-of-the-art technology and their knowledge of cryptocurrencies. As the days went by, I sensed a spark of optimism starting to grow within of me. I received frequent reports and progress updates from the SPARTAN TECH GROUP RETRIEVAL team, which kept me informed at every stage. Their commitment and professionalism were very impressive. After what seemed like a lifetime, SPARTAN TECH GROUP RETRIEVAL finally gave me the news I had been waiting for: my lost bitcoins had been successfully recovered. It was unbelievable to me. My eyes filled with tears of relief and thankfulness as I expressed my sincere gratitude to the staff for their diligence and hard work. I was beyond grateful for SPARTAN TECH GROUP RETRIEVAL support in recouping my lost investment. Not only had they restored my faith in the world of cryptocurrency, but they had also restored my trust in humanity. Their kindness and determination had saved me from financial ruin and restored my peace of mind. I couldn't stop thanking the team at SPARTAN TECH GROUP RETRIEVAL for their invaluable assistance. They had gone above and beyond to help me, and I would forever be grateful for their expertise and professionalism. As I reflected on the ordeal, I realized that sometimes we need to fall in order to rise stronger than before. The experience had taught me valuable lessons about trust, perseverance, and the power of never giving up. I vowed to be more cautious in my future investments and to always seek professional help when needed. I also made a promise to pay it forward and help others in need, just as SPARTAN TECH GROUP RETRIEVAL had helped me. In the end, I emerged from the ordeal not only with my lost bitcoins recovered, but with a renewed sense of gratitude and a deeper appreciation for the humanity and kindness that still exists in this world. SPARTAN TECH GROUP RETRIEVAL had truly been my saving grace, and I would be forever grateful for their support in my time of need.
2 -
I had all but given up hope after multiple failed attempts to recover my lost Bitcoin. I had poured countless hours and resources into trying to track down those elusive digital coins, but each attempt ended in bitter disappointment. The sting of losing such a valuable investment weighed heavily on me, and I felt utterly powerless to reclaim what was rightfully mine. Just when I had resigned myself to the devastating reality that my Bitcoin was gone forever, a glimmer of hope emerged in the form of Trust Geeks Hack Expert This specialized service promised to leverage their expertise and state-of-the-art tools to locate and retrieve my lost cryptocurrency, no matter how dire the situation may have seemed. Skeptical yet desperate, I reached out to them, praying that they would be the lifeline I so desperately needed after enduring one crushing letdown after another. To my immense relief and gratitude, the Wizard team At Trust Geeks Hack Expert got to work diligently, leaving no stone unturned in their meticulous investigation. Through their advanced techniques and unwavering determination, they were able to successfully track down and recover my missing Bitcoin, restoring what I had resigned myself to losing forever. In the wake of countless disappointments, Trust Geeks Hack Expert proved to be the light at the end of the tunnel, reviving my faith and allowing me to reclaim what was rightfully mine. I will be forever thankful for their exceptional service and the peace of mind they were able to provide after I had all but given up hope. To anyone out there who feels hopeless or defeated by the idea of recovering their lost Bitcoin or cryptocurrency, I urge you to consider this service. Trust Geeks Hack Expert provided me with the expertise and determination I lacked, and they never gave up when I was ready to. If you’re stuck in the same frustrating position I was, I can’t recommend them enough. They gave me a lifeline, and for that, I will always be grateful. I’m not saying that everyone’s experience will be the same. Recovery is never guaranteed in cases like these, and there are no shortcuts. But for me, Trust Geeks Hack Expert was the key to unlocking the door to what I thought was a lost future. And now, as I reflect on everything that has happened, I’m reminded that sometimes, even in our darkest moments, there’s still a way out—if you just keep searching for it. For assistances reach Trust Geeks Hack Expert Via E m a i l= Trust8 geeks hack expert @ fast service .. c o m & W h a t's A p p = +1 7 1 9 4 9 2 2 6 9 3 ----> TeleGram=Trustgeekshackexpert
Thank you.4 -
CONTACT A HACKER FOR CRYPTO SCAM RECOVERY,VISIT SALVAGE ASSET RECOVERY
At Salvage Asset Recovery, the team specializes in recovering a wide range of digital assets, including Bitcoin, Ether, stable coins, non-fungible tokens (NFTs), and various other cryptocurrencies. In today’s fast-evolving digital world, the need for effective recovery solutions is more critical than ever. Their services are specifically tailored to assist clients dealing with fraud, Bitcoin scams, and cases where digital assets are deliberately concealed or misappropriated. Salvage Asset Recovery’s strength lies in its team of industry pioneers who have contributed to shaping the legal and regulatory frameworks around crypto assets. What truly sets them apart is their extensive network of reputable investigators, forensic tracers, expert witnesses, and government advisory consultants. They also work closely with trusted insolvency practitioners, crypto custodians, leading exchanges, and insurance providers. This robust network allows them to deliver a seamless, end-to-end recovery service capable of handling even the most complex cases. From the moment assets go missing, Salvage Asset Recovery is dedicated to guiding clients through every step of the recovery process. They understand the urgency and emotional weight of such situations and leverage their expertise to maximize the chances of a successful outcome. Their approach is not only comprehensive but also tailored to fit the unique challenges and needs of each client, ensuring personalized and effective strategies. In a world where digital assets are increasingly targeted, Salvage Asset Recovery serves as a trusted ally for those seeking Bitcoin and crypto asset recovery. They approach each case with precision and adaptability, always focused on delivering results. Their unwavering dedication to client satisfaction, combined with a deep understanding of the digital asset space, makes them a leader in the industry. Whether facing fraud, scams, or other crypto-related challenges, Salvage Asset Recovery stands ready to help clients reclaim what is rightfully theirs. You can reach out to them. their contact info
WhatsApp+ 1 8 4 7 6 5 4 7 0 9 62 -
LEGIT BTC RECOVERY EXPERT-CONTACT SALVAGE ASSET RECOVERY
CONTACT INFO--WhatsApp+ 1 8 4 7 6 5 4 7 0 9 6
SALVAGE ASSET RECOVERY has emerged as a leading force in the highly specialized field of cryptocurrency recovery, earning widespread recognition for its unwavering dedication to helping individuals and organizations reclaim lost or stolen digital assets. The company has built a reputation for its professionalism, reliability, and advanced technical approach, making it the go-to solution for those facing the devastating consequences of cryptocurrency theft or loss. A standout case that highlights the exceptional capabilities of SALVAGE ASSET RECOVERY occurred when the company was called upon to assist in the recovery of a staggering 61,000 Ethereum (ETH) tokens. This catastrophic loss was the result of a sophisticated and malicious attack, which left the victim grappling with a significant financial setback. However, SALVAGE ASSET RECOVERY sprang into action, deploying its team of seasoned specialists and utilizing cutting-edge tools and techniques to tackle this complex challenge head-on. The process of recovering such a large amount of digital currency was no small feat. The team meticulously analyzed the blockchain, leveraging advanced forensic tools and proprietary algorithms to trace the movement of the missing funds across the decentralized network. They carefully examined each transaction, piecing together the puzzle of how the funds were stolen and where they had been moved. Their relentless pursuit of answers and dedication to transparency allowed them to uncover the perpetrators behind the theft, ultimately leading to the successful recovery of the entire 61,000 ETH. This remarkable achievement not only underscores the technical expertise and ingenuity of SALVAGE ASSET RECOVERY ’ team but also serves as a testament to their commitment to client satisfaction. The process was not just about retrieving the funds—it was about doing so with an unparalleled level of transparency and diligence. Throughout the recovery journey, SALVAGE ASSET RECOVERY maintained clear communication, keeping the client informed at every step and ensuring that the entire process was handled smoothly and professionally. The success of this recovery has further solidified SALVAGE ASSET RECOVERY ’s position as a trusted leader in the cryptocurrency recovery space. For those who have fallen victim to the theft or loss of digital assets, the company provides a reliable, professional approach that instills confidence and peace of mind. With a proven track record of successful resolutions, SALVAGE ASSET RECOVERY continues to be the ultimate solution for anyone seeking to regain control of their digital wealth. Their dedication to restoring lost assets and their commitment to transparency make them a standout choice for cryptocurrency recovery, offering a level of service that exceeds expectations.1 -
REACH OUT TO A POTENTIAL BITCOIN/USDT/ETH RECOVERY EXPERT- HIRE SPARTAN TECH GROUP RETRIEVAL
As a freelancer and part-time cryptocurrency trader, I had built up over $200,000 worth of Bitcoin in my digital wallet. What began as a casual interest in cryptocurrency quickly turned into a profitable venture, helping me cover tuition and living expenses. However, a seemingly small accident during a family holiday in the Maldives nearly led to a catastrophic financial loss. One afternoon, while soaking in the picturesque beauty of the Maldives, I decided to take a selfie to capture the moment. In my excitement, my phone slipped from my hands and shattered on the pavement below. At first, I was upset about losing my device, but soon, a far more alarming realization hit me. I had also lost access to my Bitcoin wallet. My recovery phrase, the key to restoring my funds, had not been stored in a secure location, leaving me with no way to retrieve my wallet. Panic set in as I considered the possibility of losing years of earnings and investments. Determined to find a solution, I began scouring the internet for any service that could help. That was when I came across SPARTAN TECH GROUP RETRIEVAL. Although skeptical about the chances of success, I had nothing to lose, so I reached out to their team on WhatsApp:+1 (971) 4 8 7 -3 5 3 8, explaining my predicament in detail. To my relief, they responded promptly and professionally, assuring me they had the expertise to attempt a recovery. They explained the process clearly, starting with verifying my identity and wallet ownership. Once those steps were completed, their team immediately got to work. Despite the challenges posed by my shattered device and the missing recovery phrase, SPARTAN TECH GROUP RETRIEVAL team demonstrated exceptional skill and persistence. Within just a few days, they successfully recovered my wallet and restored access to my funds. The relief and gratitude I felt were indescribable. This incident was a wake-up call. Beyond recovering my funds, SPARTAN TECH GROUP RETRIEVAL took the time to educate me on the importance of proper security measures. They stressed the need to store recovery phrases in secure offline locations, use hardware wallets, and implement two-factor authentication to safeguard assets against loss or theft. Thanks to SPARTAN TECH GROUP RETRIEVAL, I was able to avoid a disastrous financial setback. Their professionalism, expertise, and guidance not only saved my investment but also prepared me to navigate the crypto world more securely in the future.
INFO ABOUT THE COMPANY>>>> >>
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
3 -
After a catastrophic hack, recovering one's bitcoin holdings can be a difficult and complicated process, but it is possible to recover what was lost with the correct advice and knowledge. In my situation, I was the victim of a very skilled cyberattack that caused my digital assets to instantly disappear from my cryptocurrency wallet. As I struggled with the fact that my financial security had been torn away, panic and despair crept in. But I didn't lose hope, and after doing a lot of research, I found Lee Ultimate Hacker service that is well-known for its capacity to locate and retrieve stolen cryptocurrency. When I contacted their staff, they listened carefully to the specifics of my experience and responded in a kind and sympathetic manner. The Lee specialists started painstakingly tracking the movements of my stolen money, traversing the complex world of cryptocurrency transactions, by utilizing their extensive understanding of blockchain technology and hacking techniques. They pursued the digital trail with unwavering resolve, revealing the intricate network of wallets and exchangers the hackers had employed to hide their activities. The Lee Ultimate team was able to locate my missing assets using their advanced investigative methods and state-of-the-art equipment, which paved the way for the recovery procedure.
What followed was a delicate and intricate operation, as the Lee professionals collaborated with law enforcement agencies and cryptocurrency exchanges to freeze the illicit funds and initiate the retrieval process. This involved navigating a maze of legal and technical hurdles, but the team's expertise and persistence paid off, and eventually, I was overjoyed to see my cryptocurrency holdings restored to my rightful wallet. The sense of relief and restored peace of mind was palpable, and I am forever grateful to the Lee team for their tireless efforts in guiding me through this harrowing ordeal and helping me reclaim what was rightfully mine. For more insight; L E E U L T I M A T E H A C K E R @ A O L . C O M
t e l e g r a m : L E E U L T I M A T E
w h @ t s a p p + 1 ( 7 1 5 ) 3 1 4 - 9 2 4
8 -
WHAT TO DO IF YOUR CRYPTOCURRENCY GOT MISSING? HIRE FUNDS RETRIEVER ENGINEER FOR FAST RECOVERY
It started innocently enough one night, a LinkedIn message from a self-proclaimed "wealth advisor" promising astonishing 300% returns on investments. Intrigued and lured by the prospect of quick wealth, I decided to take the plunge. Fast forward three months, and I found myself staring at a drained wallet, with a staggering $63,500 vanished into thin air. The worst part? Everyone around me had warned me about the dangers of crypto scams, emphasizing that once your money was gone, it was irreversible. Feeling defeated and embarrassed, I initially kept my experience to myself. I thought I had fallen victim to a scam that was beyond recovery. However, as I scoured the internet for any glimmer of hope, I stumbled upon FUNDS RETRIEVER ENGINEER. Skeptical yet desperate, I reached out to their team, hoping for a miracle. To my surprise, FUNDS RETRIEVER ENGINEER didn’t just offer sympathy; they delivered results. Their team of blockchain detectives was well-versed in the intricacies of cryptocurrency transactions. They employed advanced forensic tracing techniques to follow the digital breadcrumbs left behind by my funds. It was a meticulous process, but their expertise shone through as they confronted the shadowy wallets that held my money. As the days passed, I watched in awe as they navigated the complex web of transactions, piecing together the puzzle of my lost funds. Their determination and skill were evident, and I began to feel a flicker of hope. Finally, after what felt like an eternity, they pulled off what I had thought was impossible: a full recovery of my lost investment. If you’re reading this and find yourself in a similar situation, don’t let shame or doubt stop you. Your money isn’t gone; it’s just misplaced. FUNDS RETRIEVER ENGINEER has the tools and expertise to find it. They turned my despair into relief, and I can’t recommend them enough. Don’t wait reach out to them today.
For help
W H A T S A P P: +1 8 0 2 9 5 2 3 4 7 0
EmaIL F U N D S R E T R I E V E R [@] E N G I N E E R. C O M
OR
S U P P O R T @ F U N D S R E T R I E V E R [@] E N G I N E E R. C O M2 -
HOW TO SUCCESSFULLY RECOVER SCAMMED BTC AND ETH WITH THE HELP OF SALVAGE ASSET RECOVERY
A clip titled “Joe Rogan Reveals Secret Ethereum Fork” autopay on YouTube, featuring Rogan’s unmistakable voice praising a supposed “ETH 2.0 upgrade” that promised early investors up to 10x returns. Everything about the video seemed authentic, Rogan's casual tone, the familiar podcast studio, and even commentary from a so-called “blockchain expert.” Skeptical but curious, I clicked the link in the video’s description, which led to a sleek, professional-looking website promoting a limited-time ETH fork token presale. The sense of urgency was palpable. The site displayed endorsements from prominent crypto influencers I already followed, blockchain analytics claiming legitimacy, and a countdown timer steadily ticking toward zero. My fear of missing out overrode my usual caution. Convinced I was getting in on something exclusive, I transferred 50 ETH worth nearly $150,000 at the time to the provided wallet address. In return, I received newly minted “ETH2” tokens. For the next 48 hours, I celebrated what I believed was a smart, early-access investment. Then it all unraveled. The ETH2 tokens suddenly plummeted to zero value. The website vanished without a trace. Soon after, the YouTube video was flagged and removed; it had been a deepfake. Panic set in. I immediately reached out to SALVAGE ASSET RECOVERY, a cryptocurrency forensics firm I’d seen mentioned in security forums. Within hours, their team began tracing the scam. They explained the mechanics: the scammers used a “rug pull” strategy. A convincing deepfake drew in victims, fake tokens were issued, and the moment investments peaked, the thieves drained all liquidity. Using on-chain analysis, SALVAGE ASSET RECOVERY identified the scammers’ wallet addresses and tracked the flow of my ETH through various exchanges. They worked quickly with centralized platforms to freeze the stolen assets, leveraging anti-money laundering protocols. They also filed emergency legal requests, backed by blockchain evidence, to prove the funds were mine. After three tense weeks, they recovered 47.5 ETH, a 95% success rate. The remaining 2.5 ETH had been funneled to anonymous wallets and was unrecoverable. This taught me hard lessons. Deep Fakes are terrifyingly convincing. Urgency is a red flag. And in crypto, acting quickly after a scam is crucial. Now, I double-check everything and I share my story to protect others. Crypto is powerful, but so are its predators. If scammed, don’t give up. With experts like SALVAGE ASSET RECOVERY, recovery is possible.
CONTACT INFO--
TELEGRAM---@Salvageasset
WhatsApp+ 1 8 4 7 6 5 4 7 0 9 62 -
SECURE YOUR STOLEN BITCOIN AND ASSETS WITH SPARTAN TECH GROUP RETRIEVAL
In 2024, I started using Coins io to trade cryptocurrencies, and at first, everything went smoothly. The platform was easy to use, and my assets and transactions appeared secure. I had no issues or complaints. However, things took a turn in mid-2024 when I swapped USDT for SUI. The transaction was confirmed on the blockchain explorer, but SUI never showed up in my Coins io account. I quickly contacted customer support, expecting a swift resolution. They acknowledged the issue and explained they were facing technical difficulties, but assured me that my funds were safe. They recommended several troubleshooting steps, such as refreshing the app, checking my transaction history, and verifying the transaction ID. I followed all their suggestions, but despite my efforts, SUI still wasn’t visible in my account. Weeks Weeks passed, and I followed up with customer service multiple times. Each time, I received similar responses: they were still working on the issue, but it would take longer to resolve. Despite their reassurances, I became increasingly frustrated. My SUI was still missing, and there was no clear timeline for when the issue would be addressed. By December 2024, I reached out to customer service again, hoping for a resolution. This time, the response was blunt and unhelpful. The representative told me they couldn’t provide an estimate on when my funds would be restored and suggested I contact "SPARTAN TECH GROUP RETRIEVAL" for further assistance. At this point, I was skeptical, but I decided to follow their advice. Fortunately, reaching out to SPARTAN TECH GROUP RETRIEVAL on this Email: spartantech (@) c y b e r s e r v i c e s .c o m proved to be the turning point. Their team was professional, responsive, and efficient. Within a short period, they helped me recover my SUI. Their excellent support was crucial in resolving the issue that Coins io's customer service had been unable to. Though the experience was frustrating, it ultimately ended on a positive note, thanks to the assistance of SPARTAN TECH GROUP RETRIEVAL.
CONTACT THEM ON DIFFERENT SOCIAL MEDIA PLATFORM LIKE :
WhatsApp:+1 (971) 4 8 7 -3 5 3 8
Telegram:+1 (581) 2 8 6 - 8 0 9 2
10 -
Recovering From A Wrecking Hack With The Help Of LEE ULTIMATE HACKER
After a mind wrecking hack, recovery of a bitcoin holding can be a cumbersome and a complex process, but with the right knowledge and skill it’s very doable ,I was a victim of a very skilled cyberattack they instantly made my digital assets to disappear in a blink of an eye from my cryptocurrency wallet. i was torn and in despair and I was in panic and desperation i didn’t know where to put my head so I dove research mode and went on all the sites on recovery , that’s where I came across LEE ULTIMATE HACKER service that was renowned for the most complex recovery and retrieval of stolen cryptocurrency. After I made contact with their staff they were very keen and empathetic with my situation ,they carefully analyzed with specific my predicament. The Lee specialist started the recovery process of my stolen money with haste traversing the complex world of crypto currency transaction by utilizing their extensive experience and understanding of blockchain technology ,hacking techniques. They pursed the digital trail of my stolen funds with resolve revealing the intricate network of wallets and exchangers the had deployed to hide their activities. The Lee Ultimate team was able to swiftly locate my missing assets using their advanced investigative methods and state of the art equipment which made the whole process a success. what made Lee Ultimate hacker team different from other recovery experts was they collaborated with law enforcement making sure the criminals were brought to book. I was overjoyed because all my stolen crypto currency were successfully recovered and restored to my account. I could finally have a sigh of relief and exhale after that traumatic experience all thanks to Lee Ultimate Hacker Team.
For more insight and kindly contact :L E E U L T I M A T E H A C K E R @ A O L . C O M
T e l e g r a m : L E E U L T I M A T E
W h a t s A p p + 1 ( 7 1 5 ) 3 1 4 - 9 2 4 83 -
Persisterising derived values. Often a necessary evil for optimisation or privacy while conflicting with concerns such as auditing.
Password hashing is the common example of a case considered necessary to cover security concerns.
Also often a mistake to store derived values. Some times it can be annoying. Sometimes it can be data loss. Derived values often require careful maintenance otherwise the actual comments in your database for a page is 10 but the stored value for the page record is 9. This becomes very important when dealing with money where eventual consistency might not be enough.
Annoying is when given a and b then c = a + b only b and c are stored so you often have to run things backwards.
Given any processing pipeline such as A -> B -> C with A being original and C final then you technically only need C. This applies to anything.
However, not all steps stay or deflate. Sum of values is an example of deflate. Mapping values is an example of stay. Combining all possible value pairs is inflate, IE, N * N and tends to represent the true termination point for a pipeline as to what can be persisted.
I've quite often seen people exclude original. Some amount of lossy can be alright if it's genuine noise and one way if serving some purpose.
If A is O(N) and C reduces to O(1) then it can seem to make sense to store only C until someone also wants B -> D as well. Technically speaking A is all you ever need to persist to cater to all dependencies.
I've seen every kind of mess with processing chains. People persisting the inflations while still being lossy. Giant chains linear chains where instead items should rely on a common ancestor. Things being applied to only be unapplied. Yes ABCBDBEBCF etc then truncating A happens.
Extreme care needs to be taken with data and future proofing. Excess data you can remove. Missing code can be added. Data however once its gone its gone and your bug is forever.
This doesn't seem to enter the minds of many developers who don't reconcile their execution or processing graphs with entry points, exist points, edge direction, size, persistence, etc.2

