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 - "golden"
-
Mother of god, was listening to the US govt hearing of zuckerberg about the recent scandals. The amount of very fucking simple obvious questions he 'could not' answer normally...
Govt person: Would you be willing to change Facebook's business model if this was required for the security and privacy of Facebook users' accounts?
Zuck: I don't understand your question.
Sorry, WHAT?! You don't need particular rocket science to understand what's being asked here. A combination of common sense and knowing the English language and English grammar in combination with maybe having finished some form of education should be enough to understand this ridiculously easy question.
Do you need it written on a golden plate with fucking blue letters in Facebook's font with the S letters as dollar signs while drinking 10 gallons of 'fuck every persons privacy'?!
Or maybe shoving it up your ass in the form of heated/glowing metal letters of 10+ inches in height? We could arrange that as well.25 -
I wrote a Student Information system for my midterm project back in 94 written in Clipper and runs on MS-DOS.
I demoed & explained to the panel of professors how it tracks enrollments, payments, class schedules, grades and attendance of each and every student. Has user authentication, auditing and reporting functionalities.
It has a lite version also written in Clipper that can be installed on a Professor's laptop so that he/she can update records even at home, and would be able to sync with the db at school via a BBS. Telix for DOS (self-taught) was my choice for the BBS as it was shareware, has built-in Zmodem support and comes with it's own programming language called SALT (Script Application Language for Telix) that can be used for automating tasks. The lite version of my project would dump the updates on an ASCII file, compress the file using PKZIP, use the laptop's modem to dial-up the number to the school's BBS and send the file across using Zmodem protocol.
The main version would then download the file(s) from the BBS and proceed to do a sync.
After the doing the demo and answering all their questions the panel asked me to wait outside the room, called me back in after 15mins and told me that I don't have to attend that class for the remainder of the term. The happiness as the my classmates outside of the room gawked at me felt like King Midas himself gave my balls his golden touch.
Then in 97, 2yrs after I graduated, I accompanied my cousins to a different campus of the same school for their enrollment and right there on the bottom of the screen were my initials on a very very familiar UI! They actually used, and were still using, my school project. Needless to say my cousins didn't believe that it was written by me.15 -
The bloke that I share my office with is asleep on the job. Ffs, can I get any support around here?
This working remotely from home thing, just isn’t panning out
13 -
Just for fun I am making an RPG Maker game called "IT Quest" where you go on a 40 hour long quest just to get the security team to modify a user. The game will feature tons of mandatory side quests and a convoluted plot that requires descending into the depths of the server room to find a virgin followed by a sacrificial ritual over the broken fax machine. And ultimately the security team just closes your request without telling you why and you have to fight the final boss of the game, Zeromus who runs security. When you defeat him you get the golden CAT5 cable of time which you beat the person who closed your request with until he reopens it and does his damned job.12
-
TABLE BASED WEB DESIGN
I was surprised there were no rants about this topic before I realized it was more than a decade back 😳
We've never had it better! So to help add a little perspective for all those ranting about what is unarguably the golden age for web developers... let me fill you in on web dev in the late 90's;
JavaScript was a joke. No seriously! - I once got laughed out of the room for suggesting we try use it for more than disabling a button - (I wanted to check out the new XHR request thingy [read AJAX]).
HTML was simple and purely a markup language (with the exception of the marquee tag). The tags were basically just p,ul,ol,h*,form inputs,img and table and html took 10 minutes to learn. Any style was inline and equally crude - anything that wasn't crude could not be trusted and probably wouldn't render at all in most browsers (never mind render correctly).
There were rumors of a style TAG and something called a cascading style sheet which were received with much skepticism since it went against the old ways and any time saved would be lost writing multiple [IE version specific] style sheets for each browser just to get it to work - so we simply didn't.
No CSS meant the only tags you had to work with to create a structured layout were br, hr and table... so naturally EVERYTHING was in nested tables! JS callback hell can't touch this! - it was not uncommon to have 50+ nested tables all with inline style in a single page which would be edited without any dev tools or linting.
You would spend 30 minutes scanning td tags until your eyes bled to find something, make a change, ftp the file to the server, reload the web page and then spend 10 minutes staring at the devastation on your screen convinced you broke
the internet before spotting an un-closed td tag with your bloodshot eyes.
Tables were not just a silver bullet - they were the ONLY bullet and were in the wild west!
Q: Want an inline form or to align your inputs left?
A: Duh table!
Q: Want a border with round-corners, a shadow or blur?
A: That's easy! Your gonna want to put that table in the center cell of another table then crop a image of the border into 6 smaller images to put in the surrounding cells... oh and then spend 10 minutes fucking with mystical attributes like cell-padding and valign to get them flush.
...But hey at least on the bright-side vertically & horizontally centering stuff was a breeze!22 -
I’m surrounded by idiots.
I’m continually reminded of that fact, but today I found something that really drives that point home.
Gather ‘round, everybody, it’s story time!
While working on a slow query ticket, I perused the code, finding several causes, and decided to run git blame on the files to see what dummy authored the mental diarrhea currently befouling my screen. As it turns out, the entire feature was written by mister legendary Apple golden boy “Finder’s Keeper” dev himself.
To give you the full scope of this mess, let me start at the frontend and work my way backward.
He wrote a javascript method that tracks whatever row was/is under the mouse in a table and dynamically removes/adds a “.row_selected” class on it. At least the js uses events (jQuery…) instead of a `setTimeout()` so it could be worse. But still, has he never heard of :hover? The function literally does nothing else, and the `selectedRow` var he stores the element reference in isn’t used elsewhere.
This function allows the user to better see the rows in the API Calls table, for which there is a also search feature — the very thing I’m tasked with fixing.
It’s worth noting that above the search feature are two inputs for a date range, with some helpful links like “last week” and “last month” … and “All”. It’s also worth noting that this table is for displaying search results of all the API requests and their responses for a given merchant… this table is enormous.
This search field for this table queries the backend on every character the user types. There’s no debouncing, no submit event, etc., so it triggers on every keystroke. The actual request runs through a layer of abstraction to parse out and log the user-entered date range, figure out where the request came from, and to map out some column names or add additional ones. It also does some hard to follow (and amazingly not injectable) orm condition building. It’s a mess of functional ugly.
The important columns in the table this query ultimately searches are not indexed, despite it only looking for “create_order” records — the largest of twenty-some types in the table. It also uses partial text matching (again: on. every. single. keystroke.) across two varchar(255)s that only ever hold <16 chars — and of which users only ever care about one at a time. After all of this, it filters the results based on some uncommented regexes, and worst of all: instead of fetching only one page’s worth of results like you’d expect, it fetches all of them at once and then discards what isn’t included by the paginator. So not only is this a guaranteed full table scan with partial text matching for every query (over millions to hundreds of millions of records), it’s that same full table scan for every single keystroke while the user types, and all but 25 records (user-selectable) get discarded — and then requeried when the user looks at the next page of results.
What the bloody fucking hell? I’d swear this idiot is an intern, but his code does (amazingly) actually work.
No wonder this search field nearly crashed one of the servers when someone actually tried using it.
Asdfajsdfk.rant fucking moron even when taking down the server hey bob pass me all the paperclips mysql murder terrible code slow query idiot can do no wrong but he’s the golden boy idiots repeatedly murdered mysql in the face21 -
Tester: I'm going to start testing your Android code. How do I set up it?
Me: just bring me an Android test device and I'll show you
Tester: *comes back holding a big golden phone*
Me: *huh? Haven't seen that Android device before... I wonder which manufacturer made it*
Tester: *puts down golden phone on my desk* here you go!
Me: 😱😱😱😱
...
HUH? This is an iPhone!!!!
😩😱😧😖😰😫😵😱😱4 -
I got my first own office... We did it. We just painted our mini Iranian office in two nights and we about to code it,has 5 min distance to our college and it's a golden opportunity to work and study at the same time.
8 -
Met a girl who was into computer hardware...
She told me that she's been thinking about starting to code...
As a first, I introduced her to Devrant.
*A few moments later*
Her: Wow!
*A golden halo appears on my head*1 -
My code review nightmare part 3
Performed a review on/against a workplace 'nemesis'. I didn't follow the department standards document (cause I could care less about spacing, sorted usings, etc) and identified over 80 bugs, logic errors, n+1 patterns, memory leaks (yes, even in .net devs can cause em'), and general bad behavior (ex.'eating' exceptions that should be handled or at least logged)
Because 'Jeff' was considered a golden child (that's another long TL;DR), his boss and others took a major offense and demanded I justify my review, item by item.
About 2 hours into the meeting, our department mgr realized embarrassing Jeff any further wasn't doing anyone any good and decided to take matters into his own hands. Thinking 'well, its about time he did his job', I go back to my desk. About an hour later..
Mgr: "I need you in the conference room, RIGHT NOW!"
<oh crap>
Mgr: "I spoke to Jeff and I think I know what the problem is. Did you ever train him on any of the problems you identified in the review?"
Me: "Um, no. Why would I?"
Mgr: "Ha!..I was right. So lets agree the problems are partially your fault, OK?"
Me: "Finding the bugs in his code is somehow my fault?"
Mgr: "Yes! For example, the n+1 problem in using the WCF service, you never trained him on how to use the service. You wrote the service, correct?"
Me: "Yes, but it's not my job to teach him how to write C#. I documented the process and have examples in the document to avoid n+1. All he had to do was copy/paste."
Mgr: "But you never sat with Jeff and talked to him like a human being? You sit over there in your silo and are oblivious to the problems you cause. This ends today!"
Me: "What the...I have no idea what you are talking about. What in the world did Jeff tell you?"
Mgr: "He told me enough and I'm putting an end to it. I want a compressive training class developed on how to use your service. I'll give you a month to get your act together and properly train these developers."
3 days later, I submit the power-point presentation and accompanying docs. It was only one WCF with a handful of methods. Mgr approved the training, etc..etc. execute the 'training', and Jeff submits a code review a couple of weeks later. From over 80 issues to around 50. The poop hits the fan again.
Mgr: "What's your problem? When are you going to take your responsibility seriously?"
Me: "Its pretty clear I don't have the problem. All the review items were also verified by other devs. Its not me trying to be an asshole."
Mgr: "Enough with the excuses. If you think you can do a better job *you* make the code changes and submit them for Jeff for review. No More Excuses!"
Couple of days later, I make the changes, submit them for review, and Jeff really couldn't say too much other than "I don't see this as an improvement"
TL;DR, I had been tracking the errors generated by the site due to the bugs prior to my changes. After deployment, # of errors went from thousands per hour to maybe hundreds per day (that's another story) and the site saw significant performance increases, fewer customer complaints, etc..etc.
At a company event, the department VP hands out special recognition awards:
VP: "This award is especially well earned. Not only does this individual exemplify the company's focus on teamwork, he also went above and beyond the call of duty to serve our customers. Jeff, come on up and get this well deserved award."18 -
Hey Root. Here’s a new ticket for you. It involves lots of things you’ve never seen before, and the only person you can ask is out this week.
Hey Root. Why haven’t you been making good progress every day? Why didn’t you reach out to the guy on FTO? Clearly you can’t communicate. Give me detailed status updates twice a day at specific times, covering <exhaustive list of topics> so I know you’re working. What do you mean “no”!?
Hey Root. Stop working on that ticket, and work on this other ticket. It’s the same thing, but different. High-priority!
Hey Root. You asking questions about that ticket pissed off a legendary golden boy principal dev, and he said it’s a bad idea and that we should have assigned it to a different team, too — you know, the team who usually works on these areas. But we might still have you do it. Please work on the previous ticket that’s in the exact same area until we decide.
Hey Root. Why haven’t you gotten anything done?10 -
Should I ever design a programming language, I'll aim for the golden middle course and let arrays start at 0.5.7
-
I'M FUCKING SICK OF HOLDING MY SELF TO DON'T MAKE OTHERS LOOK LIKE STUPID, I DON'T GIVE A FUCK ANYMORE ,NEXT YEAR IS MY TIME TO STAND AND LET PEOPLE KNOW WHO I AM. IF YOU FUCKERS CANT ACKNOWLEDGE THAT EVEN THOUGHT THIS COMPANY'S PRODUCT ISN'T SOFTWARE BUT YOU ARE FUCKING WASTING A GOLDEN RESOURCE ( DEV TEAM ) WITH FUCKING USELESS CRUDS AND USELESS SITES NO ONE FUCKING CARES ABOUT I'M GONNA LEAVE.16
-
College can be one of the worst investments for an IT career ever.
I've been in university for the past 3 years and my views on higher education have radically changed from positive to mostly cynical.
This is an extremely polarizing topic, some say "your college is shite", "#notall", "you complain too much", and to all of you I am glad you are happy with your expensive toilet paper and feel like your dick just grew an inch longer, what I'll be talking about is my personal experience and you may make of it what you wish. I'm not addressing the best ivy-league Unis those are a whole other topic, I'll talk about average Unis for average Joes like me.
Higher education has been the golden ticket for countless generations, you know it, your parents believe in it and your grandparents lived it. But things are not like they used to be, higher education is a failing business model that will soon burst, it used to be simple, good grades + good college + nice title = happy life.
Sounds good? Well fuck you because the career paths that still work like that are limited, like less than 4.
The above is specially true in IT where shit moves so fast and furious if you get distracted for just a second you get Paul Walkered out of the Valley; companies don't want you to serve your best anymore, they want grunt work for the most part and grunts with inferiority complex to manage those grunts and ship the rest to India (or Mexico) at best startups hire the best problem solvers they can get because they need quality rather than quantity.
Does Uni prepare you for that? Well...no, the industry changes so much they can't even follow up on what it requires and ends up creating lousy study programs then tells you to invest $200k+ in "your future" for you to sweat your ass off on unproductive tasks to then get out and be struck by jobs that ask for knowledge you hadn't even heard off.
Remember those nights you wasted drawing ER diagrams while that other shmuck followed tutorials on react? Well he's your boss now, but don't worry you will wear your tired eyes, caffeine saturated breath and overweight with pride while holding your empty title, don't get me wrong I've indulged in some rough play too but I have noticed that 3 months giving a project my heart and soul teaches me more than 6 months of painstakingly pleasing professors with big egos.
And the soon to be graduates, my God...you have the ones that are there for the lulz, the nerds that beat their ass off to sustain a scholarship they'll have to pay back with interests and the ones that just hope for the best. The last two of the list are the ones I really feel bad for, the nerds will beat themselves over and over to comply with teacher demands not noticing they are about to graduate still versioning on .zip and drive, the latter feel something's wrong but they have no chances if there isn't a teacher to mentor them.
And what pisses me off even more is the typical answers to these issues "you NEED the title" and "you need to be self taught". First of all bitch how many times have we heard, seen and experienced the rejection for being overqualified? The market is saturated with titles, so much so they have become meaningless, IT companies now hire on an experience, economical and likeability basis. Worse, you tell me I need to be self taught, fucker I've been self taught for years why would I travel 10km a day for you to give me 0 new insights, slacking in my face or do what my dog does when I program (stare at me) and that's just on the days you decide to attend!
But not everything is bad, college does give you three things: networking, some good teachers and expensive dead tree remnants, is it worth the price tag, not really, not if you don't need it.
My broken family is not one of resources and even tho I had an 80% scholarship at the second best uni of my country I decided I didn't need the 10+ year debt for not sleeping 4 years, I decided to go to the 3rd in the list which is state funded; as for that decision it worked out as I'm paying most of everything now and through my BS I've noticed all of the above, I've visited 4 universities in my country and 4 abroad and even tho they have better everything abroad it still doesn't justify some of the prices.
If you don't feel like I do and you are happy, I'm happy for you. My rant is about my personal experience which is kind of in the context of IT higher education in the last ~8 years.
Just letting some steam off and not regretting most of my decisions.
15 -
Show up on time.
Be prepared.
Have a list of things that need to be covered if you're leading the meeting.
Stay on track, don't let people start talking out of one tangent, I tend to suggest people discuss it afterwards or email about it.
Take the meeting seriously, otherwise other people will not.
Know how to talk a language everyone understands. Sometimes people with key info just aren't very technical.
Following Ely's golden rules for meetings, my meetings are rarely longer than 20 minutes.5 -
I know it's not done yet but OOOOOH boy I'm proud already.
Writing a JSON parser in Lua and MMMM it can parse arrays! It converts to valid Lua types, respects the different quotation marks, works with nested objects, and even is fault-tolerant to a degree (ignoring most invalid syntax)
Here's the JSON array I wrote to test, the call to my function, and another call to another function I wrote to pretty print the result. You can see the types are correctly parsed, and the indentation shows the nested structure! (You can see the auto-key re-start at 1)
Very proud. Just gotta make it work for key/value objects (curly bracket bois) and I'm golden! (Easier said than done. Also it's 3am so fuck, dude)
15 -
Vscode golden tips:
Rule #1: the less extensions you installed, the less trouble you get into.
There is no rule #29 -
A few months ago my now boss, then he was my mentor and school teacher asked for my help with a feature, said he had tried for some time and couldnt get around it, I solved it with regex in less than a day, and the company is like the golden standard of my region. The issue itaelf wasnt hard but being able to help my mentor was pretty cool
-
Translated this golden bit from the Norwegian comic "Lunch" for you guys👍🏻
Frame 3:
Kjell: You see? Worn out again!
Tech: I can see that. How about we only replace the keys not working.
Frame 4:
Tech: ctrl + c ... and?
Kjell: V
😁🤓🎉
-
Story from back in college..
It was the golden days of Flash Facebook applications. I have developed a very simple Rubik's cube solver in Acton Script 3. I was testing it out at the back seat of the class during the first day of Advanced OOP in Java module.
Our lecturer was going on and on about how awesome Java was and what all you can do with it. After a while he said "do you know this thing called Rubik's cube?" **explains what it is for a while** "Some people have even made software to solve Rubik's cube with Java. Can you make something like that?"
I was like "you mean like this one?" Pointing to the app on my laptop.1 -
Hey I got reminded of a funny story.
A friend of mine and me were in internships in the same company. The company was specialized in territory resources management (managing water for agriculture, money to build industrial zones...). He got the interesting internship (water predictory modeling) and I got... The repairs of a reference sheet manager that never happened to work. It was in C# and ASP.NET and I was in second year of CS. I expected the code to be nice and clear since it was made by a just graduated engineer with +5years of studies.
I was very wrong.
This guy may never have touched a web server in his life, used static variables to keep sessions instead of... well... sessions, did code everything in the pages event handlers (even LinQ stuff et al) and I was told to make it maintainable, efficient and functional in 2 months. There were files with +32k LoC.
After 1week of immense despair, I decided I will refactor all the code. Make nice classes, mapping layer, something close to a MVC... So I lost time and got scoled for not being able to make all the modifications as fast as in a cleanly designed code...
After 4 weeks, everything was refactored and I got to wait for the design sheets to change some crystal report views.
At this moment I began to understand were was the problem in this company.
My friend next door got asked to stop his modeling stuff for an emergency project. He had to make an XML converter for our clients to be able to send decentralized electrics bills, and if it was not completed within a week, they would no longer be able to pay until it is done.
This XML converter was a project scheduled 5 years before that. Nobody wanted to do it.
At the same time, I was waiting for the Com Department to give me the design views.
I never saw the design views. Spent one month implementing a golden ratio calculator with arbitrary precision because they ain't give me anything to do until the design were implemented.
Ended with a poor grade because "the work wasn't finished".2 -
Ticket: This API param doesn’t work.
Ticket Size: 1 story point / extra small baby fries
Found the issue almost immediately: some fucked up date math. Or at least backwards as hell. I don’t know. I don’t care.
There’s no spec for it, and writing it is a bitch. None of the API test helpers are designed for end-to-end tests. Why? I don’t care. They’re stupid. They all just break. And the API does weird shit like fucking redirects to an HTML page. Which is… i don’t know. They mix up API and embedded sessions a bunch, so who knows if this is right or broken as fuck.
I can’t deal with this shit anymore.
It’s just mountains of fucking garbage. Every time I dig into anything, anywhere in this codebase, or, let’s be honest: the entire goddamn company, it’s just more fucking garbage. The code is garbage. The specs are garbage. The people are garbage. The woke crap they love so much is garbage. The industry is garbage. The macs we’re required to use are garbage. The strongly-encouraged editor is garbage. The new hires are garbage. The legendary devs are garbage. The VPN is garbage — still haven’t gotten it to fucking work outside of fucking Safari, which is also garbage. The meetings are garbage. The “culture” is garbage. The “raises” are garbage. The thirty-step dance ceremony for each ticket is garbage. The literal fucking garbage at the office is the best part of the entire goddamn landfill.
And yeah, over half of the code that’s been giving me problems on this ticket was written by the same dev: The legendary golden garbage boy himself.
Just.
Fucking hell.
I’m going back to looking for work again. I can’t do this anymore.10 -
So today I had a discussion with my manager that I have been working unpaid overtime everyday (close to 5 hours overtime). She responds with saying that I am quite young (24) and these are my golden years of learning and I should be working overtime for atleast 10 years of my life during the start of my career to learn stuff because I will regret it later. Idk how am I supposed to react to that. She maybe correct, and I do work overtime sometimes out of my own interest but this is getting way too much and pushing it. any suggestions about how do I deal with such a manager?28
-
Somewhere in a lonely break room
There's a guy starting to realize that eternal hell has been unleashed unto him.
It's two a.m.
It's two a.m.
The boss has gone
I'm sitting here waitin'
This desktop's slow
I am getting tired of fixin' all my coworkers' problems
Yeah there's a bug on the loose
Errors in the code
This is unreadable
Rubber ducky can't help
I cannot debug, my whole life spins into a frenzy
Help I'm slippin' into the programming zone
Git push to the prod
Set up a repo
My hard drive just crashed
All my code is gone
Where am I to go
Now that I've broke my distro
Soon you will come to know
When you need Stack Overflow
Soon you will come to know
When you need Stack Overflow
I'm falling down a spiral
Solution unkown
Disgusting legacy, ugly code
Can't get no connection
Can't get through to commit
Well the night weights heavy
On my confused mind
Where's the error on this line
When the CEO comes
He knows damn well
To keep his distance
And he says
Help I'm slippin' into the programming zone
Git push to the prod
Set up a repo
My hard drive just crashed
All my code is gone
Where am I to go
Now that I've broke my distro
Soon you will come to know
When you need Stack Overflow
Soon you will come to know
When you need Stack Overflow
When you need Stack Overflow
When you need Stack Overflow, a ha
When you need Stack Overflow
When you need Stack Overflow, a ha
When you need Stack Overflow
When you need Stack Overflow, a ha
When you need Stack Overflow
When you need Stack Overflow, a ha
When you need Stack Overflow4 -
Often I hear that one should block spam email based on content match rather than IP match. Sometimes even that blocking Chinese ranges in particular is prejudiced and racist. Allow me to debunk that after I've been looking at traffic on port 25 with tcpdump for several weeks now, and got rid of most of my incoming spam too.
There are these spamhausen that communicate with my mail server as much as every minute.
- biz-smtp.com
- mailing-expert.com
- smtp-shop.com
All of them are Chinese. They make up - rough guess - around 90% of the traffic that hits my edge nodes, if not more.
The network ranges I've blocked are apparently as follows:
- 193.106.175.0/24 (Russia)
- 49.64.0.0/11 (China)
- 181.39.88.172 (Ecuador)
- 188.130.160.216 (Russia)
- 106.75.144.0/20 (China)
- 183.227.0.0/16 (China)
- 106.75.32.0/19 (China)
.. apparently I blocked that one twice, heh
- 116.16.0.0/12 (China)
- 123.58.160.0/19 (China)
It's not all China but holy hell, a lot of spam sure comes from there, given how Golden Shield supposedly blocks internet access to the Chinese citizens. A friend of mine who lives in China (how he got past the firewall is beyond me, and he won't tell me either) told me that while incoming information is "regulated", they don't give half a shit about outgoing traffic to foreign countries. Hence all those shitty filter bag suppliers and whatnot. The Chinese government doesn't care.
So what is the alternative like, that would block based on content? Well there are a few solutions out there, namely SpamAssassin, ClamAV and Amavis among others. The problem is that they're all very memory intensive (especially compared to e.g. Postfix and Dovecot themselves) and that they must scan every email, and keep up with evasion techniques (such as putting the content in an image, or using characters from different character sets t̾h̾a̾t̾ ̾l̾o̾o̾k̾ ̾s̾i̾m̾i̾l̾a̾r̾).
But the thing is, all of that traffic comes from a certain few offending IP ranges, and an iptables rule that covers a whole range is very cheap. China (or any country for that matter) has too many IP ranges to block all of them. But the certain few offending IP ranges? I'll take a cheap IP-based filter over expensive content-based filters any day. And I don't want to be shamed for that.7 -
My company has two offices in separate cities but they treat each the devs of each location very very differently.
In one office the devs get full power to experiment with whatever tech they want, they just stomp their feet and management gives em whatever they ask for, freedom of choice regarding anything they are working on, to be allowed to do greenfield work or experimental stuff
But in my office we are forced to do ONLY. Bug fixing and refactoring shitty code from over a decade a go, our tech is ancient and we are not allowed to to
Shit , anything we ask for is denied
And improvements to our process is shut down with the reasoning that whatever we got works so why meddle ??
For us , management is solely focussed on making sure we respond to support calls , deployments , configurations and little bug fixing. Basically they only care that we manage to finish for out next delivery.
No new work whatsoever!
If there is any hint of something new to to
Implemented the golden boys from the other office just stopm their feet tillmthey get it or just go off and start working on it then seek permission afterwards, with their much larger team they obviously get further than we do by the time management hears about it so they end up taking over the work since they already have more done already
My manager decided to push us to attend a company devCon to share ideas with our devs from our other location. This rapidly turned into a sour experience
Basically we do all shitty boring work which puts money on the table which goes straight to those idiots to play with...
They have the guts to laugh when we mentioned that we never get anything interesting to work on
Never seen so many of our devs looking up job sites on the bus back...
This is gonna blow up in management's face...2 -
To anyone asking for tips and tricks to start programming or become good at it, here is your ultimate golden advice: learn how to google and stop asking stupid questions like this before doing a quick research.
Reasons why:
1. You will most likely to learn better if you do your own research before asking for help. Even if you can't solve problem, you will be better and better at googling over time.
2. It is instant source of information. No need to wait for response (except response from server of course).
3. It takes only YOUR time.
4. Much more possible solutions/answers to your problems/questions.
5. Your quality of life will be improved over time. Not only your dev life but your daily life too.rant stop asking stupid questions how long this tags can be qol i am not your personal teacher programming tips tips11 -
So how do you deal with the "brilliant jerk" who is the CEO's golden chlid?
Seriously - this is one of the biggest challenges of my professional career. I have team members that have begged to not be on projects with him and others that have threatened to quit if he ever moves into a leadership role.
Has anyone dealt with this?5 -
It’s now day 4 into handing in my notice. Here's a recap of day 1&2. Here's the recap of day 0: https://www.devrant.io/rants/871145
I handed in my notice on Wednesday with a leaving date of 10/27/17:
> format_date('27/10/17', 'short', 'muurcan');
Thursday, I had an appointment outside of the office... I was called by a marketing guy at [popular graph database company] to try and wiggle his way into my org. I forget his name, so we'll call him Derek:
Derek: 'Hi James, it’s marketer at [graph co] here; I know you downloaded our free book two months ago and we reserved the right to call you constantly since. I just wanted to...'
Me: 'Hol up Derek! I don’t want to waste your time, thank you guys for the book.
I’d have happily paid to avoid these phone calls.
I’ve resigned from [company] before getting a chance to introduce [most popular graph database platform on google, for real, go check now].
Again thanks, but I’m no longer a useful lead.'
Life lesson learned: free doesn’t mean free, free books aren’t worth shit. Marketing people are lovely... but have an job to do so they’re also basically all cunts.
If you want to learn graph DB best practices from oreilly, pay the £7 and be done with it.
Don’t download that book! Derek will take your number and use it like you’re a young naive college girl with a golden pička.
Aside: I’ve met a new girl! I’ve rapidly learned Slovenian swear words. She’s a beautiful Slovenian girl and has the mouth of a sailor. Peace out to any of my eastern euro buddies on here. Privyet, serbus, stay frigging awesome.
I'll be following up on the tag 'jct resigns' for anyone interested.5 -
God damnit!
i recently inspected the c# sourcecode of a webservice, our webservice develop references to.
As i discovered a particular function in it, my face went instantly pale.
This golden-hammer function consists of ~2000 lines of code.
In the first line there is "try {".
On the last lines is "catch (Exception e) { throw new SomethingWentWrongException ("special function"); }"
At least, he "tried" xD
I don't want to develop on that planet anymore...7 -
one of my friend has a golden finger👈, he could break your system with one touch, once he borrowed my laptop to update fb status, I saw him literally hit the enter key once, the pc got a blue screen and then rebooted with error, I have to reinstall OS to fix it. I asked around, he did this trick many times😱😱. I guess he could get some profit from this gift😂😂😂3
-
Not even a beach can prevent a dev from working.
Here I am, six days into vacationing. My girls are playing in the pool behind me, their mother is sunbathing and absolutely rocking a golden bikini, the sun is setting on this magnificent beach and my baby boy is even asleep besides the pool noise.
And dumbshit me is here ignoring it all and frantically typing at my phone because apparently it is VERY HARD to convince your team not to let any projects get stale while you're away.
I should go somewhere without wifi next time.8 -
I love Test-Driven Development!
And because of that fact, my heart shatters into thousands of pieces, when I recognize error events on our production nodes which are pointing onto a golden hammer function in a legacy project.
This particular function has about 300 lines with a bunch of subfunction calls and instantiations of helper-classes returning information for workflow.
Refactoring this code to apply proper unit-tests requires a way bigger investment than simply deal with 30 eventlogs a day, because this kind of payment is barely used by customers of our webshop.
This fact is a little itch each day of my work.
Guess it will make me go insane one day
¯\_(ツ)_/¯
xD1 -
“Dear Manager, the reason I didn’t complete my sprint task today was that while I was nursing my fiancé’s COVID vaccine severe side effects, said fiancé’s Chinese roommate put a jar of some fermented product called “Golden Smell” in a precarious place from which I broke it, causing a veritable golden shower of glass shards and odors to permeate the workspace. If you don’t hear from me by standup, tell my mom i’m sorry."4
-
A software developer's experience life cycle:
0 - 5 years: attempt to replicate what your current senior is preaching, assuming that's the right way. Reading "Clean code" and preach it as gospel, even though you don't practice any of it.
6-12 years: gained the belief that you are better off coming up with solutions yourself, usually "sophisticated" and "elegant" which to everyone else (and also yourself a few years later) is an over-complicated inheritance ridden shit show. You have realised the "Clean code" movement is actually a cult but still believe code reuse is the holy grail.
13+ years: finally realized that simplicity and pragmatism is the most sensible way for most software development. Code is now readable, maintainable and functional. You took the few good bits from "Clean code" and ignored the extremism. These are the golden years.
The problem is most developers jump ship and stop developing before reaching the golden years, thus resulting in most software projects looking like shit.
Unpopular opinion, but it doesn't make it untrue.8 -
ComputerToucher: *opens Jira ticket* Dev team needs tokens for the APM for a new app with multiple tenants. Ezpz. Hey, developer. Do you want one golden token for all of your app tenants or would you like us to generate one token for each?
Developer: Let’s have a meeting to discuss it.
CT: It’s…an exceedingly simple question. One token or 4? Which does your app support?
Dev: Yeah I think we should discuss with this with the platform team, can you set up the call?
CT: (Internally) I am the platform team? Do you not know how your applica-never mind I’ll just ask the PM directly.
CT (in chat): I’ll ask PM to schedule the call.
*Goes back to Jira ticket, changes priority to 4, removes ticket from sprint entirely, picks something else to work on*6 -
Recently i had a small talk with someone working in the banking sector . When that person acknowledged what i do for a living , she started to be a little bit passive-agressive .
Her:"You know someday , sooner than later , a guy like you is going to create something like artificial intelligence to replace all the devs in the world . Ha ha ha ! And your golden age is going to end . "
Me:"So you think this guy is going to create a smart program , software or platform , that will create software from what ? "
Her:" We will write the specs directly in the program and we will get the software after !"
Me:"And what if the specs are impossible, from logical point of view. "
Her:" Well there will be some rules and you will need to respect them !"
Me: "And people need to learn the logic of these rules?"
Her: " Yes a little bit of training!"
Me:" We already have that !"
Her: " We have ?! "
Me: " Is called .... CODING !"
Her: **silence **
(I remembered the burn from a comic -- forgot the name-- but GOD it felt good !)
Why some people hate us ?4 -
I have a VP constantly harassing my people about some reports that we need to do as per federal law.
The thing is, these live inside of such system that I get to see exactly how many "hits" they get on a yearly basis. The only traffic we have on those sections is of people going ahead and putting the information from our reports there.
That's it, literally. Our user base does not go there. Federal agencies do not go there. No one gives two blips of shit about those sections. Yet she continuously acts like they are the most important thing in the fucking world. To make it better, I was told not to generate actual analytical data from said reports, since people with PHDs will come down on me to ask me who the fuck do I think I am from gauging them with such systems. So shit is a mute point on all fucking accounts.
I told my VP I can generate traffic information to let them know that shit is not really the most important thing in the fucking universe. His eyes glowed.
I don't want to see head rolls, but from staying till the next morning awake trying to give the best to our userbase, and just to be called out on shit like this as if I did not do enough for our people just.....well....it fucking hits man.
The worse part was me literally getting 30 minutes of sitting down after an all nighter, doing something for my users, to get to a meeting the next morning (I should not have driven there honestly) to hear this bitch complain about us not doing enough or not caring or whatever other bullshit she would spew.
I was livid, lack of sleep makes me dangerous. I turned to say something when my boss stopped me and took care of business. I seriously love this man. By all accounts and generational gaps a boomer, but one of the few good golden ones.
I just hate how unappreciated the realm of software development is by people that think that our shit is as simple as making a fucking powerpoint presentation.
Consolidate that with a director from another department taking all fucking glory during a major event of an application that I built by myself with 2 fucking weeks of no sleeping. And shit just gets glorious.
I have considered moving to other places, and heck, have gotten amazing offers, what with having a degree with a big fucking GPA and having the credentials of a senior, lead, full stack and manager role, the sky is the limit. But i know that if I leave then my users suffer, and I just can't fucking have that.
I have heard them speaking about doing something with X app that I built (with my department) I have even heard one of them saying "how is this made?" and a part of me hoped that it would be a good time to grab them and tell them of the field and the things that they can do. But I don't like announcing myself that way, always seemed to presumptuous, so I just smile, fuck yeah, my users are doing their thing with what I built to better their lives, what more can I have?
I have gotten criticisms from them, one recognized me, told me about his pain points and how it makes it hard for him to do what he must. Getting the data from the user base in an effort to make shit better for them drives me, my challenge being "how about this? better eh?"
But fucking execs man, think only of themselves, not the users, they forget about the users. Much like a shitty rock band forgetting about the music, about the fans.
I can't let that slide. But this fucking field. I sometimes fucking hate it, and I hate it because of the normies that don't understand and do not want to understand.
I do way too much, my guys do way too much and all I want is for the recognition to go to them. They do not need the ego boost, but to see my guys sitting in a meeting in which some dumb fuck is trying to drill us for taking to long, not doing something and what not, it fucking pisses me off. As their boss I always stand up and tell bitches off, but instead of learning, the bitches just keep pressing on their already defeated points.
Everything in human life gets fucking erradicated by: humans. People really do fucking suck.
I sometimes wish to go back, redo my diesel tech license and just work there, where I think one would be better of talking to an engine. But no, even then you get people, you have to interact with people, deal with people, and I am so far up my game and in my field that starting from scratch is a fucking mute point.
Maybe I need to keep fucking with stocks, get rich and just keep investing on bullshit. Whatever the fuck it takes me from having to feel the urge to choke a motherfucker in public.1 -
@dfox what would you say about a "following" feature?
Because I've noticed some absolute regular golden rants coming from some of the same ranters on here and would be cool to never miss the stuff they come out with.3 -
I was waiting in the lobby of a recuiting place, hearing all their speeches. All super generic stuff, like "I looked at your resume and I have a bunch of cutting edge opportunities in the pipeline that are going fast, which I think you are a perfect fit for!" Which I don't argue is always invalid, just after hearing the same copy and paste speech, you start to wonder.
I even saw a few stand up and wave their hands around while trying to make a meh position sound like the latest golden egg.
I left with a feeling that recuiters would be a great inspiration for a "Wolf of Wall street" styled movie.1 -
🪙 The golden age of tech is coming to an end. We currently live in a world of tech built by engineers and great minds; both Windows and Linux are great in their own ways. PCs are the peak of engineering, both desktops and laptops because of how versatile, powerful and universal they are. They serve engineers, designers and end users. You can do anything you can imagine; because the great people who built it, did it in such way that they themselves could use and enjoy it.
📱 The tech of the future will become ever more limited. The next generation of humans will use Chrome OS gladly and not even feel limited because they never experienced the freedom provided by a true personal computer device. Android OS is already getting ever closer to restricting 3rd party APK installers. Big tech will do everything they can to limit freedoms and make everyone use cloud, where they can charge $ for every damn click.
☎️The consumer-facing tech will become increasingly dumbed-down over time. The programmers and engineers will be still able to use "true" tech, but only for work. In everyday life, they will have to be content with the dumb limited tech.
And there is nothing we can do to stop it.8 -
Have you ever proposed great ideas to the company, yet they were rejected time after time, only for some half-assed golden favorite boy to steal the show for you with their half-assed idea?
I mean, now I understand that once you've been long enough in the industry, you express a deep, long sigh at least once a day. Plus, it affects your mental health. Not giving a fuck and just working on yourself more and your personal projects is crucial.14 -
(2 months old in a company)
Team members to me: we are always there for you. Ask anything you need for.
Me(today): can you please discuss this topic with me?
Team member A: I'm sorry I'm busy
Me: okay
Me: can you please discuss this topic with me?
Team member B: I got to catch the train now.
Me: we catch same train. Let's discuss during the commute.
Team member B: NO. We will not get two seats together (it's easy to find two seats).
me (in my mind): I really need help here.
Me: okay2 -
I think I made someone angry, then sad, then depressed.
I usually shrink a VM before archiving them, to have a backup snapshot as a template. So Workflow: prepare, test, shrink, backup -> template, document.
Shrinking means... Resetting root user to /etc/skel, deleting history, deleting caches, deleting logs, zeroing out free HD space, shutdown.
Coworker wanted to do prep a VM for docker (stuff he's experienced with, not me) so we can mass rollout the template for migration after I converted his steps into ansible or the template.
I gave him SSH access, explained the usual stuff and explained in detail the shrinking part (which is a script that must be explicitly called and has a confirmation dialog).
Weeeeellll. Then I had a lil meeting, then the postman came, then someone called.
I had... Around 30 private messages afterwards...
- it took him ~ 15 minutes to figure out that the APT cache was removed, so searching won't work
- setting up APT lists by copy pasta is hard as root when sudo is missing....
- seems like he only uses aliases, as root is a default skel, there were no aliases he has in his "private home"
- Well... VIM was missing, as I hate VIM (personal preferences xD)... Which made him cry.
- He somehow achieved to get docker working as "it should" (read: working like he expects it, but that's not my beer).
While reading all this -sometimes very whiney- crap, I went to the fridge and got a beer.
The last part was golden.
He explicitly called the shrink script.
And guess what, after a reboot... History was gone.
And the last message said:
Why did the script delete the history? How should I write the documentation? I dunno what I did!
*sigh* I expected the worse, got the worse and a good laugh in the end.
Guess I'll be babysitting tomorrow someone who's clearly unable to think for himself and / or listen....
Yay... 4h plus phone calls. *cries internally*1 -
It’s time for me to thank people who, through their work, defined me as a person.
Thank you Terry A. Davis. You completely obliterated my whole narrative of “being incapable because of mental state”. Your example is the reason I’m privileged enough to type this right now, you’re the reason I survived depression. You showed me how to overcome FOMO once and for all by just doing what I’m supposed to as good as I can. Fame will come. And indeed, it came.
You’re not the smartest programmer who ever lived. Only humans can be programmers. You’re a superhuman. You’re not the smartest programmer. You’re just the smartest.
May you rest in peace.
——
Thank you Richard Matthew Stallman. You showed me that the good which also can fight is a thing. You taught me to be afraid of nothing. You taught me how to be an immovable object, no matter the unstoppable force opposing. Because of you I can freely interact with people and my illness has no influence on who I am.
——
Thank you Håkon Wium Lie. You showed me that the ways of overcoming and suffering aren’t the only ones. You’re charming yet uncompromising, empowering yet never reckless. Since we met, in any troubling social interaction my brain automatically thinks “What would Håkon do?”, and somehow it’s always able to find a solution that doesn’t involve the cruelty that always dictated what I said and what I did.
You can already stop doing good things because you’re surely going to heaven with other golden retrievers but I know you’ll never stop. -
React is an overengineered pile of shit designed to let pretentious developers show of their golden arse holes with useless implentations of worthless business cases where everything and anything is an abstraction of some silly theory.5
-
I'll tell you the only time... The only times I'll fuck up.
When something changes. That's it.
Nothing else causes me to fuck anything up.
My code gets more and more messy the more people go oh change that ,😐 can that be a capital .... Hold on that box should be smaller
😤😡 Messy = I fuck up.
Now that might well be something I need to work on !
But if you send me twenty emails all with minor things that take seconds to change 😡 I will care less about your project , that makes me lazy.
If you want your project to be perfect on launch .. one plan a couple round of amends maybe 3 and your golden
But I can not keep checking if your application is all good after these minor changes 😐 (these are not situation you can write tests for)
Yes it makes me an asshole I'm aware , but I've been awake 40 hours fixing these peoples work, and quite frankly I couldn't give a toss1 -
I don't get what's happening with trolls here. Or people who are trying to be trolls.
Ostream got brutally trolled and deleted his account. Then came back with an alt account.
Same with Alexanderr, Nanos, Chaosesqueteam.
I am not siding with anyone, idc who's right or who's wrong, but there's one golden rule for trolling that you should know, before u attempt to be one -
If you can't handle people clapping back at you or if you don't have thick skin, then don't bother.16 -
There is this docker guy in our enterprise.
Always, he is told there is a challenge in software operations, he brings up the solution "move it into a docker container and the challenge won‘t be a challenge anymore".
........
Don‘t get me wrong.
I love to use docker as a technology to host my apps.
But for me it is not the golden hammer technology which cures all dread diseases on this planet.
Sometimes it is just overhead for the solution of small challenges.2 -
At night is when my creativity starts flowing like a motherfucker. The moment when all the tasks are done for the day and you can start working on your own projects and just lay back and smoke (or drink, whichever you prefer) and zone the fuck out with some good music. Oh and if I've gotten a good work out in that day, then there's no stopping me.
I had no plans to even create an admin panel for my own small project but last night I made one just to make it look professional. After that, I got an idea for a separate project which I started working on. I usually write my ideas down so that I don't get into a complete project cluster fuck with 50 half completed projects, but sometimes you get that golden one that you have to start (currently those are the only two unfinished projects I got). -
Got started by making farmville cheats. Found many exploits. Best was when I found 3 ways to do the same exploit. Zynga kept patching and I kept releasing a new way.
Lasted for just over a year or so.
Played for like 3years and then got bored. Those were the golden days, really miss them.7 -
Best:
Got a role change to automation engineer, which is sort of a 'just fix problems' position, like with tooling, get rid of manual work, remove as many spreadsheet as we can.
I started looking into rust.
Worst:
People think we depend heavily in javascript because our products are extensions, our golden product is an extension, so a few members of my team insist in depending in our core team and use their javascript stuff, even for string parsing, even if we do have a python package that does rhe same thing that is officially maintained too.
I refuse.
The good again:
My boss let's me refuse, I am not forced into javascript, they let me use whatever I want as long as it is reasonable.2 -
Tell me you're a media-obsessed rube drone without telling me you're a media-obsessed rube drone. I'll start:
"SoFtWaRe JoB mArKeT iS hOrRiBlE aNd ShOwS nO sIgN oF rEcOvErY!!!"
hah, you mean those layoffs from that handful of frothed-over tech giants which had, I don't know, approximately ONE HUNDRED TIMES the amount of engineers they actually needed? I swear if i see this trope one more time i'm about to rage. can't wait until 2023 when this 'scare' will be but a memory. yes i'm muad'dib, golden path, worm god, whatever
but it's even simpler, you don't have to drink the spice:
- there are an estimated 205,741 people affected by the LaYoFfs (https://www.trueup.io/layoffs, actually a really cool site I just found)
- there are an estimated 3.87 MILLION software engineers, and that's just in the US, so it's safe to say less than 5% of the industry has been affected
so in short yes, you are a rube, i'll enjoy my multiple job offerings
should have been working on your craft instead of reading all those "news" articles. sheesh, i'd scare to hire anyone for a software position who can't get a grip on simple numbers anyway6 -
I've been putting off my gamedev project for a while... while the golden age of free open source game development has long ended, I believe that a renaissance is long overdue!1
-
Well, I've been reading 'rants' in this community, and I'm amazed at how people discuss various softwares, languages, and sometimes even hardware!
I'd say I'm a noob. Can't even compare my 'coding knowledge' with what people know in this community, and I don't want to. I like that I'm now a part of this community. But I feel intimidated at times by the amount of things there are to learn! And I don't know how to start. I mean, we had a course on C for a semester, and I tried to build up on that myself. Other than that, I've been trying to learn web-dev, made a browser based game and tried to learn some back end. But I don't know exactly how to build up my proficiency with code, and solving problems, from here on out. So I would really appreciate if this golden community could help me out.(Not trying to flatter anyone. I don't express much, but all this is what I genuinely feel, and am grateful about.) I want to know how to go on about learning knew things in the realm of programming, and how I can apply it to solve actual problems. What language should I learn first? What will be valuable in this rapid-paced time? And some courses to help out?
I stumbled upon devRant one day out of nowhere, and I'm glad I did.8 -
One that you can discuss those minor bugs with and really Bond with.
Old but Golden dvd in the background for size reference
3 -
One day a developer's phone accidentally fell into his toilet. The poor developer looked at the toilet but couldn't find it as it was too late.
Finally he burst into tears. Hearing his sobs, an Angel appeared before him.
The Angel dived into the toilet and came up carrying a golden phone. The developer did not accept it. He said, "This is not mine. My phone is not golden."
To which the Angel replied, "It's not golden, it's covered in shit!"2 -
In reference to:
https://devrant.com/rants/2333925/...
Ideas are commonplace things. Just as a challenge today, in a two hour span, I came up with exactly 100 commercially viable ideas, some of which haven't even been tried yet by anyone that I know of.
This is me humblebragging, but it highlights an important lesson:
Good ideas are *genuinely* not worth the bytes or ink it takes to write them if you don't have the skill, connections, marketing, or cash to carry them forward.
I guarantee you, if you aggregated the commercially viable ideas of all the people on this platform, the list would number in the hundreds, probably in the thousands. And the list would be different every week.
Good ideas happen frequently enough because good ideas are a subset of the *ocean* of nonviable and stupid ideas that we all stumble on constantly, every day.
Like finding a needle in a stack of hay..or a nugget of golden corn by digging through piles and piles of steaming shit. It's a numbers game.2 -
Product owner and scrum master prioritized a not important user story. We are just new to the assigned team without proper turn over, KT, vague user story(one sentence) and no time to prepare our local environments. Then after sprint 1 the client wants a demo by next month but the PO and SM had prioritized the wrong user story so now they are pressuring the developers on finishing fast the other correct important user story. They mismanaged it and now they say the development was slow thus blaming us?! WTF. We hit the deadline of the first user story with unpaid overtimes.
The other PO was always asking us on how to fast track the development lol.
I'll tell them all their faults in the next meeting. As usual we are just high paid corporate slaves with golden hand cuffs trying to escape the rat race.5 -
My companies org is in a serious state of disrepair when it comes to project management.
Everything is tracked via conference. Each level of management (CTO, EVP, SVP, BP, S DIRECTOR, DIRECTOR, S MANAGER, MANAGER) all have a different tracking page that all say slightly different things.
To organize things there's a technical project manager who isn't just new to the team, he's new to the field. He's not technical, or experienced in project management. He's never worked within a scrum before.
He's dictating how to organize the teams scrum, and he's getting it very wrong. Decided to organize efforts in all the confluence pages by creating another one for him, again it's different.
When the work in confluence page 3/16 isn't done by a due date anybody knew about, the engineers have to hop on a call and get a Micky mouse solution out the door by the of day so upper management doesn't think the projects off the rails.
In the mean time I've taken a small group of more junior devs and shielding them. We have a side scrum that we manage and is going great, and I'm blocking the BS.
CORPORATE SUCKS. Golden handcuffs are a thing. I might set sail for greener pastures once i don't have to pay back my signing bonus if I leave.2 -
Aren't you, software engineer, ashamed of being employed by Apple? How can you work for a company that lives and shit on the heads of millions of fellow developers like a giant tech leech?
Assuming you can find a sounding excuse for yourself, pretending its market's fault and not your shitty greed that lets you work for a company with incredibly malicious product, sales, marketing and support policies, how can you not feel your coders-pride being melted under BILLIONS of complains for whatever shitty product you have delivered for them?
Be it a web service that runs on 1980 servers with still the same stack (cough cough itunesconnect, membercenter, bug tracker, etc etc etc etc) incompatible with vast majority of modern browsers around (google at least sticks a "beta" close to it for a few years, it could work for a few decades for you);
be it your historical incapacity to build web UI;
be it the complete lack of any resemblance of valid documentation and lets not even mention manuals (oh you say that the "status" variable is "the status of the object"? no shit sherlock, thank you and no, a wwdc video is not a manual, i don't wanna hear 3 hours of bullshit to know that stupid workaround to a stupid uikit api you designed) for any API you have developed;
be it the predatory tactics on smaller companies (yeah its capitalism baby, whatever) and bending 90 degrees with giants like Amazon;
be it the closeness (christ, even your bugtracker is closed and we had to come up with openradar to share problems that you would anyway ignore for decades);
be it a desktop ui api that is so old and unmaintained and so shitty, but so shitty, that you made that cancer of electron a de facto standard for mainstream software on macos;
be it a IDE that i am disgusted to even name, xcrap, that has literally millions of complains for the same millions of issues you dont even care to answer to or even less try to justify;
be it that you dont disclose your long term plans and then pretend us to production-test and workaround-fix your shitty non-production ready useless new OS features;
be it that a nervous breakdown on a stupid little guy on the other side of the planet that happens to have paid to you dozens of thousands of euros (in mandatory licences and hardware) to actually let you take an indecent cut out of his revenues cos there is no other choice in a monopoly regime, matter zero to you;
Assuming all of these and much more:
How can you sleep at night with all the screams of the devs you are exploiting whispering in you mind? Are all the money your earn worth?
** As someone already told you elsewhere, HAVE SOME FUCKING PRIDE, shitty people AND WRITE THE FUCKING DOCS AND FIX THE FUCKING BUGS you lazy motherfuckers, your are paid more than 99.99% of people on earth, move your fucking greasy little fingers on that fucking keyboard. **
PT2: why the fuck did you remove the ESC key from your shitty keyboards you fuckshits? is it cos autocomplete is slower than me searching the correct name of a function on stackoverflow and hence ESC key is useless? at least your hardware colleagues had the decency of admitting their error and rolling back some of the uncountable "questionable "hardware design choices (cough cough ...magic mouse... cough golden charging cables not compatible with your own devices.. cough )?12 -
Windows defender, this is for you:
GO FUCK YOURSELF YOU CANCEROUS PIECE OF SHIT!
If you were as advanced as you claim to be you'd realize that the EXE you've just deleted originated from a compiler. Unfortunately, your target group exclusively consists of people that are incapable of using anything that goes beyond a web browser.
If your developers would have some kind of integrity it would allow you to be turned off permanently instead of making users leave the Windows platform entirely.
Do Microsoft employees even eat their own dog food like they did back in the golden NT era?7 -
To anyone sufferring/going to suffer from kidney stones, here's a golden rule what to do when the episode kicks in [the sooner you start - the better]: 2 pills of no-spa, 1 tablet of painkillers [ibuprofen/dolmen]. As soon as no-spa kicks in and relaxes your spasm -- become a fucking breakdancer. I shit you not. Start bending, spinning, jumping, swimming like a fucking hurricane. The more you move, the better chances are you'll make that lump of rock move down the pipes and unclog your drainage.
Did it this week. Did not need to come back to the ER.
This was my 5th stone. Many more to come [Pending...].
I don't understand why do they make us lay in bed in the hospital if we have kidney stones. They should pump us with no-spa and make us do gymnastics, acrobatics and brakedancing instead!13 -
Didn't think I had material for a rant but... Oh boy (at least at the level I'm at, I'm sure worse is to come)
I'm a Java programmer, lets get that out of the way. I like Java, it feels warm and fuzzy, and I'm still a n00b so I'm allowed to not code everything in assembly or whatever.
So I saw this video about compilers and how they optimize and move and do stuff with the machine code while generating the executable files. And the guy was using this cool terminal that had color, autocomplete past commands and just looked cool. So I was like "I'll make that for my next project!"
In Java.
So I Google around and find a code snipped that gives me "raw" input (vs "cooked" input) and returns codes and I'm like 😎. Pressing "a" returns 97 (I think that's the ASCII value) and I think this is all golden now.
No point in ranting if everything goes as planned so here is the *but*
Tabs, backspaces and other codes like that returned appropriate ASCII codes in Unix. But in windows, no such thing. And since I though I'd go multiplatform (WORA amarite) now I had to do extra work so that it worked cross platform.
Then I saw arrow keys have no ASCII codes... So I pressed a arrow key and THREE SEPARATE VALUES WERE REGISTERED. Let me reiterate. Unix was pretending I had pressed three keys instead of one, for arrow keys. So on Unix, I had to work some magic to get accurate readings on what the user was actually doing (not too bad but still...). Windows actually behaved better, just spit out some high values and all was good. So two more systems I had to set up for dealing with arrow keys.
Now I got to ANSI codes (to display color, move around the terminal window and do other stuff). Unix supports them and Windows did but doesn't but does with some Win 10 patch...? But when tested it doesn't (at least from what I've seen). So now, all that work I put into making one Unix key and arrow key reader, and same for Windows, flies out the window. Windows needs a UI (I will force Win users, screw compatibility).
So after all the fiddling and messing, trying to make the bloody thing work on all systems, I now have to toss half the input system and rework it to support UI. And make a UI, which I absolutely despise (why I want to do back end work and thought this would be good, since terminal is not too front end).1 -
Okay, it's FUCKing rant time.
FUCK single-file *cough* page.tpl.php *cough* drupal-sites
I FUCKing hate sites without any FUCKing structure, where all logic is built into the overall wrapping pageview file.
Spend more FUCKing time than healthy finding this golden nugget.
In a FUCKing 2000+ lines long file, in a FUCKing mix of inline CSS/JS, PHP/SQL and FUCKing exec(); calls.
Definetily the best FUCKing way to destroy a FUCKing lightbox, for people who are not logged in...
- Why would you even do that in the first FUCKing place ?!??! The customer didn't ask for this..
All this FUCKing mess because the previous developer decided to quit, and did not FUCKing care for the next maintainer to come.
Fellow drupal developers will know the struggle.
3 -
Just resigned from my work at FAANG and damn it feels good.
Those golden handcuffs, damn, they are hard to get off.4 -
Reducers in redux is just like making caramel, you boil (action) the sugar (payload) until the sugar is fully dissolved into golden color (state). That's why the process of making caramel is also called reduction.2
-
COMMENTS BE LIKE...
Physics exam. Seems I was the special guy who did the task in a different (and almost correct way), so my teacher had to share some golden thoughts with me.
Passed anyway xD
6 -
My golden rule of debugging - Isolate issues by changing one unit of code at a time. Keep everything else constant.
Second most helpful rule - pick up the habit of fixing things by reviewing code, instead of relying on debuggers. Make you so much more aware of possible pitfalls while coding itself.1 -
I wish i can just stop shitting. I shit so much that im literally a shitbeast. Reminds me of that one NFT project that popped out in mid 2022 with artwork of shit. You could buy shit jpegs and sell them. Golden shit is more expensive than brown shit. You could even upgrade your shit to become a diarrhea and sell that jpg. Alright im done with shitting time to wipe and post this rant as my diary5
-
Okay ranters, I'm asking for your help.
I'm currently an IT Technician at a facility. I am doing this part time while finishing up my last year of college. I graduate in April of 2017. I just received a job offer to do Web Development part time in the same city. I'm not sure if they will work with my schedule, but they say they will. I will need to learn PHP, because I haven't used it yet, but learning a new language is easy for me. I'm done with most of the difficult classes in my CS program, but I will need some time devoted to study. I'm unsure whether the job is a golden opportunity or if I'm going to screw myself over and be unable to graduate. What do you guys think?8 -
I don't care about market cap. Stick your hype-driven business practices up your ass. Infinite growth doesn't exist. I won't read your fucking books and attend your fucking bootcamps and MBAs. You don't have a business model. Selling data is not a business model. Fuck your quick-flip venture capital schemes, and especially fuck your “ethics”.
I will be the first alt-tech CEO. I only care about revenue. The real money, not capitalization bubble vaporware. You don't need a huge fleet of engineers if you're smart about your technology, know how to do architecture, and you're not a feature creep. You don't need venture capital if you don't need a huge fleet of engineers. You don't need to sell data if you don't need venture capital. See? See the pattern here?
My experience allows me to build products on entirely my own. I am fully aware of the limitations of being alone, and they only inspire lean thinking and great architectural decisions. If you know throwing capacity at a problem is not an option, you start thinking differently. And if you don't need to hire anyone, it is very easy to turn a profit and make it sustainable.
If you don't follow the path of tech vaporware, you won't have the problems of tech vaporware, namely distrust of your user base, shitty updates that break everything, and of course “oops, they raised capital, time to leave before things go south”.
A friend of mine went the path I'm talking about, developed a product over the course of four years all alone, reached $10k MRR and sold for $0.8M. But I won't sell. I only care about revenue. If I get to $10k MRR, I will most likely stop doing new features and focus on fixing all the bugs there are and improving performance. This and security patches. Maybe an occasional facelift. That's it. Some products are valued because they don't change, like Sublime Text. The utility tool you can rely on. This is my scheme, this is what I want to do in life. A best-kept secret.
Imagine 100 million users that hate my product but use it because there are no alternatives, 100 people in data enrichment department alone, a billion dollars of evaluation (without being profitable), 10 million twitter followers, and ten VC firms telling me what to do and what data to sell.
Fuck that. I'd rather have one thousand loyal customers and $10k MRR. I'm different, some call it a mental illness, but the bottom line is, my goals are beyond their understanding. They call me crazy. I won't say it was never about the money, of course it was, but inflating your evaluation is not “money”. But the only thing they have is their terrible hustle culture lives and some VC street wisdom, meanwhile I HAVE products, it is on record on my PH. I have POTDs, I have a fucking Golden Kitty nomination on health and fitness for a product I made in one day. Fuck you.7 -
Smiling legendary golden boy #3 says:
HEY LETS PUT OUR INTERNAL GEMS IN THIS PROTECTED GEM SERVICE IT’LL BE GREAT :)
HEY EVERYONE SIGN UP FOR THIS NEW SERVICE! YOU GOTTA OR YOU WONT BE ABLE TO DEV! :)
HEY SO I COPIED THE INTERNAL GEM I WROTE INTO THE MONOLITH REPO INSTEAD OF USING THE SERVICE BECAUSE IM A FUCKING GENIUS :)
YOU WANNA USE IT IN YOUR PROJECT? HAHA GET FUCKED :)
jfcrant wasted a whole day on this jfc root tries adding an internal gem more like infernal gem legendary golden boys mr. smiley2 -
Mobile batteries are the weak link. Need a power source that powers devices for weeks rather than 1 day. Whoever solves this is golden!1
-
I came to the abandoned stock exchange to scour the ground for valuables left behind by dead brokers who killed themselves here. Watches, golden lighters, jewelry — all wanted to no one. I didn't care about where they came from. I was okay with wearing an old watch that I pulled off a skeleton hand.
Brittany had been missing for a while now. She lost custody of her kids, but everyone knew that was because Lake Mead turned them into calcified sculptures that got progressively tinier and tinier. Her though? Not so much. She was crying while fiddling with Lego-sized figurines of what was her children. “I don't care what anyone else says, I'm gonna make it right for you, because I FUCKING have a PURPOSE!”
The detached palm of my once school friend gripped mine. Couldn't get it off with force, so I stuck it you know where — I think he was disgusted, but his palm ran away quickly.
Another friend — uni friend now — was interested in making as much gesheft as he could during the semester. He had it on his reel-to-reel recorder. He didn't want to share his insights, but $500 made him talk. He was disgusted, though, as bills had my saliva on them. In exchange, I got the ability to pump whatever music I liked in the lecture room, as it was now mine. I didn't have to study — I already had a job. My uni was my coworking.
The last floor featured the room of nineteen Neins — a foot buttons that, when pressed in the correct order — will reveal the rape bathroom. It was huge and outdoorsy.3 -
have a couple friends now who have gotten dev jobs at microsoft. I've since turned down their offers to apply and have them vouch for me twice now - not sure if their recommendations would mean anything to begin with at such a place.
this has gotten me a lot of criticism from peers and mentors who have chided me for "throwing away a golden ticket" on my resume.
at first I declined because I sure as fuck did not believe I had the skills to last very long there - and truth is I probably still don't.
but now I see it as a case of the cliche "corporate devil" that everything I believe in in terms of software freedom is squarely against.
I mean, I don't really think I have the chops to make it far with the open source and free software communities either, but if I had to pick a dream or a goal to move towards, that would be it. I don't want money or reputation. I just want to be free to tinker with the world as I please.
maybe I'll have the courage next hacktober... but until then, I'm just gonna focus on learning and self-improvement. no one can ridicule me for being a dumbass if I'm actually putting in the effort to learn and improve, right?
would welcome any advice for aspiring open source contributors, as I'm not really sure where to begin that wouldn't make me look like a total hack (pun not intended)5 -
Apart of the fact that WordPress itself is one big hack, my most creative hacky solution was making it (dev) environment friendly.
First, I created a DB pull and push tool in NodeJS (on TypeScript). Then, because WP is so clever and stores internal URLs in full length in the DB, I had to create a DB migrator (find & replace) and attached it to the DB pull task.
After this, of course WP still has its config in one file, so I used composer to install phpdotenv and filled the config with environment variables.
Bundled with some good ol' Gitlab CI/CD magic, the website is now 10% sanely developable.
It feels like having to shovel piles of shit, but with a golden shovel. Everything stinks as hell but at least there is a tiny bling to it, temporarily.
But in all seriousness: WordPress is a god damn fucking pile of tumors!3 -
Give me your legacy, your undocumented,
Your huddled classss yearning to be bug free,
The wretched security holes of your multiple backdoors.
Send these, the testless, spaghetti-code to me,
I lift my keyboard beside the golden door! -
Today I found github student developer pack thing. It was the golden chance to sharpen my git skills at least I thought so.. 2 hours tried to figure out how does "merge" works in gitkraken and now I'm depressed..5
-
go fuck yourself with your fucking communities. i went into computing because i like being left alone. who are all those fucking freaks building their communities? this is capitalism mother fuckers, everybody in the world agreed on it, on each person being an independent individual doing their job to the best possible standard, instead these low-skill low-iq oversocialised sheeple started conglomerate into communities and brainwash everybody that this is what it is about. get stuffed alright. all my life i've been introverted, just leave me alone to write code alright? take my library i don't mind i'll take yours no strings attached, just push the code and forget about it. but no, all these degenerate morons without CS degrees have occupied our safe space, pushed us out of it and just can't get enough of using the buzzword "community-driven" "volunteers" volunteer my ass assholes you can't even make software nobody in real industry needs you because you have no skill at all you learn a bit of js which is any 14-15 yo can do and now think you're some kind of prodigies, unsung heros of humanity who selflessly bring the progress. nothing can be further from the truth - because of you we don't have real software, we don't have investment we don't get no respect everybody walks all over software engineers treating us like shit, there's an entire generation of indoctrinated parasitic scum that believes that software tools is grown for them on trees by some development teams that their are entitled to automatically, because some corporation will eventually support those big projects - yeah does it really happen though - look at svelte, the guy is getting 50k a year when he should be earning at least 500k if he had balls to start a real businesses, but no we are all fucking prostitutes, just slaving away for the army of people we never see. are you out of your mind. this shit should be fucking illegal alright it's modern day slavery innit bruh, if a company wants to pay their engineers to work on open source this is fine, i love open source like java or google closure compiler, but it's real software made by real engineers, but who are all these community freaks who can't spend a 10 seconds on stage in their shitty bogus conferences without ringing the "community" buzzer? you're not my community i fucking hate your guts you're all such dumb womenless imbeciles who justify their lack of social skill by telling themselves that you're doing good by doing open source in your free time - mate nobody gives a shit alrite? don't you want money sex power? you've destroyed everything that was good about good olde open source when it was actually fun, today young people are coerced into slavery at industrial scale, it's literally impossible to make a buck from software as indie unless you build something really big and good, and you can't build anything big without investment and who invests in software nowadays? all the ai "entrepreneurs" are getting fucking golden rained with cash while i have to ask for a 5$ donation? what the actual fuck? who sanctions this? the entire industry is in one collective psychotic delusion, spurred by microsoft who use this army of useful idiots to eliminate all hounour dignity of the profession, drive the abundance and bring about poverty of mind, character, as well as wallet as the natural state of things. fucking amatures of course you love your shitty little communities because you can't achieve anything on your own. you literally have no personality, just one homogenous blob of dumb degenerates who think and act all the same. there used to be a tool called adobe flash builder, i could just buy it, then open and make a web app, all from start to finish in one program, using tutorials of adobe experts on youtube, sure it might have had its pitfals but it was a product - today there's literally no fucking product to make websites. do you people get it? i can't buy a tool that i need to do my job and have to insult myself by downloading some shitty scripts from some shitty unemployed devs and hope my computer doesn't blow up in my face in the process because some freak went off his nut and uploaded some dodgy ass exploit on npm in his package. i really don't like. it's not supposed to be like that. good for me i build by own front/back end. this "community" insanity is just a symptom of industrial degeneration, they try to sell it to us like it's the "bright" communist future but things never been worst, i can't give a shit about functional programming alright i just need to get my job done mate leave me alone you add functional because you don't know how to solve the problem properly, e.g., again adobe flex had mxml where elements had ids and i could just program to id, it was alright but today all this unqualified morons filled the whole space after flash blew up and adobe execs axed flash builder instead of adapting it to js runtime, it was a crime against humanity that set us back to 1000s4
-
I don't know exactly what year my dad bought the PC with a hard drive of 4GB, but it was not in the year 2000 and following. I'm not sure if it was running win98 or win95. Probably win95. Aaah those were golden times.
I remember having no internet, but still having fun drawing images on ms paint.
Oh and there was a game named sesame street for that os. Sometimes I miss those times.3 -
What paradoxes taught me.
Perhaps each time a paradox is encountered in mathematics, there is a useful distinction or mathematical tool hiding in plain sight, one that hasn't be discovered or utilized. For cursory evidence I give you: division by zero, the speed of an arrow at any point in flight, and calculus.
Maybe this isn't true for some paradoxes, or even most, but as time goes on I suspect people will discover it is more true than they might have thought.
Undefined behavior and results aren't nonsense: They look to me like golden seams to be explored for possible utility when approached from uncommon angles with uncommon problems.6 -
heres something interesting:
The golden ratio is 1.618...
If you're not familiar with it, doing 1/goldenratio
the result is 0.618...
It gives you back the float component exactly.
Discovered that it is actually part of a series.
First of all:
2-(((5-sqrt(5))/2)-1) =
1.618033988749895 -> thats our golden ratio
In other words:
(2%gold) =
0.381966011250106
While:
((5-sqrt(5))/2) =
1.381966011250105
Ok, now we're getting somewhere. We can turn these into variables
First of all, lets see if we can get the golden ratio back out:
2-(((5-sqrt(5))/2)-1) = 1.618033988749895
Okay good.
The formula looks something like
j-(((i-sqrt(i))/2)-1)
Where j = (i*2)+1
That means we can easily figure out what j we need from our i value. (i-1)/2 = j
We run it back far enough we get
1-(((3-sqrt(3))/2)-1) =
1.3660254037844386
Thats the golden ratios little brother. Doesn't look anything like it, but it is part of the series.
And I found a boat load of research documents scattered *all* over the net, where this number and others in the series inexplicably crop up in power series, in chemistry, and elsewhere. Just looks like random floats if you don't know better.
We can actually go lower in the series:
0.5-(((2-sqrt(2))/2)-1)
1.2071067811865475
At the lowest positive value for j, we get
0-(((1-sqrt(1))/2)-1) = 1
It's kinda elegant.
I even wrote a little script to do the conversions:
def gr(k):
....i = k
....j = (i-1)/2
....return j-(((i-sqrt(abs(i)))/2)-1)
The dots are so devrant doesn't break pythons formatting.3 -
Open a older case in #JIRA and either I'm in past or this thing is messing with me today Jan 30, 2018
2 -
hello brothers (abd sisters) in code..
i'm not a front end dev, but i had to create a front end application sometime ago. since i don't really know how to create things, i used the golden ratio in almost everything, to try to get a "pretty" app ..has anyone tried this before, or is it not a good thing? since buttons have to scale based on windows resolution, and space left, was this a good idea?5 -
not a rant. I like poetry. Am a poemfag.
Be very impressed. VERY IMPRESSED!
Okay, well, just cringe through it at least. Smile and nod. I hope formatting doesn't butcher this.
"A King"
a king came to me one day
and claimed you will be my son!
and fame, and fortune, and all things good
yours your cup to overflow, overrun!
happiness and princesses, acclaim to your name
a life of leisure and of ease
land rich in treasures buried,
and swarthy ships on deep seas!
All these things, of emperors and kings
Will be yours to command! Though I warn
you my fair son, it is not as it seems
a charmed life is not grand
for though the riches of this earth
at your call, at your hand,
should find you at my passing, in your wealth
it is a kings fate to be damned
wealth to grave you can not take
and princesses demanding wives are one to make
and ships in harbor soon they rot
and health in age gives way to ache
and land is lost which once hard fought
truly that is rare the happiness which can be bought!
so upon the kingly head, heavy rests the (golden) crown
and though surrounded by apparent friends
never must he let his guard down
and ease which spoiled by fear of loss
magnified by all he'd gained
weary king, my boy, tis his lot,
to die a thousand times,
but never grow old again,
so heed these words my boy
it is not the wealth, or fame, or ease
that makes a man great my son,
but his words and his deeds!2 -
Client: I'm not able to see the mount storage
Me: share your configuration
Client: 📃
Me: (frustrated but still kind and polite) I see the ports are swapped between hosts which is the culprit behind the issue.
Me: can I ask the reason behind doing this?
Client: I thought red color goes left and aqua goes right.
Me: 🦍 🤐🤐 -
!rant
Went from uni to my car to drive back home. Engine doesn't start, And report of low oil level is showing up. Hmmm. I've opened hood and checked oil level. It was empty. First thought. I drove here with no oil so I broke the engine. Great... I bought some oil and refiled it. Still same problem. I've called my insurance company and my mechanic. And then. Brilliant thought evolved. Did I turned off ignition on secret switch today? Yea it was it. Had to call everybody again and cancel my AC request. Gosh, I hate having memory of golden fish...
Also. Hi everybody. my first !rant3 -
- The golden rule of CoffeeScript is: "It's just JavaScript".
- Nice!
- And provides a basic class structure that allows you to name your class, set the superclass, assign prototypal properties, and define the constructor, in a single assignable expression.
- No nO NO NO! -
I had a dream about the end of the world. Corona won. Almost nothing works, almost all the people are dead. But we are, with those who are still alive, chilling and having fun looking at destroyed, burning Golden Gate.4
-
How rotten and half bitten is this most valuable Apple? See that they get quite some bashing for their latest Catalina release. And they deserve every portion of it, I think.
Honestly, when I saw our testers going through the different betas, which hardly installed and on which our software kept behaving differently, nevertheless they pushed their Golden Master and released. Didn't seem a good idea.
Currently I had to update to Catalina to check some small broken feature of ours and now the active window keeps on losing focus every few minutes. Have to grab the mouse and click there again to continue working. Really fucking annoying. Hope I can track it down some time.. or trash my iMac.2 -
Worst: lost my job due to the pandemic, and struggling to get interviews! Yes in spite of how well i did at my previous role (and please don’t give me crap about how they never would’ve laid me off if I was good, you’re just saying that to stroke your golden e-penis, you fucking reptilian scumbag) and with all that “experience” on my resume, I’m apparently not smart enough for these companies to even bother with. Yes if i kept failing tests a blind monkey would pass i would question my ability but that’s not the case. Yes my stack may be old but learning these newer tech stacks that recruiters love is a total cakewalk for me! They do so much cognitive lifting for you that I worry that if I don’t practice lower level stuff my mental capacity will diminish which is why I still solve leetcode problems lol.
Let’s not forget, I lost my dog this year too ☹️3 -
Hindersi Magronä recipe:
- Butter
- 2-3 Onions, diced
- 300g Potatoes, diced
- 350g Maccheroni or just pasta
- 1 table spoon of dried chicken stock dissolved in water
- 20-30ml of hot water
- 30ml Heavy Cream
- 300g Parmigiano Reggiano
- Diced Bacon
- Coat a pan with butter
- Add onions, bacon and potatoes
- Cook untill onions are lightly golden
- Add the stock and stir
- Add the pasta
- Add enough hot water so its level is ~1-2cm above the pasta
- Cook untill the pasta is "al dente" and let the water evaporate untill ~1cm above the pan
- Add the heavy cream and cheese
- Cook and stir for 2min
Et voilà, Mac N Cheese with extra steps7 -
Editing rants i wrote more than five minutes past.
Edited on my Huawei P8 mini lite with dual sim slot, golden color with 32gb sdcard.2 -
I subscribe to many copywriting newsletters. Here's an article that shows how it's like on "the other side", marketers struggle, too.
How Kevin's Massive Mistake
Completely Changed His Life
Kevin H. made a huge mistake.
The biggest, he would say, if he could tell you himself.
And he knew it immediately.
It was, he said, "instant regret."
Within milliseconds, he was asking himself "What have I done..."
Kevin, see, had just jumped the rail of the single most popular suicide spot in the world, the Golden Gate Bridge.
On average, the site gets another distraught jumper every two weeks. Kevin was one of them.
It wasn't like he hadn't tried to quiet the voices in his head. Therapy, drugs, hospitalization.
Time to die, those voices still said.
And yet, in the minutes his bus dropped him off at the bridge, he hesitated and paced with tears in his eyes.
"I told myself if just one person comes up to me and asks if I'm okay... if one person asks if they can help... I won't do it. I'll stop and tell them my whole story..."
But nobody did, so he jumped.
It was in those next milliseconds, he would later say, he knew it was the biggest mistake of his life.
He didn't want to die.
But now, he was sure, it was too late.
From its highest point, it's a 245-foot plummet into the icy bay waters below.
Out of the 1,700 people that have jumped from the bridge since it first opened in 1937, only 25 have survived.
Kevin, against all odds, would be one of them.
He slammed into the water like hitting concrete. Three of his vertebrae instantly shattered.
When he surfaced, he couldn't hold his own head above water. But, incredibly, a sea lion kept pushing him up.
The Coast Guard soon arrived and pulled him out.
From there, he began a long recovery that required intense surgery, physical therapy, and psychiatric care.
While still under treatment, a priest urged him to give a talk to a bunch of seventh and eighth graders.
Afterward, they sent him a pile of letters, both encouraging and full of their own pained thoughts.
He also met a woman.
Today, Kevin lives in Atlanta and he's been happily married for the last 12 years.
And he tours the country, sharing his story.
So why re-tell it here?
Obviously -- I hope -- you don't get lots of copywriters looking to snuff it after a flopped headline test.
Just the same...
We've talked a lot in this space about the things one needs to get by in this biz.
My friend and colleague Joe, over at the publishing powerhouse Agora Financial, likes to list requirements.
You need intense curiosity...
You need a killer work ethic...
And you must, MUST have... resilience.
Meaning, you must have or find the capacity to bounce back from failure and flops, even huge ones.
Now, again, Kevin's story is an extreme and in this context -- I hope -- a hyperbolic example of somebody giving up. In the worst way possible.
It is also, though, a metaphor.
See, I get a lot of notes from some of you guys... and at conferences, I get to talk to a lot of people...
And I often get the sense, from some folks, that they're feeling a little more overwhelmed than they let on.
Some are just starting out, and they've got a lot on the line. For some, it's everything. And some are desperate to make it work.
Because they have to, because their pride or livelihoods or a family business is at stake, because it's a dream.
And yet, they're overwhelmed by all the tips and secrets... or by piles of confusing research or ideas...
For others, even had some success, but they're burned out, feel antiquated, or feel like "imposters" that know less than they let on, in an industry that's evolving.
To all those folks... and to you... I can only say, I've been there. And frankly, go back there now and again.
Flops happen, failures happen. And you can and will -- even years and decades into doing this -- make the wrong choices, pick the wrong projects, or botch the right ones.
The legendary Gene Schwartz put it this way, according to a quote spotted recently in fellow writer Ben Settle's e-letter...
" A very good copywriter is going to fail. If the guy doesn't fail, he's no good. He's got to fail. It hurts. But it's the only way to get the home runs the next time."
Once more, nobody -- I hope -- is taking the trials of this profession hard enough to make Kevin's choice.
And believe me, I don't mean to make light of the latter. I just want to make sure we hit this anvil with a big hammer. To drive home the point that, whatever your struggle, be it with this biz or something bigger, that you don't want to give up. Press on.
As Churchill put it, "Success, is the ability to go from failure to failure without losing your enthusiasm."
Or even more succinctly when he said, "If you're going through hell, keep going."
Because it's worth it.
.
John Forde -
"Fast" random-number/sample based estimation of logarithms:
https://pastebin.com/niVB57Ay
The result of rAvg(p) is usually "pretty close" to log(p)/2
rAvg(p, 1000) seems to be the golden number. 100 is a little low, but I've already pasted the code. Eh.
Don't know why it works, or if average results are actually considered "close" for logarithms of e.4 -
My day couldn't start in a worse day.
We are having a demo this week and I worked yesterday after hours to get the product ready. Tested everything and we were all set for the demo content.
Today we installed the new version with my fixes and nothing worked. Today's version should be the golden version to prep the demo! Obviously everyone starts looking at me as to why nothing works both worried and eager to help. But I got so stressed I just wanted to dig a hole.
Luckily after going through the logs a colleague of mine pieced together something he heard about another colleague on another location we have submitted a fix (without telling our location) that f**ked up the whole system.
Luckily we reverted it since the system was better without it and got it stable again but after all of that I had to go rest because until we found the answer I was starting to think I couldn't get one thing right. I think it was the most stressful moment in 5+ years on this job4 -
I did a little bit of finger practice in Unity, nothing fancy just two spheres and a capsule-guy under Newtonian gravity and a force-driven player control script that works on spheres.
I will never understand how C# libraries spontaneously decide that some operations will be nonvirtual methods while others will be static methods. It is the exact same thing! You're just ruining intellisense for no conceivable reason!
Also, transform has a right but no left, the float return value of Vector3.SignedAngle is not the same unit as Transform.Rotate(Vector3, float), Transform has LookAt(Vector3 position) but not Look(Vector3 direction), to do that you need to
transform.rotation = Quaternion.LookRotation(Vector3.ProjectOnPlane(transform.up, direction).normalized(), direction)
you can't discover whether a collision encountered sticky or dynamic friction, you need to infer that by calling RigidBody.GetPointVelocity on both RB-s at the collision point, which has its own quirks. Apparently this is to keep the API engine agnostic, but any serious project will have its own physics materials which already specify the sticky friction coefficient. A simulation that works correctly with physics materials but doesn't discover the kind of friction as an intermediate result is not possible.
RigidBody's velocity isn't displayed in the GUI, so you can't give it an initial value without a dedicated script. I have a script on this fucking moon that does nothing but add a force in Start.
Is it just me or does Unity feel cheap somehow? Like a hastily written library for a research project that was never rounded out with the obvious features. I understand that it's a free product that catalyzed the golden age of indie game development, but I think it's seriously struggling to keep up, not with the showy investor bait stuff, but with the standard of comfort modern tooling provides.7 -
Weeks later and I’m still watching a former client/friend completely thrash his own website trying to do what I had been doing for him. When I built the thing, I did so in anticipation of him wanting to take it over so I made it as easy as possible. All we needed to do was have a one hour or less meeting to go over some particulars and he would’ve been golden. But, no, he deleted my access and tried to go it on his own. If he EVER comes back begging to have me fix his problems, I swear I’m going to have the biggest belly laugh of my existence right in his face. No. Freaking. Way.
-
Question, !rant
To all my fellow Java devs, what are some things that have come out in JDK8 and JDK9 that you think are the most useful?
I know very little about the new features, but after learning about lambdas I wondered what other golden nuggets there might be. Thanks in advance!1 -
Really really just want to be healthy and comfortable you know
Like in the golden age before my faggot parents generation eradicated everything health depended on6 -
Ok completely unrelated to develop stuff but has anyone else started watching the unmasking a killer series? Holy shit it is so fucking good. They brought on actual victims of the East Area Rapist/Original Nightstalker/Golden State Killer and it just fucking shows how scary it is. It's such an interesting documentary.
-
When agile is everywhere (including toilets). Do you want me to poop in agile way? 💩💩
What can be the agile way of shitting?
2 -
Okay so i want to do visualisations, like visualise pi or golden ratio or working if a triple pendulum, trace parabolas and stuff. Which language do i use and why?5
-
To anyone who ever got annoyed at all the "thanos was right" people who repeated it to the annoyance of everyone, for months on end: the studio did it so the Hollywood misanthropes could sell their doomporn malthusian claptrap to the subset wanna-sound-smart crowd of farthuffering intellectuals in the public.
Now you can't walk six feet without every other dude and their f*cking dog spouting off at the mouth about "thanos was right!"
Like no shit? You DONT SAY! None of us could have possibly had this brilliant and never-before-experienced flash of revelation opinion of thanos. As insightful and innovated as the man who once realized cat rhymes hat. Truly a legend worthy of admiration and accolade.
pure nonsense.
Hes a mass murderer. An absolute monster based purely on the scale of his actions. The scale of his murder elides over any moral considerations of intent or pretensions of intent, and sincerity no more absolves him than sincerity absolves a terrorist.
What this movie should have done for all the thanos dickriders or would-be dickriders, is taught a valuable eye opening lesson: how easy it is make people in general agree with anything--anything at all, no matter how appalling, how monstrous, so long as the instigator is framed sympathetically on the golden screen. It should have opened your eyes about just how powerful and susceptible you and anyone else are to propaganda.
Dont believe me? Take your most hated politician, left or right. Now imagine they did exactly what thanos did.
Would you still be ok with it? Of course not. Because the fallacy here is to impute moral or logical worthiness onto a cause simply because the agent of it is sincere or can be empathized with.
More generally, Thanos actions presuppose that population control is not a social and technological issue, which it is, and like everything else will come under the pressure of technology. On a long enough timeline then it's a self limiting problem (by definition).
Which is what makes this example of propaganda so vicious: precisely because this subset of the public is so vacuous and infantilized as to actually believe movie logic malthusianism is the same as reality.
The reality is the material conditions of life, even in places like*india* have so markedly improved because of technology *exclusively* iterated on *solely* because of population pressure, that many of the most impoverished people live in such wealth compared to their ancestors just five thousand years ago, that they are kings by comparison.7 -
Image Voyager with it's golden record is found _now_.
How disappointed would an alien race intelligent enough to decode and understand the pictures on there (which - imo - show us as civilized as possible) be, coming here and find us just waiting do die because of shit we did by ourselves.
Hard to imagine an extraterrestrial race is in any way like us, but it's even harder to imagine them coming to us, maybe even hoping for peace, because they live through the same shit as we do - just to find more shit.
They didn't include war, poverty, disease, crime, ideology, and most important: religion in the pictures on the record. stuff that essentially made us who we are today but at the same time show us at our worst.
we know what's shit about our behaviour and we don't want to show it to aliens but we don't change them at all.
wtf1 -
Lately, I've been working in a web security company (mainly as a Support guy).
Going through tickets, I've found one golden gem, which helped me realising how dum customers are.
Since he's our customer, we try to keep stuff up-and-running at all times. If something goes bad, we fix it, and we need their passwords for stuff.
After the customer (somehow) got hacked again, he changed the password in panic.
Note the initial password was really, really good.
He emailed us the new password for "just in case".
The password is "hard-to-guess".
What. The. Actuall. Fuck.
What's next?
Setting the password "12345", activating 2-step-authentication and sending his phone in, along with his finger so we can unlock it with touch id?2 -
I have gained quite a lot of coding confidence recently.
Im quite confident i can deploy a full working application or a mobile app.
I have some inspiration bit i am still not sure of how much work/investment does it take to make something that generates money.
Of course im not including million dollar ideas. No my goal is to make small apps/applications or freelancing jobs off work to generate some extra money (noticeable enough that the investment is worth the return).
Obviously the best way to learn is to dive in and im not asking to know about your golden egg that you are harvesting.
But do you have any tips/advice or experiences to share?3 -
2 min silence for my friend.
who got contract to edit and make golden frame of "naga baba"
he have to zoom each and every part of naga baba to clear and make render image.
xD XD16 -
Unguided code style decisions and the whole personal style things sometimes display an intention behind a piece of code. They can hint on semantics and relations between the pieces of data or operations, like it's often the case with grouping that doesn't separate bunch of statements with a blank line. Sometimes, they can even carry an emotional message. Love, hate, grudges, deepest affection for some golden hammer feature of the language, everything is on the table actually. For instance, this is what fear looks like:
3==o -
!rant Just an observation. There is a lot of discussion about syntax. Should it be tabs or spaces or should the opening bracket be on the same line as the method/function. There is 101 languages and standards. Syntax varies and you just can't learn it all.
What is more important? Result or the aesthetics? If you come into a project you adapt. You use the syntax everyone else is using. If you are a part of starting a project you agree on rules of engagement and stick to them so the team works at maximum efficiency. If you lead a project you define the rules by adapting to your teams habits. Because in the end it's the working product we are after.
Golden mean.1 -
I.miss watching the golden girls with my mother and wings and innocent things.
I miss the world we should be Heading towards fuck this cynical heartless time period to death -
got employed as web developer, had to make an app for test, so i made simple PWA, you can search videos and you have related videos on the side, basically search videos and watch them with simple list of related videos on the side.
idk how i ended up being tester and bug hunter in this huge ass pile of spaghetti extravaganza.
all i do is wasting my talent on hunting and resolving bugs on a legacy-code apps, don't remember when was last time i actually wrote some feature, oh yeah i do, last month but that was refactoring/fixing.
so i am stuck on weird tech stack someone build with shovel, feels like they were having that famous golden hammer.
what interests me is something i will never do at this company and still i am trying to help them to fix the app to have better product.
It is hard when you feel like you are third and last person in whole company that cares about actual product, rest of devs just fixing things with quick workarounds, hacks and lousy patches.
I really tried, I did, I was excited as I saw opportunity to one up the product but got stuck with the rest of the devs fixing bugs instead of fixing the whole codebase, I tried to introduced improvements but we don't have time cause fixing bugs means happy customers, better codebase takes more time and means impatient customers are unhappy!
I think it is time to sail away.
So folks, any thoughts or feelings?1 -
Playing Overwatch for 4 hours straight when I was supposed to be working on my side project. What is worse that I am still golden ranked. Keep finding crappy teams :(
-
Ugh. Where to begin!
If you gotta make a standard for everyone to follow, you better make it readily available. Even though you barely have any users, but if it's a standard, anyone can try to follow it tomorrow. Or else take it down completely.
There's a standard for learning tools handled by IMSGlobal (Don't ask who they are, no idea). So if you want to build a tool to integrate with different learning platforms, follow this.
OK now, to read the documentation you have to register for an account. As if this is bad, ....... wait for it ........, sign up has to be approved by an admin. My request is already weeks old but not approved.
OK. Google around and try to see if some alternative can be read than that shitty website. Apparently, they have a Spring plugin on GitHub that can be used as a Maven dependency. It has a small readMe attached so I can get something out of it.
And I'm using Spring, golden right? Not quite...............
turns out the stupid readMe is outdated. If you follow those instructions, you get errors. WONDERFUL!!
Now I have to dig through all the code files and try to make sense of what I'm supposed to do. -
Oooh no. A golden fish would do. A Leprechaun too. Maybe I'd give a shot with a unicorn. But God sees I'm not going to have any business with geanies! No sir! Especially when we're talking about important matter, like dev!
-
The worst meeting I was in I didn't know how bad it was until later. It was my first week at a new job, and I mostly just spent that week pulling tickets off of the top of the backlog and getting acclimated to the build environment and the project structure.
The meeting was a "sell off" where we would "sell" our efforts to the product owners, which were executives. After my project mentor went over the things we had accomplished, an executive asked why we accomplished those things but not the things that were asked for. I don't recall everything that was said, the basically our project manager threw us under the bus.
After the meeting, I looked at the backlog, and nothing that the Executives talked about was in the backlog, nor anywhere to be found. Our project manager, expected us to just "know" what we were supposed to work on, and create our own user stories. Apparently, what I found out after, was that the project manager went to one of the executives and complained that we, the developers never did what he asked and that we were just rogues working on whatever we wanted to work on. He was our project manager for another month, and he never created any tickets for us, even after two hour long meetings with the project owners. I honestly don't know what he did all freakin' day. He was always in work early. I'm sure a quick brush through his browser history would reveal some interesting things.
The results of that meeting led to this developer to not receive a bunch of RCUs with the rest of the developers amongst another things. Turns out those RCUs were golden handcuffs for everyone else. He left sometime after that and found another place. I interviewed at that place, too and got the job. Now I have the shortest, most productive meetings ever. -
You can make your software as good as you want, if its core functionality has one major flaw that cripples its usefulness, users will switch to an alternative.
For example, an imaginary file manager that is otherwise the best in the world becomes far less useful if it imposes an arbitrary fifty-character limit for naming files and folders.
If you developed a file manager better than ES File Explorer was in the golden age of smartphones (before Google excercised their so-called "iron grip" on Android OS by crippling storage access, presumably for some unknown economic incentive such as selling cloud storage, and before ES File Explorer became adware), and if your file manager had all the useful functionality like range selection and tabbed browsing and navigation history, but it limits file names to 50 characters even though the file system supports far longer names, the user will have to rely on a different application for the sole purpose of giving files longer names, since renaming, as a file action, is one of the few core features of a file management software.
Why do I mention a 50-character limit? The pre-installed "My Files" app by Samsung actually did once have a fifty-character limit for renaming files and folders. When entering a longer name, it would show the message "up to 50 characters available". My thought: "Yeah, thank you for being so damn useful (sarcasm). I already use you reluctantly because Google locked out superior third-party file managers likely for some stupid economic incentives, and now you make managing files even more of a headache than it already is, by imposing this pointless limitation on file names' length."
Some one at Samsung's developer department had a brain fart some day that it would be a smart idea to impose an arbitrary limit on file name lengths. It isn't.
The user needs to move files to a directory accessible to a superior third-party file manager just to give it a name longer than fifty characters. Even file management on desktop computers two decades ago was better than this crap!
All of this because Google apparently wants us to pay them instead of SanDisk or some other memory card vendor. This again shows that one only truly owns a device if one has root access. Then these crippling restrictions that were made "for security reasons" (which, in case it isn't clear, is an obvious pretext) can be defeated for selected apps.2 -
https://youtu.be/yYUuWWnfRsk
I used to dream of systems which were built into the infrastructure for a variety of reasons
One was I didn’t feel object detection was likely good enough to handle various objects say to stock shelves in warehouse like stores
The other was power
If the stretch works one might wonder how many of them they’d have to employ to schedule them to recharge themselves throughout the day
It’s a shame humans as is can’t be trusted with too much free time given how the boomer generation and before willfully poisoned the minds of so many of their offspring creating this mess
We might have reached a point where life was mostly personal Enrichment and study and exercise and leisure where we all lived over a 100 years had minimal offspring reduced our destructive footprint on the world and well you get the idea
With more people working in closed shops we might have even reached this tech sooner
I wonder how prohibitive the price tag is how fast it runs out of power how destructive it is to non durable goods and the what other faults that have kept us from advancing into the golden age the last time I posted this before way way back now
Or maybe rich perverts don’t want to give up their monopoly of control over other peoples lives once were forced to change our lives economic system to adapt
Issue of course is population size
The replacement to honest labor and ingenuity or making a better world in the USA has been a short cut we commonly call slavery and that creates incentive for them most of evil people to breed continually and sell their children
Population in a time period of extreme leisure under normal circumstance would likely fall off
Humans would want to enjoy endless travel which is another problem if we keep cars that are based off fossil fuel
Much like increased tech has the trade off of increased usage of energy that is dirty like our nuclear plant problem in the USA where many places aren’t even carting their waste to Nevada down the 10 mile tunnel they’re supposed to be
So we’re stuck
Oh well
Hopefully there is reincarnation
Maybe I’ll come back as a cat
People just had to pull their insane shit when I was alive
Why couldn’t it have Ben something Normal like war or occupation or just hardship of some form instead of designed hardship to control good people and pattern bastards into this weird shit I see all around me because they’re both evil and afraid of losing what they have
Doesn’t this seem familiar ?
It should
Just like the competitors to Boston dynamics I’m looking up have been spawned as a result of YouTube presenting me with the same video as part of its algorithm heh
And also be because I mentioned that before6 -
How are redhat docs SO EXTENSIVE yet SO USELESS if you need to use it as actual user documentation? I thought they had their shit together, but after two days struggling to find any useful information I found a golden stackoverflow answer (sorry, but it's true) which - in my opinion - should have been the official "getting started" documentation entry for firewalld...
Everybody expects that you have your basic set of ports open (ssh for example), but nobody ever covers the configuration for that very important port 22 before you are locked out of your device. Thanks harperville if you're on here <33 -
https://youtu.be/zQJqu675Ino
Best morning song translation:
https://lyricstranslate.com/en/...
Give me the flute and sing
for singing is the secret of existence
And the sound of the flute remains
After the end of existence.
Have you, as i did, taken the jungle
A house without limitations
Have you followed the Runnels
And climbed the rocks
have you bathed in its fragrance
and dried yourself in its light
Have you tried drinking the Dawn as your wine
out of divine cups
Have you, as i did, sat in the afternoon
Between the grapes plants
with the clusters hanging
like golden chandlers...
Have you, as i did, slept on the grass at night
And used the sky as you blanket
Ascetic in what will come
Forgetting what has passed
Give me the flute and sing
Forget the disease and medication
For people are only lines
written with water -
Is privacy really that big a deal some of the more tin-foil hats make it out to be? Look at Estonia, their government knows every last detail about an individual citizens life. Result: they are basically in a golden age as everything is efficient as there is zero red tape. This is what technology can achieve if we don’t bog ourselves down with non-issues1
-
In 2027, Trump will amend the constitution to allow himself to be re-elected again in 2028.
In 2031, sex offender registry will be shut down. Every pedophile will be pardoned. Trump administration will establish "Pedo Pride WorldWide" event, which will have overwhelming success. Then, Trump will introduce the Pedo Medal of Honor that will look just like the regular Medal of Honor, with brown band instead of blue, with the outline of the Epstein island instead of stars, and the golden profile of Donald Trump instead of the medal. After one year of daily awarding, the US of A will run out of gold.
Then, Victor Orban and Olaf Scholz will migrate to the US of A using the new Pedo Green Card, talking all their friends with them.
Then, trump will re-elect himself (sic) again and lower the age of consent to twelve for girls and ten for boys.5 -
How I got my first Free Swag?
I stole it?
Obviously no,
So it dates back to year 2016. After learning about open source project and working with few organisations, I noticed few contributors and developers with t shirts having logo of the company or organisation.
I mean if you see a guy wearing google tagged t shirt don't think he works in Google, he might have purchased it.
Next, I started searching for ways to obtain one. I reached and texted developers and all they told me were two golden rules.
1. If you develop something or update something, showcast it.
2. Always show the organisation what you do for them, even if it small contribution.
After this I started mailing and texting the contact mail id of companies and organisation I worked and contributed. Some texted me- no we don't have free items, some said we can't ship to India.
But out of 100 replies with 85 negatives, I recieved 15 positive replies. I was amazed to know that I'll recieve one.
You know what I was showered with
Stickers
T shirts
Laptop skins
Keychains
And many more.....
This Rant is for you to motivate and showcast what you do.2 -
Brazil's president likes twitter. He is also a very dumb person:
https://twitter.com/jairbolsonaro/...
Translation: what is golden shower?1 -
In Russia, battle rap is huge.
The most viewed battle rap video of all time is Russian "Oxxxymiron vs Slava KPSS" with over 46 million views and one million likes.
As it usually happens in rap, initially the Russian battles was nothing but dick jokes and yo mama puns delivered aggressively, but as the new, intelligent rap culture was brought to life by Oxford graduate Oxxxymiron, Babangida and others, rappers started to see battle rap as a way to express their own ideas and picture of the world.
Today, if you don't know what was the philosophy of Kant and Hegel all about, who is Slavoj Zizek and if you didn't even read Joseph Campbell's "The Hero with a Thousand Faces", they won't call you a retarded loser – they just won't talk to you.
In Russian you can put the words into sentences almost any way you wish, which allows intricate poetry and many additional meanings.
Many see today's Russian battlers as direct descendants of The Golden Age and The Silver Age of Russian poetry. They are just that – more poets than rappers, and they deliver really sophisticated rhyme structures really often.
Despite that, their flow is also solid, with grime, doule-time and even constantly altering flow with the changes performed flawlessly.
Some compact punchlines are so complex that they unfold in a whole new picture as you google trying to understand them. They are virtually untranslatable, requiring a lot of cultural and philosophical context to even scratch a surface.2 -
Just for fun, so if you don't like fun, or humor, stop reading.
Someone in a thread once suggested toppling KFC (a joke of course)
But really, think about it, topple KFC? Why? Everyone knows Chick-fil-A or Wendy's will replace them one day anyway.
Join the "fresh never frozen" rebellion today.
The colonel is some fucking confederate-type anyway.
Clearly KFC appears to be part of the giant commie pinko modern slave state.
If they were real homies they'd sell grape drink.
But do they?
No.
Because it's all about them profits.
They want to be Master.
What's next we're all gonna be forced to wear chicken suits and stand in line begging for tendies while praising a giant golden idol of colonel Sanders like some 2021 throwback to an Aztec god?
Probably Human sacrifices after that. It's an old ritual. When civilizations (we live in a society) run out of meat what do they eat?
Soylent green is people.
Finger licking good.
Praise Sanders. (And please don't sacrifice me next Mr. Sanders! Ill work harder at this writing thing I swear!)6 -
Anyone else feeling like this html, css, js, vue setup pattern, vite, vue-router, pinia - etc - is a bit of. Golden moment?5
-
JUST IN: The unexpected sequel to my previous rant that NOBODY asked for!
I'll give it to you in dialogue form as it's more dramatic and *juicy* that way...
(Context: wizard used the warrior's blood, who descends from an ancient lineage of powerful sorcerors, to cast a high-level spell which allowed the party to teleport to safety when they were trapped and about to die. The warrior is worried about his crazy use of black magic, so she confronts him about it.)
"Alright, old man," she says, her tone serious, yet tinged with concern. "I couldn't help but notice the... let's call it 'unorthodox' spellcasting earlier. What was that about?"
"Well, you wanted me to draw the circle using golden dust and a lamb for the sacrifice?" Uzair raises an eyebrow, his tone riddled with sarcasm. "Because spells of that level of complexity require both things, you know? A circle and an offering." He explains calmly, then shakes his head. "But turns out, the blood of an Ashaffi accounts for both things if you draw the sigils with it. Hey, don't blame me, your own ancestors invented it!"
"Very funny, Uzair." Hashade crosses her arms, her expression unamused. "But seriously, that shit was utterly deranged. I can't have you going all 'Black Scorpion' on our ass, what with the demented use of blood magic, needlessly setting entire buildings ablaze and that mother fucking all-incinerating black hellfire inferno." Her voice is stern, but her eyes show genuine care. "You're... __BREAKING BAD__, old man! You have to chill."
"Oh, so is my wizardry getting on your neves now, is it?" He recoils back slightly in suprise, feeling offended. "We just spanked the Sanie's Guild buttcheeks until they were red and swollen, then proceeded to __FUCK__ them in the ASS with a *DIAMOND* fucking COCK. And you're complaining?"
Hashade's eye's reveal her agitation. "I'm not complaining, I'm concerned! We're not just fighting for ourselves, we're fighting for everyone else too! And if you start playing fast and loose with that kind of power, we're gonna have more than just *one* black smoldering crater to deal with." Her voice is firm, but it's clear she's trying to keep the situation from escalating. "Look, I know you're powerful, but that's not an excuse to go full-on mad scientist on us. We gotta keep our shit tight, yeah?"
"Concerned?!" He tilts his head to the side. "What, you think I'm becoming evil? Come on, spit it out!"
"Evil? No, I don't..." Hashade sighs, running a hand through her silver hair. "Oh no, you know what, yeah. I do. I think you're slowly turning evil." Her expression hardens. "You swapped your book of supplications for a grimoire detailing the most horrible shit in excruciating detail! You shouted out 'G-d is great' while witnessing a disastrous explosion that left everyone else traumatized! You joked around before and after cutting two guards in half, for fuck's sake!" She lowers her head and pinches her nose bridge. "I don't know, I'll admit that, I just don't know what's this shit that's gotten to you. But I don't like it, I really don't. I don't like where this is going, old man!"
"Well," He said, calmly. "you killed El-Fuqer by forcing him to eat his own cock and balls while sowing his ass shut and then took a fat stinking dump on his face." He quietly recalled the, ehem, 'little' incident. "But see, I don't waggle your fucking nutsack about the fucked up shit you've done. And I'm not going to start now."
"THAT'S DIFFERENT! THAT WAS __JUSTICE__!" Her eyes flashed with anger.
"JUSTICE?!! YOU CALL SHITTING ON A CORPSE 'JUSTICE'?!!" He pushed her to the side and stormed out. "I MAY BE AN EVIL WIZARD, BUT I NEVER DEFECATED ON MY ENEMIES, HASHADE. NEVER. FOR FUCKS SAKE!"
"Wait!" Her voice cracked. "You can't just leave like this!"
"I can." He didn't even look back. "And I am."
"I'm not leaving you alone!" She strides closer to him, ignoring the sting of his words. "I can't let you destroy yourself like this!"
(ROGUE BUSTS IN THROUGH THE KITCHEN) "ALRIGHT, ALRIGHT, YOU TWO, GET A ROOM ALREADY!"
~ F I N ~ -
Random learnings/realisations/hypothesis:
i have found a sense of happiness in weird symbiotic environment : being rich in a poor environment and live with a poor-but-secretely-rich lifestyle.
i call it the "sheep-hoodie" lifestyle: being a wolf in a herd of sheeps but not with a sheep's skin glued to your body. rather a hoodie so you can be a friendly wolf , ferocious wolf and a friendly sheep whenever you want to.
my 1 group of friends are in a sheep phase : struggling in their life , crunched on money, not saving a lot or focused on savings and stuff. At least that's what shows up from their discussions. however when we are together, i see that we are always supporting each other, and sharing resources/helping each other while having fun
my another group of friends have a wolf lifestyle:
they are insanely rich, if you want to party/do something with them at 'their' level, you gotta have a lot of cash to burn . they are wolves because they know how to sell their stuff, whom to sell and how to retain the info for success. i don't enjoy much with them as their solutions to life problems end up with something that involves a lot of money than effort.
So my lifestyle is to earn like them, but live like my broke friends. they think that am earning 20% of what i earn now, and am also in lots of debts and family crisis. someday my lie is gonna burst when i buy expensive stuff lol
--------
#2
i have realised that i have an OCD for silence and psychotic reaction to noise . for me ,
Silent Environment >> sex >> any relationship.
I might react so aggressively to noise while trying to focus that i may end up breaking the closest of relations with anyone
--------------
#3
thinking of having 3 twitter accounts just to fix the problem of devrant not saving content of dormant accounts :
- professional : an id where i will share my professionally stupid questions, achievements, debates etc
- personal/partial-anon : an id where i will share my personal thoughts and stuff. it might also include devrant screenshots / embarrising content that i make here
- true-anon : a full anonymous account for my(some) extreme thoughts, trigger content and explicit researches
my current twitter feed is a mix of first 2, but making 2 seperate accounts might give me more freedom(the level of devrant) to express myself than what i do now (as my followers are also interesting people but mostly related to tech)
guess i should move my tech content there than my personal content.
------------------------------
#4
making an early opinion about something should only be done to research for truth/content/conversion/hype . final opinion should always be made after you trust something with a research. for eg, initial opinion of Elon Musk was he being a bad guy, but now after seeing his crazy ideas and approach towards twitter, he looks like someone who can truly make it a money minting machine.
------------------------------
#5
A simple perception towards making money as not being a bad thing does wonders at a management level and life .
liberal opinion of twitter layoff and later changes were emotional and blaming, but thinking from a business approach, his company partners(and whoever he likes) now have special golden badges to feel like VVIP and have an orgasm, while he gave a dummy melon to every person on earth to pay for feeling like a VIP and have an orgasm.
a brilliant tactic to make money without anyone calling the minting of money as BAD. genius
------------------------------
#6
was randomly checkin Insta, saw an ex-collegue share a random deep thought quote, and i realised that i might have known her for just a week or 2 in college, but she had a very nice nature.
However, she was the daughter of a very rich ass dad and had almost everything in life. she gave a bit spoilt(for me) look, like someone who did ciggs or drink, but her talks then and our chats later just on chat gave me a very nice hustler vibe (the type of people i like: hustling and professional)
I indirectly asked her on a date and she agreed. so, this is something very interesting for me, as i am hopelessly single and full of judgemental opinions/ strict rules. share your tips and notes on how to have a successful date, and stuff that one must NOT do . much grateful if you do not come under rule 29 of internet and share your POV -
Investing €40,000 in cryptocurrency through Get Forex com seemed like a smart move until I tried to withdraw my funds At the time, cryptocurrency seemed like a golden opportunity to secure my financial future I had heard countless success stories of people making substantial profits in the market Confident in my decision, I invested, believing that I was making a well-informed choice But little did I know, this decision would lead me into a nightmare that would take months to unravel. For two agonizing months, my money was locked away. Every attempt to recover it was met with delays, excuses, and even demands for more money to "release" my withdrawal Each day felt like an emotional rollercoaster I would contact customer support, hoping for a resolution, only to receive vague responses or worse no response at all It soon became clear that I had fallen victim to a scam The platform had no intention of returning my funds I was devastated, confused, and feeling helpless. As the weeks dragged on, I tried everything I contacted customer support multiple times, but their responses were always vague and unhelpful I followed their unclear instructions, hoping that it would finally lead to my money being released I even researched legal options and consulted with professionals, but no matter what I did, I was unable to make any progress It was as if the scammers were one step ahead at all times My frustration grew, and the thought that I might never see my €40,000 again weighed heavily on me. Just when I thought my money was gone forever, a friend who had experienced something similar recommended Tech Cyber Force Recovery. At that point, I was skeptical but also desperate. I had tried everything, and nothing had worked. What did I have to lose? I decided to give them a chance, though I had serious doubts about whether they could help me recover my funds. To my amazement, Tech Cyber Force Recovery acted swiftly and professionally, Their team launched a thorough investigation, keeping me updated at every step of the process They communicated transparently and regularly, making sure I was never left in the dark Within just five days, they successfully recovered my full €40,000 I couldn’t believe it after months of frustration, what had seemed impossible became reality The relief I felt was indescribable I could finally breathe again. Tech Cyber Force Recovery isn’t just another service; they are true professionals who genuinely care about helping scam victims Their expertise, transparency, and efficiency set them apart from other recovery services They didn't just take my case they took ownership of it Their dedication to my recovery gave me a sense of security and trust I had lost during my ordeal If you’ve lost money to a fraudulent platform, I highly recommend reaching out to them They gave me my life back, and I firmly believe they can do the same for you. Don’t lose hope. Trust Tech Cyber Force Recovery to fight for your money and your peace of mind. They turned my nightmare into a second chance, and I’ll be forever grateful for that.
EMAIL... Tech cybers force recovery @ cyber services. com
TELEGRAM... +.1.5.6.1.7.2.6.3.6.9.73 -
How Adware Recovery Specialist Helped Me Recover $10,000 from a Forex Trading Scam
For the past three years, I’ve immersed myself in the world of Forex trading—learning new strategies, refining my skills, and seeking every opportunity to grow. One such opportunity was an online Forex trading contest that initially seemed like a golden ticket to success. The contest was promoted by a company that appeared reputable; the website was professionally designed, and the contest rules were clear, which made it all seem legitimate.
Intrigued by the promise of a large cash reward, I decided to participate. The registration fee was set at $1,000—a price that seemed acceptable considering the potential return. I eagerly paid the fee and received an email confirming that I had advanced to the next stage of the contest. However, the excitement quickly turned to apprehension when I was informed that I needed to pay an additional $2,000 for shipping costs related to the prize package.
At that moment, I had already invested $3,000 in what I believed was my path to a substantial prize. Trusting the process, I paid the shipping fee, assuming it was a necessary step toward securing my reward. But after that payment, the promised prize never arrived, and the communication from the organizers went silent. WhatsApp info:+12 (72332)—8343
Realizing something was wrong, I began to research the contest and the company behind it. To my dismay, I found numerous reports from other participants who had fallen victim to the same scheme, each losing significant sums of money. In total, I discovered I had lost $10,000—$1,000 for registration and an additional $9,000 over time in shipping fees. It was clear that I had been scammed. Website info: h t t p s:// adware recovery specialist. com
Feeling frustrated and helpless, I searched for ways to reclaim my lost money. That’s when I discovered ADWARE RECOVERY SPECIALIST—a team of professionals dedicated to recovering funds lost to online scams. I reached out to them, and their experts immediately took over my case. Using advanced tracking techniques and digital forensics, they traced the scam’s trail, identified the fraudulent transactions, and ultimately managed to recover my stolen funds.
Thanks to the dedicated efforts of ADWARE RECOVERY SPECIALIST, I was able to have my $10,000 returned. This experience was a harsh reminder of the importance of doing thorough research before engaging in any online contests or financial commitments. It taught me to be cautious, to question offers that seem too good to be true, and to always verify the legitimacy of any online opportunity. Email info: Adware recovery specialist (@) auctioneer. net
I share my story in hopes that it serves as a cautionary tale for others in the Forex trading community. While I was fortunate to recover my funds with the help of ADWARE RECOVERY SPECIALIST, not everyone is so lucky. Always proceed with caution and remember: if an offer sounds too good to be true, it probably is. Telegram info: http s:// t. me/ adware recovery specialist1
1 -
It all began with an offer that seemed almost unbelievable: a guaranteed 110% return in just 14 days. The website claimed that a $2,000 AUD investment would grow to $2,200 AUD in only two weeks. As a newcomer to investing, the prospect of such quick and substantial returns was hard to resist. Living in Sydney, I saw this as a golden opportunity to grow my savings, so I decided to invest $10,000 AUD into each platform, convinced that I was making a smart move. At first, everything appeared to be going according to plan. My investment seemed to be steadily increasing, and the first few days passed without any problems. I started feeling more confident about my decision. However, as the 14-day period came to a close, my excitement turned to frustration. When I logged in to check on my funds, I found I could no longer access my account. It was as though my money had vanished. My emails to customer support went unanswered, and every attempt to withdraw my funds resulted in vague error messages. What I had once seen as a brilliant investment quickly became a nightmare. I was stuck, unable to retrieve a single cent. It didn’t take long for me to realize I had most likely fallen prey to an online scam. The sinking feeling was hard to ignore, but I knew I had to act quickly. Feeling desperate and uncertain of where to turn, I contacted a friend I had met on Facebook, who had been in a similar situation. They recommended I reach out to Cranix Ethical Solutions Haven, a service they had used to recover their funds after being scammed by another platform. Though I was hesitant, I decided to give it a try. To my relief, the team at Cranix Ethical Solutions Haven responded swiftly and began walking me through the recovery process. They explained how prevalent scams like this were and reassured me that they could help recover my funds. After making a financial commitment, I provided them with the details of my case, and the team immediately set to work locating my money. They kept me updated every step of the way and offered helpful advice on how to avoid falling for similar scams in the future. Within a few weeks, I had successfully recovered the full $20,000 AUD I had invested. Thanks to Cranix Ethical Solutions Haven, I not only got my money back but also received invaluable advice on how to safely navigate online investments. While the experience was painful, it was a crucial lesson in the importance of caution, research, and due diligence when it comes to making financial decisions. In the end, I not only recovered my funds but also gained the knowledge and tools to better protect myself and others from falling victim to such scams in the future.
EMAIL: (i n f o @ c r a n i x e t h i c a l s o l u t i o n s h a v e n . i n f o) OR (c r a n i x e t h i c a l s o l u t i o n s h a v e n @ p o s t . c o m)
WHATSAPP: (+ 4 4 7 4 6 0 6 2 2 7 3 0)
WEBSITE: (h t t p s : / / c r a n i x e t h i c a l s o l u t i o n s h a v e n . i n f o)
TELEGRAM: (@ c r a n i x e t h i c a l s o l u t i o n s h a v e n)1 -
RECLAIM STOLEN CRYPTO REVIEW WITH RAPID DIGITAL RECOVERY
Reflecting on my journey, I often find myself overwhelmed with joy, especially when I think about how I regained my lost investment funds through the remarkable service of RAPID DIGITAL RECOVERY. It’s a feeling that’s difficult to articulate. On April 29, I received a message in a Telegram group chat filled with members sharing their success stories about making significant profits through an investment platform. Intrigued by the testimonials, I joined the chat and spent about three months absorbing the messages, convinced that I had stumbled upon a golden opportunity to invest in cryptocurrency from the comfort of my home. Encouraged by the stories of others, I decided to take the plunge and deposited a substantial amount of money into the platform. Regrettably, I soon discovered that I had been deceived. The glowing testimonials I had read were nothing but fabricated lies designed to lure unsuspecting investors like myself. Within a month, my dreams of financial freedom were shattered, and I felt utterly betrayed. Just when I thought all hope was lost, I came across RAPID DIGITAL RECOVERY. Their ability to track down my stolen assets and outsmart the scammers who had exploited me was nothing short of extraordinary. Their expertise and unwavering commitment to helping victims of online fraud provided me with a sense of relief and gratitude that I can hardly describe From the very beginning, RAPID DIGITAL RECOVERY was always one step ahead of the scammers, who often employ sophisticated tactics to hide their tracks. They quickly assessed my situation, gathering all the necessary information about the fraudulent transactions and the platform involved. Their team reassured me that they would do everything in their power to recover my stolen funds. Although the recovery process was complex and required a great deal of patience, the team kept me informed at every stage, providing regular updates and maintaining transparency. This communication helped alleviate my frustrations and anxiety during a very stressful time. Their relentless efforts and deep understanding of the cryptocurrency landscape transformed what could have been a financial disaster into a story of hope and recovery. I am incredibly grateful to RAPID DIGITAL RECOVERY for their invaluable assistance during such a challenging period in my life. Their dedication not only restored my lost funds but also renewed my faith in the possibility of overcoming adversity. I can’t thank them enough for their support and expertise. Contact Them Through.. Email: rapiddigitalrecovery@execs. com
WhatsApp: +1 4 14 80 71 4 851 -
It started with a gut-wrenching realization. I’d been duped. Months earlier, I’d poured $133,000 into what I thought was a golden opportunity a cryptocurrency investment platform promising astronomical returns. The website was sleek, the testimonials glowed, and the numbers in my account dashboard climbed steadily. I’d watched my Bitcoin grow, or so I thought, until the day I tried to withdraw it. That’s when the excuses began: “Processing delays,” “Additional verification required,” and finally, a demand for a hefty “release fee.” Then, silence. The platform vanished overnight, taking my money with it. I was left staring at a blank screen, my savings gone, and a bitter taste of shame in my mouth.I didn’t know where to turn. The police shrugged cybercrime was a black hole they couldn’t navigate. Friends offered sympathy but no solutions. I spent sleepless nights scouring forums, reading about others who’d lost everything to similar scams. That’s when I stumbled across a thread mentioning a group specializing in crypto recovery. They didn’t promise miracles, but they had a reputation for results. Desperate, I reached out.The first contact was a breath of fresh air. I sent an email explaining my situation dates, transactions, screenshots, everything I could scrape together. Within hours, I got a reply. No fluff, no false hope, just a clear request for more details and a promise to assess my case. I hesitated, wary of another scam, but something about their professionalism nudged me forward. I handed over my evidence: the wallet addresses I’d sent my Bitcoin to, the emails from the fake platform, even the login credentials I’d used before the site disappeared.The process kicked off fast. They explained that scammers often move funds through a web of wallets to obscure their tracks, but Bitcoin’s blockchain leaves a trail if you know how to follow it. That’s where their expertise came in. They had tools and know-how I couldn’t dream of, tracing the flow of my coins across the network. I didn’t understand the technical jargon hash rates, mixing services, cold wallets but I didn’t need to. They kept me in the loop with updates: “We’ve identified the initial transfer,” “The funds split here,” “We’re narrowing down the endpoints.” Hours passed , and I oscillated between hope and dread. Then came the breakthrough. They’d pinpointed where my Bitcoin had landed a cluster of wallets tied to the scammers. Some of it had been cashed out, but a chunk remained intact, sitting in a digital vault the crooks thought was untouchable. I didn’t ask too many questions about that part; I just wanted results. They pressured the right points, leveraging the blockchain evidence to freeze the wallets holding my funds before the scammers could liquidate them. Next morning, I woke up to an email that made my heart skip. “We’ve secured access to a portion of your assets.” Not all of it some had slipped through the cracks but $133,000 worth of Bitcoin, my original investment, was recoverable. They walked me through the final steps: setting up a secure wallet, verifying the transfer, watching the coins land. When I saw the balance tick up on my screen, I sat there, stunned. It was real. My money was back.The ordeal wasn’t painless. I’d lost time, sleep, and a bit of faith in humanity. But the team at Alpha Spy Nest Recovery turned a nightmare into a second chance. I’ll never forget what they did. In a world full of thieves, they were the ones who fought to make things right. Contacts below: WhatsApp: +14159714490
1 -
RECOVER YOUR STOLEN BTC/USDT WITH THE HELP OF SOLACE CYBER WORKSTATIONS
When I first encountered a fitness-focused crypto token supposedly endorsed by NFL quarterback Jake Thompson, I was filled with excitement and optimism. As a long-time fan of Thompson's remarkable performances on the field, his endorsement would lend credibility to the project. Eager to seize what I thought was a golden opportunity, I invested $12,000, convinced that this token would yield significant returns. My enthusiasm quickly turned to despair. Just days after my investment, Thompson deleted all his posts related to the token, leading to a catastrophic collapse in its value. To my utter disbelief, I later learned that the account promoting the token was a fraudulent impersonation of someone who had been posing as Thompson to mislead investors like me. This shocking revelation made it clear that the endorsement was nothing more than a ploy by a scam artist, raising serious ethical concerns about the integrity of celebrity endorsements in the cryptocurrency realm. Desperate to recover my losses, I sought assistance from Solace Cyber Workstations, a firm renowned for its expertise in tracing and recovering funds from fraudulent schemes. Solace Cyber Workstations conducted a thorough investigation and uncovered a disturbing connection between the token's development team for orchestrating celebrity scams. This agency had a long history of leveraging high-profile endorsements, including impersonations, to ensnare unsuspecting investors in dubious ventures. With the support of Solace Cyber Workstations, I felt a renewed sense of hope. They took decisive action, threatening to expose the agency's clients to compel them to take responsibility. Thanks to Solace Cyber Workstations' strategic approach, I was able to recover an impressive 90% of my investment, totaling $10,800. While I still faced a loss, it was a tremendous relief to see such a significant portion of my money returned, all thanks to Solace Cyber Workstations' diligent efforts. This has served as a harsh lesson about the inherent risks of investing in celebrity-endorsed cryptocurrencies, particularly when impersonation is involved. I now recognize the critical importance of conducting thorough research and exercising caution before committing my funds to any project, especially those backed by famous figures. I hope my story serves as a warning to others to remain vigilant in the ever-evolving landscape of digital assets, and I cannot stress enough how instrumental Solace Cyber Workstations was in helping me navigate this challenging situation. Don't be left out, reach out to them now
Website: h t t p s : / / s o l a c e c y b e r w o r k s t a t i o n s . c o m
Email: S o l a c e . c y b e r . w o r k s t a t i o n s @ m a i l . c o m
WhatsApp: + 1 2 4 0 7 4 3 7 6 8 91 -
HIRE THE MOST EXPERIENCE CRYPTO SCAM RECOVERY EXPERT VISIT DIGITAL TECH GUARD RECOVERY
The air in my chocolate lab still smells like cocoa and regret. I’d spent years perfecting single-origin truffles, roasting beans until they gleamed like obsidian, and stashing Bitcoin profits in a wallet I’d named “Cocoa Reserve.” That wallet held $265,000, a golden ticket to expand my empire with a flagship store in Brussels. And then, with one click on a spoofed bill labeled "Belgian Chocolate Molds – Urgent Payment," my crypto was gone faster than a caramel drip on a hotplate. The swindle was a masterclass of nastiness. Contact WhatsApp: +1 (443) 859 - 2886 Email @ digital tech guard . com Telegram: digital tech guard . com Website link: digital tech guard . com The email mimicked my actual supplier's fonts, logos, even their typo-ridden English ("Kindly proceed the transfer immediately"). I'd been fooled by digital drag-and-drop. My heart sank as I watched the transaction confirmation flash tauntingly on-screen a spinning wheel of death where my life's work once dwelled. My accountant hyperventilated into a bag of cocoa nibs. My CFO threatened to "quit and become a beekeeper." And me? I stared into the blockchain explorer, tracing my Bitcoin's path through a hydra of mixers and offshore wallets, each one a nail in my entrepreneurial coffin. A midnight Slack rant in a food founders' group summoned a lifeline: Digital Tech Guard Recovery. Their name materialized between messages about shelf-stable ganache and FDA audits. Skeptical but spiraling, I slid into their DMs like a kid begging for a Halloween candy refill. Within hours, their team examined the theft with the finesse of a chocolatier tempering couverture. They tracked the scammer's twisting layers of fake KYC docs, Malta shell companies, and a Cypriot payment processor fishier than a truffle oil factory. Digital's forensic team became my avengers in hoodies. They collaborated with regulators from four countries, subpoenaing exchanges and freezing accounts mid-launder. The scammers, it turned out, had gotten greedy, siphoning funds into a stable coin wallet that had been flagged for "excessive hot sauce purchases" (no, really). Thirteen days later, I received a PDF titled "Recovery Complete" and a screenshot of my recovered wallet. No fanfare, no blare of trumpet, just the subdued hum of justice served cold, like a dark chocolate gelato. Digital Tech Guard Recovery not only saved my nest egg; they unraveled a fraud ring that is now in Interpol's sights. My Brussels boutique opens next spring, its safes guarded by triple-authentication and a paranoia so thick you could cut it into bonbons. I've even added a company motto: "Trust no one especially if they claim to sell Belgian molds." If your crypto dissolves into the digital ether, skip the panic attack. Call the Digital. They're the magic between catastrophe and resiliency. Just maybe screen your vendors twice, and keep the cocoa nibs handy for emergencies.1 -
Cryptocurrency trading and forex investments have captured the attention of many, promising high returns and financial freedom. However, for those unfamiliar with the intricacies of these markets, the risks can be substantial. My own experience serves as a cautionary tale for anyone considering entering this space. A few months ago, I was drawn into the allure of investing in cryptocurrency through a forex platform that promised extraordinary returns. I was convinced by persuasive marketing tactics and the testimonies of seemingly successful traders. Believing that this was a golden opportunity, I decided to invest a significant portion of my life savings—an amount totaling nearly $530,000. At first, everything seemed promising. My investments appeared to be growing, and I was encouraged by the initial profits I saw. However, my optimism was short-lived. When I tried to access my profits, I found that I could no longer log into my account. Attempts to reach customer service were met with silence; my calls and emails went unanswered. It became increasingly clear that something was terribly wrong. It was at this point that I realized I had been scammed. The platform that had seemed so reliable and trustworthy was nothing more than a fraudulent scheme designed to exploit unsuspecting investors. The sense of betrayal and loss was overwhelming. I spent countless hours in distress, trying to find a solution to recover my lost funds. My situation seemed hopeless until I discovered the existence of recovery agencies that specialize in retrieving lost assets from fraudulent schemes. One such agency that I found and reached out to was Lee Ultimate Hacker at tele gram: 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 . Lee Ultimate Hacker is a legitimate organization known for its expertise in recovering funds lost to scams. They have a reputation for helping individuals in situations similar to mine, where traditional avenues for recovery have failed. After explaining my predicament to their team, I was cautiously optimistic yet hopeful. They assured me that they could assist in retrieving my lost funds, a promise that was both reassuring and daunting. The process with Lee Ultimate Hacker involved a detailed review of my case. They required documentation and information regarding the transactions and communications I had with the fraudulent platform. Their team worked diligently, leveraging their skills and resources to trace and recover the stolen funds. Their approach was methodical and professional, focusing on the technical and legal aspects of fund recovery. To my relief, Lee Ultimate Hacker delivered on their promise. Within a relatively short period, my lost funds were returned to my wallet account. The recovery process was both swift and efficient, thanks to their expertise and dedication. This experience was a stark contrast to the frustration and helplessness I had previously felt. For anyone who finds themselves in a similar situation, it’s important to proceed with caution. Scams and fraud are prevalent in the cryptocurrency and forex markets. Always conduct thorough research before investing and be skeptical of offers that seem too good to be true. If you do fall victim to a scam, seeking professional help from a reputable recovery agency like Lee Ultimate Hacker can be a viable solution. To contact Lee Ultimate Hacker, you can reach them through their official contacts. It’s advisable to use their secure contact methods to ensure that your communication is handled safely and professionally. while the world of cryptocurrency and forex trading can be profitable, it’s fraught with risks. My experience underscores the importance of vigilance and due diligence. Finding a trustworthy recovery service like Lee Ultimate Hacker provided me with a sense of resolution and relief. Their expertise played a crucial role in recovering my funds, and I am grateful for their assistance.
-
How to Vet and Hire a Trustworthy Crypto Recovery Hire Adware Recovery Specialist
LinkedIn was my primary resource as I diligently sought new job opportunities in my field. During my exploration, I stumbled upon a broker company called CRYPEX iO, which captivated my attention with its alluring promises of substantial returns on investments. Website info: h t t p s:// adware recovery specialist. com Eager to capitalize on what seemed like a golden opportunity, I engaged with them, blissfully unaware of the treacherous risks I was stepping into. Regrettably, I soon found myself ensnared in a fraudulent investment platform that I had unwittingly become involved with. Based in Ozark, US, I had no inkling of the perils lurking behind what appeared to be a legitimate venture. The situation escalated quickly, and I realized I had lost a staggering $150,000 in XRP and TON assets. Email info: Adware recovery specialist @ auctioneer. net I was engulfed in uncertainty about the possibility of reclaiming my funds. I never anticipated the swift resolution of my predicament. Initially, I was skeptical, as this was my first encounter with such a distressing situation. I had never heard of any service capable of tracing and recovering digital assets lost to scams, and the entire concept seemed almost too fantastical to be true. From the moment I contacted ADWARE RECOVERY SPECIALIST, I felt a wave of reassurance wash over me, even though I still harbored doubts about the outcome. Collaborating with their team proved to be a transformative experience. After my initial deposit into the platform, everything appeared to be progressing smoothly. Yet, when I attempted to withdraw my funds, I encountered significant resistance and was confronted with demands for various settlement payments before they would release my assets. This raised immediate red flags and the situation grew increasingly suspicious as I interacted with their so-called support desk. WhatsApp info: +12 (72332)—8343 Despite my persistent requests for assistance, I was met with evasive responses, and the withdrawal process stagnated. It became glaringly evident that I had fallen victim to a scam. Fortunately, a colleague suggested I explore ADWARE RECOVERY SPECIALIST as a potential solution. After perusing numerous positive reviews and testimonials, I decided to take a leap of faith, albeit still unsure of how effective their services would be. Thanks to ADWARE RECOVERY SPECIALIST, I was able to successfully recover my assets. I am profoundly grateful for their hard work and support throughout this tumultuous journey. I wholeheartedly recommend ADWARE RECOVERY SPECIALIST to anyone facing similar challenges. Their Cryptocurrency Recovery services to helping clients are truly commendable and inspiring. Thank you, ADWARE RECOVERY SPECIALIST for the Good Work done.7 -
Capture Your Love Story with April Simmons Photography
Welcome to April Simmons Photography, where I specialize in documenting the beautiful moments of love and connection. Based in the stunning Central Coast of California, I offer personalized photography services, including being an Avila Beach engagement photographer and a Templeton wedding photographer. My mission is to create timeless images that tell your unique love story.
Avila Beach Engagement Photographer: Celebrate Your Journey Together
Engagements are a beautiful milestone in every couple's journey, and what better way to celebrate than with a stunning photoshoot at Avila Beach? As an Avila Beach engagement photographer, I take advantage of the breathtaking coastal scenery to create romantic and memorable images that reflect your relationship.
The picturesque beaches, rolling waves, and golden sunsets provide the perfect backdrop for capturing your love in its purest form. Whether you prefer a relaxed stroll along the shore or a playful beach picnic, I’ll work with you to design a session that highlights your unique personalities and connection.
During our session, I encourage you to be yourselves. This approach allows for authentic moments that truly showcase the love and joy you share. Together, we’ll create a collection of images that not only capture the excitement of your engagement but also serve as cherished memories for years to come.
Templeton Wedding Photographer: Your Special Day, Perfectly Captured
Your wedding day is one of the most significant events in your life, and as a dedicated Templeton wedding photographer, I understand how important it is to capture every moment beautifully. Templeton, with its charming vineyards and picturesque landscapes, provides a stunning backdrop for your wedding celebration.
From the heartfelt vows to the joyful celebrations with family and friends, I strive to document every detail of your special day. My photography style combines both candid and posed shots, ensuring that I capture the essence of your love story. I aim to highlight the emotions, connections, and joyful moments that make your wedding unique.
I believe that your wedding photos should reflect your personality and style, which is why I take the time to understand your vision before the big day. Whether you’re planning an intimate gathering or a grand celebration, I’ll ensure that your photographs tell the story of your love and the beautiful day you shared.
Why Choose April Simmons Photography?
Personalized Experience: I work closely with each couple to understand their unique vision, ensuring that every session reflects their story and style.
Quality Imagery: Using high-quality equipment and a creative eye, I deliver stunning images that capture the beauty of your moments.
Timely Delivery: I understand how excited you are to see your photos, so I prioritize prompt delivery without sacrificing quality.
Book Your Session Today!
If you’re looking for an Avila Beach engagement photographer to celebrate your love or a Templeton wedding photographer to capture your special day, look no further than April Simmons Photography. Contact me today at +1 (805) 712-3802 to discuss your vision and book your session. Let’s create beautiful memories together that you will cherish for a lifetime!
-
HOW CAN I GET MY MONEY BACK FROM A CRYPTO SCAM? HIRE DIGITAL TECH GUARD RECOVERY
In late 2024, I came across Bitdollar. com and Cryptodev. com, two websites promising extraordinary returns of 220% in just 10 days. As a novice investor, the prospect of such rapid, high returns was incredibly enticing. The idea of quick wealth seemed like a golden opportunity, leading me to invest $80,000 in each platform, totaling $160,000, with high hopes for the “guaranteed” profits.
For the first few days, everything seemed promising. I logged into my accounts daily, watching the numbers grow, and my excitement built. I began imagining the possibilities—exotic vacations, new investments, a better lifestyle. But as the 10-day period neared its end, my excitement turned to frustration. When I tried to access my funds, I was locked out. My accounts seemed to have vanished. Emails to customer service went unanswered, and withdrawal attempts were met with vague error messages. What I thought was a smart investment started feeling like a nightmare. I was stranded, unable to access a single cent, and panic set in as I realized I might have been scammed. Desperate, I confided in an Instagram friend who had faced a similar situation. They recommended DIGITAL TECH GUARD RECOVERY, a service that had helped them recover funds from a shady platform. With little to lose, I contacted the team. They responded quickly, explaining how common these scams are and outlining their recovery process. After I made a financial commitment, they diligently tracked down my funds. Within weeks, DIGITAL TECH GUARD RECOVERY successfully recovered my entire $160,000. This experience was a harsh lesson in the risks of high-return investments. Now, I approach opportunities with caution, researching thoroughly before investing. I’m grateful to DIGITAL TECH GUARD RECOVERY for restoring my financial stability and teaching me the importance of due diligence.
WhatsApp: + 1 ( 4 4 3 ) 8 5 9 - 2 8 8 6
Zangi 1 0 - 4- 4 9 0 - 6 6 5 77 -
HIRE MUYERN TRUST HACKER THE BEST BITCOIN RECOVERY SERVICE
The Initial Coin Offering (ICO) I invested in appeared flawless, its website was sleek and authentic, the whitepaper was detailed and convincing, and the team boasted impressive credentials in cryptocurrency. Everything pointed to legitimacy, and I was eager to capitalize on a golden opportunity. Confident in my research, I invested $200,000, only to watch in horror as the entire operation vanished days later. The website disappeared, all communication ceased, and the harsh reality set in: I had fallen victim to an elaborate scam. Desperate to recover my funds, I filed reports with the police and contacted my bank, but progress was agonizingly slow. The authorities offered little hope, and my bank could do nothing to reverse the transaction. The guilt was crushing. I had even borrowed some of the investment from my elderly mother, dipping into her pension savings. The weight of my mistake was unbearable, leaving me powerless and consumed by regret. Just as I was resigning myself to the loss, I discovered Muyern Trust Hacker by searching online, ( web: ht tps://muyerntrusthacker . o r g / ) Skeptical at first after all, I had already been deceived once I delved into their reputation and was impressed by their proven success in recovering stolen cryptocurrency. Taking a leap of faith, I reached out, and from the very first interaction, their team stood out for their professionalism and urgency. They immediately assessed my case, explaining their process with transparency and instilling a renewed sense of hope. What truly distinguished Muyern Trust Hacker was their advanced investigative approach. Unlike conventional methods, they utilized cutting-edge forensics to trace my stolen funds, even navigating through sophisticated obfuscation techniques like mixers and layered transactions. Their experts meticulously followed the digital trail across multiple wallets and exchanges, leaving no stone unturned. After a week of relentless effort, they achieved the impossible: $175,000 was recovered. While not the full amount, it was a staggering victory considering I had assumed everything was lost forever. The relief was indescribable. Thanks to Muyern Trust Hacker, I could repay a significant portion of what I owed my mother and regain some financial stability. This has taught me a harsh lesson about the risks of crypto investments but it also showed me the power of expert intervention. For anyone who has fallen victim to a scam, Muyern Trust Hacker ( Tele gr am: muyerntrusthackertech ) is the rescue team in an otherwise bleak situation. Their recovery services turned my crypto disaster into a second chance.2 -
It all started with a seemingly golden opportunity – a high-yield Bitcoin investment. I invested in a cryptocurrency startup that looked promising, but I never imagined it would turn into a nightmare. The platform — slick, well-marketed, and with testimonials from seemingly legitimate investors — promised me a 200% return in two weeks. I invested over 7 Bitcoins, worth nearly $500,000 at the time. The platform’s customer support became elusive, and eventually the platform disappeared. No access, no updates, no sign of the team – just silence, and my heart sank. I had been scammed. I wasn’t alone. across the country and even internationally, victims of the same scam were reporting similar experiences. Fake trading dashboards, forged gains, withdrawal delays, and ultimately, total disappearance. It was a textbook crypto scam—decentralized, anonymous, and nearly impossible to trace, It was a classic crypto scam – decentralized, anonymous, and virtually untraceable, until I discovered Dexdert Net Pro Recovery. Unlike typical recovery agencies that rely on outdated tracing methods or cold legal tactics, Dexdert Net Pro combines advanced blockchain forensics with cyber intelligence and direct collaboration with cryptocurrency exchanges and law enforcement around the world. To recover stolen digital assets — even in the darkest corners of blockchain, when I reached out, the team at Dexdert started with forensic blockchain tracing, uncovering the maze of mixing services, private wallets, and overseas exchanges used to launder stolen BTC. What set them apart was their real-time AI-driven tracing tool that can follow the most obscure trails on multiple chains. Dexdert tracked my stolen BTC through decentralized mixers and shell accounts and identified a batch of BTC that had recently been converted and stored in dormant wallets connected to an unregulated exchange in Eastern Europe. Dexdert successfully recovered my 7 BTC, worth $500,000 after proving its illicit origin -Today, I am an active advocate for proactive recovery services. Without Dexdert Net Pro Recovery, I would have lost everything. Not only did they track down my Bitcoins, they also busted the entire scam network. If you’ve been scammed, don’t give up – contact a professional like Dexdert Net Pro Recovery before the trial runs out.
CONTACT INFORMATION VIA:
Telegram: (@Dexdertprorecovery)WhatsApp: (+1 859 609‑4156)2 -
STOLEN BTC RECOVERY GUESTBOOK HIRE DUNAMIS CYBER SOLUTION
My husband had always been a dreamer, someone who thrived on innovation and the allure of “what’s next.” So, when he decided to invest $123,000 into a Dallas based app development company promising to revolutionize Bitcoin integration, I wasn’t surprised. But I was worried. For months, I urged him to consider real estate instead, arguing that bricks and mortar offered stability in an unpredictable digital world. He dismissed my concerns, convinced this venture was his golden ticket to success.Then came the security breach. The app, which had initially dazzled him with its sleek interface and bold vision, suddenly locked him out with relentless login errors. Panic set in as we realized his entire investment, our family’s financial cushion, had vanished. My frustration was palpable. I had warned him, but as anger gave way to fear, we faced a harsh truth: blame wouldn’t fix this. We needed a solution.Enter DUNAMIS CYBER SOLUTION .5 -
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 -
Lahore Future City Location:
Lahore Future City (LFC) is an emerging residential project strategically located on Main Sharaqpur Road in Lahore, Pakistan. Spanning over 1,200 Kanal, this visionary housing society is designed to cater to the evolving needs of modern living, emphasizing affordability, sustainability, and innovation.
Prime Location
LFC's location offers several advantages:
Proximity to Major Routes: The society is situated approximately 7 minutes away from the Multan-Karachi Motorway and Ravi Toll Plaza, facilitating easy access to key transportation networks.
Nearby Developments: LFC is located about 3 kilometers from Al-Noor Orchard, positioning it near other prominent residential communities.
Access to Lahore Ring Road: The project boasts a "Golden Location" on Motorway M3 and SL4 Ring Road, enhancing connectivity to various parts of Lahore.
Development and Amenities
Developed by Al Buraq Developers, a reputable name in the real estate industry since 2004, LFC aims to provide a modern and luxurious living experience. The society plans to offer a range of amenities, including schools, hospitals, commercial areas, shopping malls, parks, mosques, and recreational facilities.
Investment Potential
LFC has garnered significant interest from investors and homebuyers due to its strategic location, comprehensive planning, and modern amenities. The project's accessibility to major highways and proximity to other residential developments make it a promising option for those seeking a contemporary lifestyle in Lahore.
In summary, Lahore Future City stands out as a well-planned residential project offering a blend of modern living and strategic connectivity, making it an attractive choice for potential residents and investors alike.
3 -
Just a few months ago, I found myself in one of the darkest moments of my financial life. Like many others trying to get ahead, I ventured into what I thought was a golden crypto investment opportunity. The website was sleek, the representatives were convincing, and the returns promised seemed realistic at first. I invested heavily, and over the course of several weeks, I poured in £350,000, confident I was securing my future. But things took a sinister turn and withdrawals were suddenly under review. My so-called account manager stopped replying to emails. Then the site went offline completely. My heart sank. I had just fallen victim to a sophisticated crypto investment scam.I felt helpless. The blockchain is anonymous, irreversible, and notoriously difficult for victims to navigate. Local authorities told me the chances of recovery were slim. It was devastating. That's when I heard about Washington Recovery Pro.I was skeptical at first after all, I’d just been scammed. But I did some research, saw numerous verified reviews, and decided to reach out. From the first contact, they were professional, empathetic, and extremely knowledgeable.I handed over all the evidence I had transaction IDs, screenshots, emails—everything. The team got to work immediately.To my amazement, within a matter of weeks, Washington Recovery Pro traced the wallet addresses my funds had been funneled into. Working with international partners, they applied legal pressure and used blockchain intelligence to isolate the stolen assets. And then, the miracle happened: they recovered nearly the full amount of over £345,000 worth of Bitcoin and successfully returned it to my personal wallet. To say I was shocked would be an understatement. I went from thinking all was lost to seeing my funds restored, something I never imagined was even possible.Don't hesitate to reach out to them..
WhatsApp- +1 (903) 249‑86332 -
How Can i Recovery My Stolen Ethereum Back From Fake Companies
It started with what I thought was a golden opportunity. I’d been dabbling in crypto for a couple of years, mostly small trades and safe investments. But in late March, I stumbled upon a flashy new Defib project promising astronomical returns. Against my better judgment, I transferred $320,100 worth of Ethereum to what turned out to be a sophisticated phishing site. The wallet drained instantly. Panic hit like a wave. I reported the scam, contacted my exchange, and spent days researching recovery options for all dead ends. That amount wasn’t just numbers on a screen. It was years of savings, hard work, and hope. That’s when I came across iCode CYBER TECH. I was skeptical, naturally too many fake crypto recovery experts were out there just preying on the desperate. But iCode CYBER TECH had solid reviews, a verified presence, and even testimonials from others who’d been in my shoes Cautiously, I reached out From the very first call, they treated me like more than a victim. They listened, asked the right questions, and got to work immediately. Within hours, their team traced the movement of my stolen Ethereum across multiple wallets using advanced blockchain analytics tools. They found patterns, linked addresses to known laundering networks, and coordinated with compliance teams across two exchanges where part of the funds had landed. With court orders and compliance cooperation, iCode CYBER TECH was able to freeze the stolen assets before they were fully laundered. Of the $320,100 lost, they recovered $291,800 a staggering result I didn’t think was even possible. If you ever find yourself in a nightmare like mine, don’t give up. iCode CYBER TECH isn’t just a company, they're digital lifesavers.
WhatsApp...+4475637432582 -
Is Sunset Cruise in Goa Worth It? Here’s What You Need to Know
If you’re planning a trip to India’s beach capital, one experience that should absolutely top your list is a sunset cruise in Goa. Whether you're a first-time visitor or a seasoned traveler, a Goa cruise during the golden hour offers a picture-perfect moment of serenity and celebration. But is it really worth it? Let's dive into everything you need to know.
Why a Sunset Cruise in Goa is a Must-Try
A sunset cruise in Goa offers the best of both worlds: breathtaking natural beauty and vibrant on-deck entertainment. As your cruise Goa experience begins, you’ll feel the calm of the Mandovi River surround you. The orange skies, cool breeze, and golden glow are pure magic.
But the Goa cruise isn’t just about the views. It’s a chance to relax, dance, laugh, and make memories with your loved ones. Whether you're looking for a romantic evening or a family-friendly outing, a sunset cruise in Goa checks all the boxes.
What to Expect on a Goa Sunset Cruise
Here’s what makes the best cruise in Goa so unforgettable:
1 Hour of Scenic Cruising: Watch the city transform under the evening sky as your Goa cruise sails smoothly along the Mandovi River.
🎶 Live DJ Music: Groove to upbeat tracks and let the rhythm lift your spirits.
💃 Traditional Goan & Portuguese Folk Dances: These cultural performances are a signature part of the sunset cruise in Goa.
🕺 Dance Floor & Entertainment: The onboard dance floor is perfect for those who want to let loose.
🌉 Iconic Sightseeing: From Panjim’s bridge lights to floating casinos, your Goa cruise offers unmatched riverside views.
Best Cruise in Goa for Sunsets
If you’re wondering which is the best cruise in Goa, most locals and tourists will point you to options like the Paradise or Mandovi Sunset Cruise. These are known for their warm hospitality, cultural acts, and family-friendly vibes. Booking a sunset cruise in Goa through trusted operators ensures safety, comfort, and unforgettable service.
Who Should Book a Goa Cruise?
Honestly? Everyone. A Goa cruise is perfect for:
Couples seeking a romantic sunset moment
Families looking for a kid-friendly evening with fun
Friends wanting to dance, eat, and party on water
Solo travelers looking to relax with music and drinks
And if you’re celebrating a birthday, anniversary, or any special occasion, there’s nothing quite like doing it on the best cruise in Goa.
Tips to Make the Most of Your Sunset Cruise in Goa
📅 Book in Advance: Especially during season time (Nov–Feb), the Goa cruise slots fill fast!
👚 Dress Light & Bright: Goan evenings are breezy and beautiful—match the vibe!
📸 Capture the Moment: The sunset backdrop is perfect for pictures.
🍹 Enjoy the Extras: Most sunset cruises in Goa include complimentary drinks and snacks—don’t skip them!
Final Verdict: Is a Sunset Cruise in Goa Worth It?
A big YES. The sunset cruise in Goa is not just a tourist activity—it’s a soul-refreshing, joy-filled experience that connects you to the spirit of Goa. It blends scenic beauty with rich culture, food, music, and a whole lot of fun. If you’re curating your must-do list, make sure the Goa cruise is on it!
Whether you want to sail with your partner, your family, or even solo—this is without doubt the best cruise in Goa to experience a magical evening under the Goan skies.
Ready to Set Sail?
📞 Call +91 93254 39845 or
🌐 Visit to book your spot on the best cruise in Goa today.
🛥️ Let the river carry your worries away—your perfect sunset cruise in Goa awaits.2 -
It all started when I stumbled upon what seemed like a golden opportunity—an online investment platform promising high returns on cryptocurrency trades. The website looked professional, I had seen success stories posted on their forums, and everything seemed legitimate. Encouraged by this, I deposited a large sum, converting my USDT into BITCOIN and transferring it to their designated wallet. Days turned into weeks, and when I tried to withdraw my supposed earnings, the nightmare began, The website started experiencing “technical issues,” and my account was suddenly “under review.” Panic set in when I realized I had been scammed. My hard-earned money was gone, and the fraudulent platform had vanished, Desperate and feeling hopeless, I began searching for a way to recover my BITCOIN . That’s when I came across Dexdert Net Recovery, a firm specializing in retrieving lost digital assets from online scams. Skeptical but with nothing to lose, I reached out to them, providing all the transaction details, blockchain records, and communication history with the fake investors, Dexdert Net Recovery responded swiftly, assuring me that they had dealt with similar cases. Their team of blockchain analysts and ethical hackers began tracking the stolen BITCOIN using advanced tracing techniques with their expertise, they coordinated with exchanges and cybersecurity authorities to freeze the fraudulent wallets and initiate the recovery process. After relentless efforts, I received the news I had been hoping for—MY USDT had been retrieved! the funds back in my wallet, something I had thought was impossible. Today, I trade cautiously, thanks to Dexdert. Net Recovery also teaches me on how to trade in the future and verified platforms. My story isn’t unique, but it’s a testament to resilience—and to firms like Dexdert Net Recovery, who fight to bring light to crypto’s shadowy corners. To anyone facing a similar nightmare: act swiftly, document everything, and never underestimate the power of expertise, DEXDERT NET PRO RECOVERY THEY ARE THE REAL DEAL.
Information Contact:
Telegram: (@Dexdertprorecovery)1 -
Sound off below - I need recs for a good cloud compute service that gives me VMDK (or similar) golden image import and complete control over network topology, other than AWS, Azure, GCP or DO. Linode is also preferably off the table unless someone has a good reason for them (they are very privacy invasive).
What do you recommend?2 -
My father, a retired schoolteacher, has always been cautious with his money. He worked hard his entire life to build a modest retirement fund and trusted that it would support him in his golden years. So, when he told me about an “exclusive” investment opportunity in cryptocurrency that promised high returns, I was immediately suspicious. But he was convinced it was legitimate—after all, the website looked professional, and the salesperson had been so persuasive over the phone. Despite my warnings, he invested 15,000 USD of his savings. At first, everything seemed fine. He received regular updates and saw “profits” reflected in his online account. But when he tried to withdraw some money, the website suddenly went offline, and the phone number was disconnected. My father was devastated. He had been scammed, and his hard-earned savings were gone. I knew I had to act quickly. I reached out to TECH CYBER FORCE RECOVERY, a company I had read about online that specialized in tracing online fraud. I explained the situation, providing them with all the details: the fake website, the transaction records, and even the emails from the scammer. The team at TECH CYBER FORCE RECOVERY was incredibly understanding and assured me they would do everything possible to help. Using their expertise in digital forensics, they traced the scammer’s digital footprint and identified the offshore account where the money had been transferred. They worked tirelessly with international authorities to freeze the account and recover the funds. Within a few weeks, they successfully returned the 15,000 USD to my father. The relief on his face was indescribable. Not only had TECH CYBER FORCE RECOVERY restored his savings, but they had also given him peace of mind. They even took the time to educate him on how to spot investment scams in the future, empowering him to protect himself. This brought our family closer together. My father now understands the importance of skepticism and due diligence, and I’m grateful to TECH CYBER FORCE RECOVERY for their incredible work. They didn’t just recover money, they restored my father’s faith in justice and gave him a second chance to enjoy his retirement.
EMAIL..Techcybersforcerecovery(@)cyberservices(.)com
WHATSAPP... + 1.5.6.1.7.2.6.3.6.9.73 -
At 68 years old, I thought I was being careful with my $310,000 retirement investment. The polished financial advisor, the legitimate-looking documents it all seemed so real until the withdrawals stopped. Traditional law enforcement hit dead ends, but Tech Cyber Force Recovery saw possibilities where others saw roadblocks. They patiently walked me through each step, never making me feel foolish for falling victim. Their multilingual team worked across time zones to track my funds through Asian exchanges.The day they recovered $280,000 was the day I learned that age doesn't matter in the crypto world, what matters is having the right allies. These young tech experts gave me back my golden years, and for that, I'll be forever grateful. I had always been cautious with my investments, relying on what I thought were reputable sources. However, the allure of high returns in the cryptocurrency market clouded my judgment. I was drawn in by promises of quick profits and expert management, only to find myself ensnared in a web of deceit.When I first contacted Tech Cyber Force Recovery, I was skeptical. I had already lost so much and was unsure if I could trust another group. But their professionalism and dedication quickly put my mind at ease. They explained the complexities of the situation, detailing how they would navigate the murky waters of cryptocurrency recovery. Their approach was methodical, and they kept me informed at every turn, which helped rebuild my confidence.As they worked tirelessly, I began to understand the intricacies of the digital currency landscape. I learned about the importance of security, the risks involved, and how to protect myself in the future. This transformed my perspective on investing, making me more vigilant and informed it wasn't just about recovering my funds; it was about empowerment. I emerged from this ordeal not only with a significant portion of my investment restored but also with newfound knowledge and resilience. I now feel equipped to navigate the financial world, no matter how daunting it may seem. Thanks to Tech Cyber Force Recovery, I can enjoy my retirement with peace of mind, knowing that I have Tech Cyber Force recovery to safeguard my future.
Hire Tech cyber Force Recovery for help support.
T.E.L.E.G.R.A.M (@.T.E.C.H.C.Y.B.E.R.F.O.R.C.
W.H.A.T.S-A.P.P. (+1.5.6.1.7.2.6.3.6.9.7)2 -
WHERE TO HIRE A CRYPTO RECOVERY SERVICE — DIGITAL TECH GUARD RECOVERY
WhatsApp: +1 (443) 859 - 2886
Email @ digital tech guard . com
Telegram: digital tech guard recovery . com
Website link: digital tech guard . com
My hobby is collecting vintage arcade machines, pixels, joysticks, and the sweet retro chiptune music. I had my sights on the crown jewel at last: a mint 1981 Galago cabinet. The price? $195,000. That was fine because I had precisely that in Bitcoin, painstakingly accumulated over the years from buying, selling, and restoring rare gaming artifacts. But fate had other ideas.
One morning, my trusty old computer, an antique in its own right, which was running Windows XP for retro reasons, you know?, chose to go out in a blaze of glory. It crashed on boot-up, taking with it the only wallet file that had my precious BTC keys. I looked at the blinking screen as if I'd just lost my last life in Donkey Kong. No more extra credits. Game over.
Panic set in. I looked around local repair shops, but all I got were shrugs and eyebrows lifted higher than the cost of the new games. They might as well have asked me to blow into the cartridge. "Sorry, dude, this is old." I was seeing my dream disappear faster than a speed run.
As a last resort, I turned to a retro gaming forum. Amidst the topics debating which Street Fighter was superior, someone hailed Digital Tech Guard Recovery as the high-score champions of data resurrection. I got in touch with them faster than I could button-mash my way through a Mortal Kombat battle.
They got back to me promptly and reassuringly. They didn't laugh at my ancient rig. Instead, their digital archaeologists (their term, but it's fitting) treated my burned hard drive like an artifact from gaming's golden age. They reconstructed the data with forensic attention, excavating my Bitcoin keys like teasing out a hidden level from an old cartridge.
Every update from them was like a power-up level. Day four: they accessed the hard drive. Day seven: partial recovery. Day ten: full wallet extraction. Final boss defeated!
When I saw my balance reappear, I nearly cried over my joystick. The Galago machine is now proudly sitting in my game room, flashing neon glory. And every time I hear the sound of those pixelated lasers, I quietly thank Digital Tech Guard Recovery. They didn't only recover Bitcoin; they revived a dream.
If your digital treasure chest ever gets buried under tech debris, call these wizards. Trust me, it's like finding an extra life.1 -
Minuteman Press: Your Trusted Print Shop for Quality Printing Services in Minneapolis and Golden Valley, MN
When you need reliable, high-quality printing services, Minuteman Press—formerly known as Brite Color Press—is here to serve you. Located at 644 Mendelssohn Ave N, Minneapolis, MN 55427, we pride ourselves on providing exceptional printing solutions for businesses and individuals in Minneapolis, Golden Valley, and the surrounding areas.
From poster printing in Minneapolis to custom waterproof menu printing, we offer a wide range of printing services that cater to your unique needs.
Print Shop in Golden Valley, MN – Local and Reliable Service
If you're searching for a print shop in Golden Valley, MN, look no further than Minuteman Press. We provide personalized printing services for local businesses, residents, and organizations in Golden Valley. Whether you need business cards, flyers, brochures, or custom promotional materials, our expert team delivers high-quality prints with a quick turnaround time. We understand the needs of the Golden Valley community and are committed to helping you bring your ideas to life.
Poster Printing in Minneapolis – Make Your Message Stand Out
Need poster printing in Minneapolis? Minuteman Press is your go-to provider for eye-catching, vibrant posters that leave a lasting impression. Whether you’re promoting an event, a sale, or showcasing artwork, we specialize in creating high-quality posters in any size or format. Our advanced printing technology ensures sharp, crisp colors and high-resolution prints that make your posters stand out wherever they are displayed.
Printing Companies in Minneapolis, MN – Why Minuteman Press Stands Out
With so many printing companies in Minneapolis, MN, Minuteman Press stands out for its personalized service, exceptional quality, and quick turnaround times. Here’s why we are the preferred choice for businesses and individuals in the area:
Expertise and Experience: With years of experience in the printing industry, we have the knowledge and skills to tackle any project, large or small.
Wide Range of Services: From business printing and marketing materials to custom projects, we offer a full spectrum of printing services to meet all your needs.
State-of-the-Art Technology: We use the latest printing equipment to ensure every project is completed with the highest quality possible.
Fast and Affordable: We provide competitive pricing without compromising on quality. Our fast turnaround times make sure you get your prints when you need them.
Waterproof Menu Printing – Durable and Long-Lasting
If you're in the food service industry and need menu print waterproof materials, Minuteman Press offers durable, high-quality waterproof menu printing solutions. Our waterproof menus are perfect for restaurants, cafes, bars, and catering businesses, ensuring that your menus remain pristine and readable no matter the conditions. Whether you need laminated menus or custom waterproof materials, we can create a solution that fits your business's needs and style.
Why Choose Minuteman Press?
Local and Personalized Service: As a locally owned and operated business, we prioritize customer satisfaction and offer personalized service to every client.
High-Quality Prints: We use the best materials and printing techniques to produce sharp, vibrant, and professional results every time.
Wide Range of Options: Whether you need business cards, banners, custom signs, or waterproof menus, we have the expertise and technology to bring your vision to life.
Quick Turnaround: We understand that time is of the essence. That's why we offer quick turnaround times without sacrificing the quality of our work.
Contact Us Today!
For top-quality printing services in Golden Valley, Minneapolis, and surrounding areas, Minuteman Press is the name you can trust. Call us today at +1 (763) 205-3705 or visit us at 644 Mendelssohn Ave N, Minneapolis, MN 55427 to discuss your printing needs. We look forward to helping you create exceptional printed materials that make an impact!
Minuteman Press – Your local print shop for quality and reliable printing services!2 -
TRUSTED CRYPTOCURRENCY RECOVERY EXPERT FOR HIRE; CRYPTO RECOVERY SPECIALIST HIRE CYBER CONSTABLE INTELLIGENCE
I was part of Harborview Capital Partners, a venture capital firm in New Zealand, when we encountered a significant financial setback. We had invested NZD 5,500,000 in a promising technology startup that initially seemed like a golden opportunity. The startup presented a compelling pitch, had strong leadership, and its business model aligned perfectly with current trends in the tech sector. Confident in its potential, we decided to invest. However, over time, red flags began to emerge. The startup failed to meet its initial promises. We discovered discrepancies in their financial statements, uncovered fabricated key partnerships, and found that product development was severely behind schedule. Despite growing concerns, the startup's leadership remained evasive and defensive. We tried to address the situation through traditional channels, but our efforts to recover the investment were unsuccessful. It soon became clear that the company had misled us from the start. At this point, we turned to Cyber Constable Intelligence, a firm specializing in recovering lost or stolen funds through advanced investigative techniques. Their expertise in digital forensics and fraud detection seemed like the perfect solution for our predicament. The team at Cyber Constable Intelligence immediately began working on our case, employing a range of digital tracking tools to trace the flow of funds. Using blockchain analysis and other investigative methods, they uncovered a network of shell companies and personal accounts where the stolen money had been funneled. Cyber Constable Intelligence's thorough investigation provided a clear picture of the fraud. They were able to prove that the startup was operating under fraudulent pretenses, and we presented their findings to the authorities. This led to a formal investigation and legal action against the perpetrators. Thanks to the diligent work of Cyber Constable Intelligence, we were able to recover the full amount of our investment NZD 5,500,000.This experience was a harsh reminder of the risks inherent in venture capital, but it also highlighted the importance of having the right expertise to navigate complex financial fraud. With Cyber Constable Intelligence’s help, we were able to not only recover our investment but also hold those responsible accountable for their actions.
Reach out to their Info below
WhatsApp: 1 252378-7611
Website info; www cyberconstableintelligence com
Email Info cyberconstable@coolsite net1 -
Months earlier, I’d sunk $156,000 into what I thought was a golden opportunity, an online cryptocurrency investment promising sky-high returns. The website was sleek, the testimonials glowing, and the numbers kept climbing. But when I tried to withdraw my profits, the platform froze. Emails went unanswered, support chats died, and my “investment” vanished into the digital ether. I’d been scammed, and the sting of it burned deep.Desperate, I stumbled across Alpha Spy Nest while scouring the web for help. Their site/reviews didn’t promise miracles, just results, specialists in tracking down lost funds from online scams. Skeptical but out of options, I reached out. The process started with a simple form: I detailed the scam, uploaded screenshots of transactions, and shared the wallet addresses I’d sent my crypto to. Within hours, they confirmed they’d take my case.What followed was like watching a high-stakes chess game unfold, though I only saw the moves, not the players. Alpha Spy Nest dove into the blockchain, tracing my funds through a maze of wallets designed to obscure their path. They explained how scammers often use mixers to launder crypto, but certain patterns like timing and wallet clustering, could still betray them. I didn’t understand half of it, but their confidence kept me hopeful. Hours later, they updated me: my money had landed in an exchange account tied to the scam network. They’d identified it through a mix of on-chain analysis and intel from sources I’d never grasp. After 24 hours, i got a message, my funds were frozen in the scammer’s account pending review. Alpha Spy Nest had apparently flagged it just in time. After some back-and-forth, the exchange with the help of Alpha Spy Nest reversed the transactions, and $145,000 of my original $156,000 hit my wallet. The rest, they said, was likely gone forever, siphoned off early. I never met anyone from Alpha Spy Nest, never heard a voice or saw a face. Yet, their methodical precision pulled me back from the brink. My money wasn’t fully restored, but the recovery felt like a win, a lifeline from a faceless ally in a world of digital shadows. If you find yourself in the same situation, you can also reach out to them via: whatsapp: +15132924878
1 -
A few months ago, I made what felt like the worst mistake of my life, I lost access to my Bitcoin wallet containing a staggering $500,000 worth of BTC. Yes, you heard that right: half a million dollars! This wasn’t just an amount of money; it was my life savings, my retirement fund, and my secret stash for that dream vacation to a tropical island, goodbye, piña coladas! The stress was unbearable, and my sleep schedule? Well, let’s just say I was starting to resemble a zombie auditioning for a horror movie. I was too ashamed to tell my family. I mean, who wants to explain to their parents that their golden goose turned into a rusty old chicken? Instead, I confided in a close friend, who immediately recommended ADRIAN LAMO HACKER. He’d heard about them through a colleague who had experienced a similar disaster. At first, I was skeptical—after all, I had the same faith in my old flip phone’s battery life during a three-hour movie marathon. But desperate times call for desperate measures, so I decided to give them a shot. When I reached out to ADRIAN LAMO HACKER Via email: Adrianlamo@ consultant. com/ WhatsApp: +1 (909) 739‑0269/ Telegram username: @ADRIANLAMOHACKERTECH, I was pleasantly surprised by their professionalism. They didn’t promise me the moon or that I’d be sipping cocktails in the Bahamas by sunset. Instead, they assured me they would do their best, which, let’s be honest, was way more reassuring than my uncle’s “It’ll all work out” mantra during family gatherings. Their calm approach gave me hope, even when I was pretty sure my Bitcoin had taken an extended vacation without me. Throughout the recovery process, they kept me updated at every turn. I felt like I was in a reality show, except the only drama was my anxiety levels and my ever-growing collection of stress snacks. Finally, after a few nail-biting days that felt like years in a time loop, I got the message I had been praying for—they had recovered my wallet! When I logged in and saw my balance fully restored, I broke down in tears—happy tears, mind you, not the kind you shed when you accidentally step on Lego. ADRIAN LAMO HACKER didn’t just recover my funds; they saved my sanity, my future, and my tropical vacation plans. If you ever find yourself in a similar situation, trust me: these folks know what they’re doing. They’ll have you back in control faster than you can say, “Where’s my Bitcoin?!”
-
HOW TO FIND A LEGITIMATE CRYPTO RECOVERY EXPERT; HIRE CYBER CONSTABLE INTELLIGENCE
I Lost £50,000 to a Scam. Here’s How Cyber Constable Intelligence Got My Money Back
I borrowed £50,000 from a work colleague with the intention of investing it in what seemed like a promising opportunity. At first, everything appeared legitimate, and I was optimistic about the potential returns. However, not long after, I realized I had fallen victim to a scam. What had seemed like a golden opportunity quickly turned into a nightmare, and I lost the entire £50,000.I immediately attempted to contact the company, but every effort was met with silence or evasive responses. The realization hit hard: the company had no intention of returning my money. The sense of helplessness was overwhelming. With no idea where to turn next and the burden of owing money to my colleague, I felt lost and desperate. Living in Manchester, London, I knew I had to find a solution, but I wasn’t sure where to begin. That’s when I came across Cyber Constable Intelligence on their Website at www cyberconstableintelligence com, a company that specializes in recovering funds lost to fraudulent schemes. After reading positive reviews and testimonials, I decided to reach out to them to see if they could help. From the very first conversation, the team at Cyber Constable Intelligence showed professionalism and understanding. They took the time to listen to my situation and explained the recovery process in detail. I was impressed by how knowledgeable and approachable they were, which immediately put my mind at ease. They guided me through every step, ensuring I understood what actions were being taken and why. Thanks to their expertise and dedication, I was able to recover the full £50,000 I had thought was gone forever. The process was not quick, but Cyber Constable Intelligence kept me informed throughout, and their persistence paid off in the end. It was a huge relief to get my money back, especially after the emotional and financial toll the scam had taken on me. This has made me much more cautious when it comes to online investments and has taught me to do much more thorough research before parting with any money. However, I am incredibly grateful to Cyber Constable Intelligence for their unwavering support and for helping me regain what I thought was lost. Their expertise truly made a difference in my recovery.
Here's Their info below
What Sapp Info: 1. (2. 5. 2. ) 3. 7. 8. (7. 6. 1. 1.)
Website Info : www cyber constable intelligence com -
It all started when I was lured into investing by an FX trader I met on Instagram. The trader seemed professional and confident, sharing stories of massive returns from their investments. They promised that I could make five times that back within seven days by investing a certain amount. The offer was too good to pass up, and it was a golden opportunity to grow my money. After all, the trader had proof of their success and seemed trustworthy. I decided to invest, and over the next five weeks, I paid a total of $7,200 to the trader's company. Each time I tried to withdraw my funds or the supposed earnings I’d accumulated, they came up with new excuses and reasons why I needed to pay more money before I could access my earnings. They claimed I had to cover additional fees, taxes, or "security deposits" before processing my withdrawal. At first, I hesitated, but with every new claim, they made it seem like I had no other choice if I wanted to see my money again. It was a frustrating and confusing process, and each time I questioned them, they reassured me that I would get my money soon. Eventually, I realized I had been scammed. I was fed up and desperate, but I didn’t know what to do. That’s when, luckily, I stumbled upon a post from someone who had gone through a similar situation. They recommended a company called Tech Cyber Force Recovery, a group of crypto recovery experts who specialize in helping people recover lost funds from fraudulent investment schemes. At first, I was hesitant. After all, I’d already been deceived once, and I wasn’t sure if I could trust another company. However, I decided to take the risk and contacted Tech Cyber Force Recovery. I shared my transaction history and details with them, and within just seven hours, they asked for my wallet address. To my amazement, I received $6,300 back into my wallet. I can’t express how grateful I am to Tech Cyber Force Recovery for their help. They were professional, prompt, and thorough in their approach, and they truly helped me recover a significant portion of my lost money. If you find yourself in a similar situation, I highly recommend reaching out to recovery experts like Tech Cyber Force Recovery. They truly made a difference in my case, and I’m incredibly thankful for their support.
You can reach out to Tech Cyber Force Recovery
📩 MAIL Tech cybers force recovery @ cyber services . com 📩1 -
My name is Tracy Mary Cory, and I'm from Omaha, Nebraska. I feel compelled to share my experience in the hope that it will help others avoid the nightmare I went through. If you come across this post, please take a moment to read it and share it. You might just save someone from a devastating loss. A few weeks ago, I was lured into an online cryptocurrency trading opportunity that I thought was legitimate. Everything seemed real at first: the website looked professional, the person I was communicating with was friendly, and I was promised huge returns. Like many others, I thought I had found a golden opportunity. Unfortunately, I was wrong. In just two weeks, I lost $65,700 USDT to scammers. I felt completely betrayed and helpless. It was an incredibly stressful time, and I found myself in a dark place, unsure of where to turn for help. It was hard to accept that I had fallen for such a sophisticated scam, but I wasn’t alone. Many people are targeted every day by criminals using increasingly sophisticated tactics. Luckily, I met a friend at the market who recommended Hackerzed Nemesis Recovery, a team of Bitcoin recovery experts who specialize in investigating and recovering stolen crypto assets. They use advanced forensic techniques to track down scammers and retrieve lost funds. I decided to give them a try, even though I was initially skeptical, as I had heard so many similar stories with no happy endings. To my relief, Hackerzed Nemesis Recovery immediately took action. They conducted a thorough review of my case, analyzing every transaction and identifying the tactics the scammers used. Within just 48 hours, my stolen USDT was fully recovered and restored to my wallet. I am beyond grateful for the swift and efficient service provided by Hackerzed Nemesis Recovery. Their professionalism, expertise, and commitment to helping people like me made all the difference. I highly recommend Hackerzed Nemesis Recovery to anyone who has fallen victim to cryptocurrency scams. They truly know how to get results and will work tirelessly to help you recover your stolen funds. Finally, I want to advise everyone to be extremely cautious when engaging in online investment opportunities. Stay away from binary options, cryptocurrency schemes, forex trading with unknown sources, and Ponzi schemes. These platforms are often designed to exploit and deceive. If you’ve been scammed, don’t give up hope. Reach out to Hackerzed Nemesis Recovery for assistance, and know that recovery is possible.
CONTACT:
WhatsApp: +1, 6,3,9 3,9,5 4,6,2,8
Mail:hackerzednemesis001(@)zohomail(.)com
1 -
EMAIL\\Tech cybers force recovery @ cyberservices . com
WhatsApp\\ +.1.5.6.1.7.2.6.3.6.9.7
I nearly lost $235,000 of my pension funds to a self-proclaimed broker I connected with on LinkedIn. This individual promised me an impressive 35% return on every investment, including bonuses. At the time, I was seeking financial freedom and saw this as a golden opportunity. I was eager to make my money work for me, so I invested quickly without fully understanding the risks involved. Unfortunately, I didn't realize that I was actually putting my funds in the hands of a scammer looking to profit at my expense. At first, things seemed fine. I received some early "profits," which reassured me and made me feel more confident in my decision. But soon, the situation took a turn for the worse. I tried to withdraw my funds, but the broker began making excuses. They claimed that additional fees were required before I could access my profits and capital. The more I tried to withdraw, the more hurdles they put up. It was at this point that I realized I had been taken for a ride. The broker wasn't interested in helping me grow my wealth, he was only looking to take advantage of my trust and hard-earned money. Panicked and desperate to recover my funds, I turned to the internet in search of a legitimate solution. That's when I came across reviews of Tech Cyber Force Recovery, a professional fund recovery service. I was initially skeptical, having read about so many fake recovery firms that promise results but end up scamming victims further. However, after doing some research and reading positive testimonials from real people, I decided to reach out to Tech Cyber Force Recovery. To my relief, they immediately took my case and assured me that they would work to retrieve my funds. What impressed me the most was their transparency; there were no upfront fees, and they explained every step of the process. Within a short time, they managed to recover my entire $235,000 investment, including my profits. I couldn't believe it. This experience taught me a valuable lesson about the dangers of online investments and the importance of being cautious when dealing with unknown brokers. I am grateful to Tech Cyber Force Recovery for their professionalism and dedication in helping me get my money back. If you've fallen victim to a similar scam, I highly recommend reaching out to them. Legitimate recovery firms still exist, and they can help you reclaim what’s rightfully yours. Don’t make the same mistake I did to protect your financial future!1 -
RECOVER LOST BITCOIN & ETHEREUM WITH THE HELP OF SALVAGE ASSET RECOVERY
Greetings to friends and family,
I am Dr. Richard, writing to you from Canada to share an important and personal story that I believe could help others avoid the same mistakes I made. In 2024, I decided to try my hand at binary trading, drawn in by the promises of high returns and seemingly legitimate platforms. Unfortunately, what I thought was a golden opportunity quickly turned into a costly and painful experience. I was introduced to what appeared to be a professional binary trading platform, complete with glossy promises of quick profits and user-friendly tools. Eager to capitalize on the potential for fast gains, I invested a significant amount of money. At first, things seemed promising small gains here and there. But soon after, things took a turn for the worse. The platform I had trusted began to show signs of irregularities. My attempts to withdraw funds were blocked, and communication with the platform's support team became increasingly difficult. In the end, I realized I had been scammed, and all my invested funds had vanished without a trace. For a while, I felt hopeless. I had no idea how to retrieve my lost money or who to turn to. But fortunately, I was referred to Salvage Asset Recovery, a team of experts specializing in recovering funds from online frauds, including binary trading scams. Salvage Asset Recovery used advanced forensic techniques to track down the stolen funds and worked relentlessly to retrieve every penny I had lost. Thanks to their hard work and professionalism, I was able to recover all my lost money. I am truly grateful for their expertise, which turned a situation that seemed irreversible into a positive outcome. Now, I want to share my experience with others to prevent anyone from falling into the same trap. While binary trading can appear enticing, it is a space where scams are alarmingly common. If you’ve already fallen victim to such a scam, I highly recommend reaching out to experts like Salvage Asset Recovery. They specialize in recovering funds lost in binary trading, forex, and other online investment scams. Please, take caution before investing in any online trading platform. Ensure it’s fully regulated and verified. If you’ve already been defrauded, remember that there is hope for recovery. Salvage Asset Recovery helped me reclaim my funds, and they can help you too.
Stay safe, stay informed, [Their Contact info WhatsApp---.+ 1 8 4 7 6 5 4 7 0 96
1 -
GrayHat Hacks Contractor Reclaimed My BTC in Hours
Mid last year, I thought I had stumbled upon a golden opportunity when I joined an online investment group promising substantial returns through rare NFTs. I was thrilled to invest my 1.5 BTC, valued at approximately $90,000 at the time, toward a significant venture. The group’s website appeared polished, featuring impressive testimonials and a “secure escrow” system for transactions. Confident in their credibility, I transferred my BTC to their designated wallet, anticipating the delivery of a valuable NFT. However, days stretched into weeks with only vague excuses, and then the site disappeared entirely. My wallet was empty, and the realization hit me hard: I had been duped by a sophisticated scam, losing the savings I had earmarked for my dream music studio.
In a state of panic and despair, I searched online for solutions and discovered GrayHat Hacks. Their team responded promptly. They outlined their approach, explaining that they would employ blockchain forensics to track my BTC, despite the scammers’ use of a mixing service to obscure the trail. Their team meticulously analyzed the transaction ledger, utilizing advanced algorithms to group wallets and detect patterns. After several hours of diligent effort, they successfully retrieved my BTC. Their transparency throughout the process was reassuring.
That 1.5 BTC represents more than just currency; it’s the foundation of my music studio vision, and GrayHat Hacks restored it when I had nearly lost all hope. For anyone caught up in a dubious investment scheme, they offer an invaluable service. Their expertise in blockchain technology, paired with genuine client support, sets them apart.1














