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 - "97++"
-
Interviewer: Welcome, Mr X. Thanks for dropping by. We like to keep our interviews informal. And even though I have all the power here, and you are nothing but a cretin, let’s pretend we are going to have fun here.
Mr X: Sure, man, whatever.
I: Let’s start with the technical stuff, shall we? Do you know what a linked list is?
X: (Tells what it is).
I: Great. Can you tell me where linked lists are used?
X:: Sure. In interview questions.
I: What?
X: The only time linked lists come up is in interview questions.
I:: That’s not true. They have lots of real world applications. Like, like…. (fumbles)
X:: Like to implement memory allocation in operating systems. But you don’t sell operating systems, do you?
I:: Well… moving on. Do you know what the Big O notation is?
X: Sure. It’s another thing used only in interviews.
I: What?! Not true at all. What if you want to sort a billion records a minute, like Google has to?
X: But you are not Google, are you? You are hiring me to work with 5 year old PHP code, and most of the tasks will be hacking HTML/CSS. Why don’t you ask me something I will actually be doing?
I: (Getting a bit frustrated) Fine. How would you do FooBar in version X of PHP?
X: I would, er, Google that.
I: And how do you call library ABC in PHP?
X: Google?
I: (shocked) OMG. You mean you don’t remember all the 97 million PHP functions, and have to actually Google stuff? What if the Internet goes down?
X: Does it? We’re in the 1st world, aren’t we?
I: Tut, tut. Kids these days. Anyway,looking at your resume, we need at least 7 years of ReactJS. You don’t have that.
X: That’s great, because React came out last year.
I: Excuses, excuses. Let’s ask some lateral thinking questions. How would you go about finding how many piano tuners there are in San Francisco?
X: 37.
I: What?!
X: 37. I googled before coming here. Also Googled other puzzle questions. You can fit 7,895,345 balls in a Boeing 747. Manholes covers are round because that is the shape that won’t fall in. You ask the guard what the other guard would say. You then take the fox across the bridge first, and eat the chicken. As for how to move Mount Fuji, you tell it a sad story.
I: Ooooooooookkkkkaaaayyyyyyy. Right, tell me a bit about yourself.
X: Everything is there in the resume.
I: I mean other than that. What sort of a person are you? What are your hobbies?
X: Japanese culture.
I: Interesting. What specifically?
X: Hentai.
I: What’s hentai?
X: It’s an televised art form.
I: Ok. Now, can you give me an example of a time when you were really challenged?
X: Well, just the other day, a few pennies from my pocket fell behind the sofa. Took me an hour to take them out. Boy was it challenging.
I: I meant technical challenge.
X: I once spent 10 hours installing Windows 10 on a Mac.
I: Why did you do that?
X: I had nothing better to do.
I: Why did you decide to apply to us?
X: The voices in my head told me.
I: What?
X: You advertised a job, so I applied.
I: And why do you want to change your job?
X: Money, baby!
I: (shocked)
X: I mean, I am looking for more lateral changes in a fast moving cloud connected social media agile web 2.0 company.
I: Great. That’s the answer we were looking for. What do you feel about constant overtime?
X: I don’t know. What do you feel about overtime pay?
I: What is your biggest weakness?
X: Kryptonite. Also, ice cream.
I: What are your salary expectations?
X: A million dollars a year, three months paid vacation on the beach, stock options, the lot. Failing that, whatever you have.
I: Great. Any questions for me?
X: No.
I: No? You are supposed to ask me a question, to impress me with your knowledge. I’ll ask you one. Where do you see yourself in 5 years?
X: Doing your job, minus the stupid questions.
I: Get out. Don’t call us, we’ll call you.
All Credit to:
http://pythonforengineers.com/the-p...89 -
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 -
Rough analysis of LinkedIn inmail’s I get:
Hi <5% of time, not my name>,
I was looking at your profile <97% a lie>. I was very impressed with your <10% something I’ve never done> experience working for <5% a company I’ve never heard of>. Would you be interested in hearing more about <60% a job I’m not suited for>, they offer amazing benefits and have a great culture!
... no8 -
So I cracked prime factorization. For real.
I can factor a 1024 bit product in 11hours on an i3.
No GPU acceleration, no massive memory overhead. Probably a lot faster with parallel computation on a better cpu, or even on a gpu.
4096 bits in 97-98 hours.
Verifiable. Not shitting you. My hearts beating out of my fucking chest. Maybe it was an act of god, I don't know, but it works.
What should I do with it?228 -
Fuck you, devs who quote Knuth:
"Premature optimization is the root of all evil"
I agree with the spirit of the quote. I agree that long-winded arguments comparing microsecond differences in performance between looping or matching constructs in a language syntax is almost always nonsense. Slightly slower code can even be preferable if it's significantly clearer, safer and easier to maintain.
But, two fucking points need to be made to you lazy quickfix hipsters trying to sell your undercooked spaghetti code as "al dente", just fucking admit that you had no clue what you were doing.
So here we go:
1. If you write neat correct code in one go, you don't need to spend time to optimize it. Takes time to learn the right patterns, but will save you time during the rest of your career.
2. If you quote Knuth, at least provide the context: "We should forget about small efficiencies, say about 97% of the time [...] Yet we should not pass up our opportunities in that critical 3%"
YES THAT CRITICAL 3% IS WHERE YOU MESSED UP.
I'll forgive you for disgorging your codevomit into this silly PR.
BUT YOU'RE QUOTING KNUTH IN YOUR DEFENSE?
Premature optimization is the root of all evil... 6300 SQL queries to show a little aggregate graph on the dashboard... HE WOULD FUCKING SLAP YOUR KEYBOARD IN HALF IN YOUR FACE.3 -
F***ing windows, spent ages repairing a database table only for windows to bloody BSOD at 97% complete 😡
-
when it's 36*C / 97*F in the city and you pack your laptop into your backpack and flee on to the swiss alps. To work on a new website at a beautiful landscape, on green meadows, cows and agreeable 18*C / 64*F.
And getting payed for this... This is life!
10 -
Worst:
One fine Friday night in early '97 while drinking with my buddies I got a page from work. Called the office to understand what the problem is.
*shit I can't fix this over the phone, and buddy here doesn't have a PC so I can't dial-in via PCAnywhere*
Told told the users "Ok I'll be there in an hour and a half. Stop all the running jobs and start the backup"
*figures I still have 1hr to spare so continues to down fair amounts of O-be-joyful with buddies then hailed a cab to office*
I arrived in office 1.5hrs later (2am) exactly as I predicted and went straight to work. Initial checks confirmed my suspicion of the issue so I wrote the appropriate SQL to get started:
'drop table foobar'
***The specified table (foobar) is not in the database***
I looked at foobar and figured out immediately why I got the error, then corrected the SQL and ran again:
'drop database foobar'
***Database dropped***
*What the FUCK!!! You fucking drunk!!! What did you fucking do? What if I disappear to another country, work as a waiter or something*
After a few moments of panic and a good deal of 'What ifs' I calmed down, looked to the users and made up some bullshit "Some of the indexes are corrupted, we need to restore from the backup"
Best:
I wrote most of my '94 midterm project during weekends where me and my buddies were drunk
https://devrant.com/rants/783197/...2 -
An application based on a single MySQL stored procedure that contained all the application business logic inside of it (plus a poor webapp that simply called it). The stored procedure had 97 (yes, NINETY SEVEN) parameters... and about half of them were boolean flag used for enabling/disabling another parameter. I think that Uncle Bob could follow you holding an AK-47 if he saw that. The saddest part is that the shit was written by a guy having a PhD in computer science, and he knew that was bad, but the boss asked him to do it in that way. The guy left the company before I joined it and I had to maintain that crap. Guys, the first time I saw it I thought that should be a joke. Code generated by decompilers was easier to read, maybe even Brainfuck. I tried complaining with the boss but she said that the system was wonderful and very efficient. This was one of the reasons I moved to another company after some months.3
-
Windows notepad is starting to get really freaky features.
It will actually show an asterisk in the title bar if you have unsaved changes. So now you won't have to spam Ctrl-S a hundred times more often than you do anyway.
Congratulations.
"Modified indicator: Notepad will now show an asterisk (*) in the title bar before the title of a document to indicate that a document has unsaved changes."
https://blogs.windows.com/windowsex...11 -
Managed a 97% reduction in bandwidth usage for our internal host monitoring tool by converting the dashboard from using AJAX polling to websocket events.
Completely unnecessary but wanted an excuse to do some development with websockets. (:10 -
"In fact, 97% of the code in a modern web application comes from npm. An individual developer is responsible only for the final 3% that makes their application unique and useful."
😄 3%? haha
npm report 2018
https://blog.npmjs.org/post/...14 -
So one rant reminded me of a situation I whent through like 10 years ago...
I'm not a dev but I do small programs from time to time...
One time I was hired to pass a phone book list from paper to a ms Access 97 database...
On my old laptop I could only add 3 to 5 records cause MS access doesn't clean after itself and would crash...
So I made an app (in vb6) , to easily make records, was fast, light and well tabbed.
But now I needed a form to edit the last record when I made a mistake...
Then I wanted a form to check all the records I made.
Well that gave me an idea and presented the software to the client... A cheesy price was agreed for my first freelance sell...
After a month making it perfect and knowing the problems the client would had I made a admin form to merge all the databases and check for each record if it would exist.... I knew the client would have problems to merge hundreds of databases....
When it was done... The client told me he didn't need the software anymore.... So I gave it to a friend to use as an client dabatase software... It was perfect for him.
One month later the client called me because he couldn't merge the databases...
I told him I was already working in a company. That my software was ready to solve his problem, but I got mad and deleted everything...
He had to pay almost 20 times more for a software company to make the same software but worst... Mine would merge and check all the databases in a folder... Their's had to pick one by one and didn't check for duplicates... So he had to pay even more for another program to delete duplicates...
That's why I didn't follow programming as a freelance... Lots of regrets today...
Could be working at home, instead had a burn out this week cause of overwork...
Sorry for the long rant.2 -
Long time ago, back in a day of Microsoft Office 95 and 97, I was contracted to integrate a simple API for a payment service provider.
They've sent me the spec, I read it, it was simple enough: 1. payment OK, 2. payment FAILED. Few hours later the test environment was up and happy crediting and debiting fake accounts. Then came the push to prod.
I worked with two other guys, we shut down the servers, made a backup, connected new provider. All looked perfectly fine. First customers were paying, first shops were sending their products... Until two days later it turned out the money isn't coming through even though all we are getting from the API is "1" after "1"! I shut it off. We had 7 conference calls, 2 meetings, 3 days of trying and failing. Finally, by a mere luck, I found out what's what.
You see, Microsoft, when you invent your own file format, it's really nice to make it consistent between versions... So that the punctuation made in Microsoft Word 97 that was supposed to start from "0" didn't start from "1" when you open the file in Microsoft Word 95.
Also, if you're a moron who edits documentation in Microsoft Word, at least export it to a fucking PDF before sending out. Please. -
This brings joy
https://reddit.com/r/technology/...
Bypass paywall:
A series of scandals and missteps has damaged Facebook's reputation so much that the company is being forced to pay ever larger compensation to hire and retain workers, according to industry recruiters, former employees, and data reviewed by Insider.
The company has always competed aggressively for talent, and the tech job market in general is on fire. But a deteriorating public image means the social-media giant now has to outbid other major tech companies, such as Google.
"One thing Facebook can still do is pay a lot more," said Jose Guardado, an experienced tech recruiter and the founder of Build Talent. "They can easily throw more compensation at people they currently have, and cover any brand tax and pay a little more to get people to come on."
Silicon Valley companies thrive or whither based on their ability to recruit the smartest employees. Without a steady influx of engineers and other technical experts, new products and important updates take longer to release, and rivals can quickly get ahead. Then there's the financial cost: In 2022, Facebook projected, expenses could jump as high as $97 billion from $70 billion this year, in large part because of "investments in technical and product talent." A company spokesperson did not respond to a request for comment.
Other companies, and even whole industries, have had to increase compensation to overcome hiring and retention problems caused by scandal and shifting public perceptions, said Alan Johnson, a managing director at the compensation consulting firm Johnson Associates. "If you're an oil company, if you make cigarettes, if you're in cattle or Wells Fargo, sure," he said.
How well this is working for Facebook is debatable as the company has more than 4,300 open jobs and has seen decreasing rates of acceptance on job offers, according to internal documents reported by Protocol. It's also seen dozens of high-level executives leave this year, and recruiters say employees are now more open to considering jobs elsewhere. Facebook used to be a place that people rarely left, given its reach, pay, and perks.
A former Oculus engineer who left last year said Facebook could now be seen as a "black mark" on someone's career. A hardware engineer who exited in 2020 shared similar sentiments: They said they quit because of concerns about misinformation on the platform and the effect of that on children. Another employee said their department was dissolved in late 2019 by Facebook and, although the company offered another position that paid more, they left last year anyway for a different industry. The workers, and many other people who spoke with Insider for this story, asked not to be identified because of the sensitive nature of the topic.
For those who stick around and people who take new jobs at Facebook, base pay and stock grants have gone up a "sizable" amount in the past year, said Zuhayeer Musa, cofounder of Levels.fyi, a platform that collects pay data based on verified offers and compensation disclosures.
During the second quarter of 2021, the median compensation for an upper-mid-level engineer, an E5, was $400,000, up from $380,000 a year earlier. For an E4, the median pay jumped to $276,000 from $256,000 in the same period. For both groups, the increases were double the gains between 2018 and 2019, Levels.fyi data showed.
Musa, who's firm also offers pay-negotiation coaching, said previously that the total compensation ceiling for an E5 engineer at Facebook was $450,000. "We recently had a client get up to $510,000 for E5," he added.
Equity awards at the company are getting more generous, too. At the group-director and VP levels, Facebook staff are getting $3 million to $6 million in restricted stock units each year, another tech recruiter said. Directors and managers are getting on average $1 million a year. In engineering, a high-level engineer is getting $600,000 in stock and a $75,000 bonus, while even an entry-level engineer is getting $50,000 to $100,000 in stock and a $20,000 to $50,000 bonus, Levels.fyi data indicated.
Even compared to Google, Facebook's stock awards are generous and increasing, Levels.fyi data shows. While base pay is about the same, Facebook offers more in stock grants, significantly increasing total compensation. At Google, entry-level equity awards range from $20,000 to $38,000, while Facebook grants are worth $40,000 to $60,000. Sign-on bonuses at Facebook are often about $50,000, while Google gives about $20,000, according to the data.
"It's not normal, but it's consistent with the craziness that's happening in the market right now," said Aalap Shah, a managing director focused on the tech industry at the consulting firm Pearl Meyer.10 -
My brain power allocation:
- 1% — happiness
- 1% — creativity
- 1% — work
- 97% — picking out insignificant details in my past and feeling anxious about them, imagining what could’ve been, or rigorously planning out completely hypothetical scenarios4 -
Website WITH FB, Twitter, translate plugin:
Page size: 3.6MB
Requests: 97
Website WITHOUT FB, Twitter, translate plugin:
Page size: 680KB
Requests: 21
Wth!! And can't find a way to optimise these shits..3 -
Just texted my girlfriend my exam results:
"Got my programming fundamentals results!
exam: 91,
coursework: 97,
final: 94"
Then I realised I just used JSON syntax to text my girlfriend...4 -
What the fucking fuck you bastard of an OS? Your fucking filthy "Copying" dialog box!
One of these days, I am gonna fuck you up in the ass so hard, you are gonna see Gates flying!
I am copying a file from CD in to my PC. At 97%, this shit hole of an OS says through it's fucking urine hole of a "Copying" dialog box: "An unexpected error is keeping you from copying this file. Try Again/Skip/Cancel"
Seriously?! It's 2018, and an unexpected error is keeping me from copying the file?! Where the fuck is your QA?
I, being an unreasonably optimistic human with this Billy fucker, click "Try Again".
What happens? You know very well what happens. This shit of an OS starts copying the file again! From 0%!
This is the second time, this bloody, filthy, fucking "Copying" dialog box has given me problems.
I am telling you, it's days are numbered in my PC. The countdown starts now.
.
.
.
It happened again! At fucking 97%! I just want to scream now.
AAAAAAAAAAAAAAAAAAAHHHHHHH!!7 -
Top gripes about getting older as I'm about to turn 40:
5. Actually starting to have moments at home after work where I'm contemplating saying 'Hey babe, wanna bang?' but before I can get the words out my body pipes in with 'Dude, cool your jets, we're wiped out today; check back tomorrow.' Women say they like older guys because <insert character trait here> but I'm now convinced it's just because they know there's less work involved. =/
4. Friends with young children. I hardly ever see them anymore, and when I do, all they talk about are their kids and their shitty relationship with their co-parent. The circle continues to get smaller...
3. Having to go get glasses in order to renew my driver's license. How do we not have a heads-up display in every vehicle by now that shows the street numbers of buildings as I'm perpendicular to them as well as the names of upcoming cross streets? That way I'd fix the problem the way I do for everything else: notch up the font scaling on my display a point or two. Elon, you're slipping...
2. Realizing that the "American Dream" isn't worth the paper it was printed on. (Anyone else remember paying 97¢ for a gallon of gas or $2 for a pack of Marlboros?) Concurrent realization: It's not easy to find work in another country without moving there first, even if you speak the language. Any devs in Portugal that read this, ligue-me.
1. Being too busy to just chat with new people I meet except on rare occasion. Mostly referring to work time here, when it seems I'm always needing to find the shortest route to the objectif du jour. If I could tell my teenage self just one piece of advice, it'd probably be "start your career in Europe, not the USA" but I really want it to be "treasure the time you spend on IRC talking about anything and everything with people that always have time for you and vice versa, because it's going to be over before you know it." -
"We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil." - C. A. R. Hoare3
-
Why do most people think that machine learning is the answer to their poor business decisions. I have recently had a client who won't stop talking about how his business will grow to Google's scale if I get the model to 97% accuracy . Regardless to say his data is noisy and unstructured. I have tried to explain to him that data cleansing is more important and will take most of the time but he only seems to care about the accuracy and how he is losing investors because I haven't reached that accuracy. This is fucking putting alot of pressure on me and it's not becoming fun anymore. I can only hope he achieves his ambitions if I ever get that accuracy (Ps: From the research papers I have read on that problem, the highest accuracy a model has ever got to it 90%)3
-
Linker crashed while building LLVM from source AT FUCKING 97% ARE YOU FUCKING KIDDING ME?
(Antergos , GCC 7)
The error was that it exhausted the memory. How the fuck does a system with 16GB RAM and a swapfile run out of memory while building something? Dayum.5 -
I am great at getting raspberry pi projects about 97% done...
But absolute shit at that last 3%.
Working on a home built WiFi repeater and deauther (front) and a 1TB SSD nextcloudpi server (back). Definitely outside my comfort zone, especially the first one. Despite having mad time on terminal, and SSH every day, I am very soft on this networking shit.
wpa_supplicant, though I do not now, I will come to understand your mysteries.
-
TechSuppDept: There is a critical antivirus upgrade we need to do...
Me(email): can you give me 48 more hours, ive already spent 7days processing my data... cpu, mem already at 97% utility
TechSuppDept: Please explain your email.
Me: .
-
Wk78
My worst dev experience was my first software as freelance...
1 month codding
When delivering the app the client didnt want it anymore...
Two years latter the client calls me because he had a problem... Merging hundreds of access 97 databases... Exactly what my software did (besides editing, filters and remove duplicates)
Told him I got mad, deleted the source code and was already working on a company...
He had to pay for a software company to do the same 10 times the cost4 -
The web is just a fucked up place. Anytime i have an idea and wanna slap together an mvp, i always feel like web standards are just made by people who have no professional training and once every year come up with some bullshit so they dont get fired.
Figure 1: cors
You wpuld think that setting "access-control-allow-origin" to * would let, well, * through, like in every other field of programming, but no, make sure all 97 other headers match or you will just get a cors error. The server expects application/json and you didnt specify that? Fuck you, have a cors error. Both express and flask have specific packages addressing this one problem so i guess im not the only one.
Figure 2: frameworks
Remember reactive programming? Remember rxjs? No you dont because all frameworks reimplement rx with shadow dom fuckery. Did you know you can have your fucking templates with 5 lines of rxjs code? Amazing huh?
Figure 3: php
It still exists for some reason.7 -
300 global variables.. THREE HUNDRED FUCKING GLOBAL VARIABLES?
Are you for real?
Now let me check the line numbers again..
hmm.. line 97 to .. yep line 410, just a few new lines to seperate some of them or.. group? Idk, I've given up on trying to understand those.
Now you may ask "But ThatPerlDeb, where did you see this and what was the intention?"
Low and behold, take a chair and I may explain this to you.
First of all: Fuck the dev that wrote this!
Second: Fuck all the devs that kept up with this practice or whatever you want to fucking call this!
Now, the application is our POS system that our customers can use for a monthly fee (That this piece of garbage even requires payment is disgusting) but anyway..
The global variables sometimes are declared for labels, sometimes for some frames, sometimes just for random values to be there.
We're using Perl for the POS system and Perl ain't the best at OOP, so in the dev's defense I can understand why you'd use a few global variables, but not fucking 300!! FUCK OFF WITH THIS BULLSHIT!!
So now I'm going through this torture slowly but surely deleting globals and putting them into some sort of scope and always MANUALLY test if something broke. Again, this company sucks ass and there's nothing that could even be considered a "unit test" or something like that, so fuck that, too.
After two hours I've brought down the count of global variables to about 260, so there's progress being made..
But then, there comes more!
"But how???" you may ask, and you're right, I've asked that myself.
Now to resolve the global stuff in each file some of the initial globals are used, we got about 20-30 files which do different stuff, all fair and square, at least there was an attempt at seperating functions but god this mess is so fucking fucked up. So in order to "safely" delete a global variable I have to check if any of the variables are used in another file, and if so, in which scope and how they are used.
Spaghetti would be a compliment for this fucking disgusting piece of utter bullshit.
Let alone the code quality of this "code"
Indendation? Dafuq is dat?
Scope? Nah, we got everything global anyway
Function size? Well, some are 5 lines, some are 900 lines, who cares anyways, right?
I'm so fucking glad once I leave this shithole, for real.6 -
You can close the lid of your laptop when installing programs to conserve energy.
Reality1. It resumes
Reality2. It cancels itself (recall when the process cancells in 97%)3 -
That feeling when your first classifier on a real life problem exceeds the 97% majority class classifier accuracy.
I'm doing something right! -
It was back on 96~97, using Pascal on a 386 for sure. But the program itself was probably a calculator. We want to learn how to make a program that would stay running on background to copy itself for other files, like a virus. But we didn't intend to build one. It was just to learn how to do that.
My first visual came some time later, on Win 95, made in Delphi. It were a music player, something like winamp.
Good times! :)3 -
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 -
Oh my God ...
Windows 10 Creators Update is the best version of Windows 10 ever
https://blogs.windows.com/windowsex...13 -
After a lot of work, the new factorization algorithm has a search space thats the factorial of (log(log(n))**2) from what it looks like.
But thats outerloop type stuff. Subgraph search (inner loop) doesn't appear to need to do any factor testing above about 97, so its all trivial factors for sequence analysis, but I haven't explored the parameter space for improvements.
It converts finding the factors of a semiprime into a sequence search on a modulus related to
OIS sequence A143975 a(n) = floor(n*(n+3)/3)
and returns a number m such that n=pq, m%p == 0||(p*i), but m%q != 0||(q*k)
where i and k are respective multiples of p and q.
This is similar in principal to earlier work where I discovered that if i = p/2, where n=p*q then
r = (abs(((((n)-(9**i)-9)+1))-((((9**i)-(n)-9)-2)))-n+1+1)
yielding a new number r that shared p as a factor with n, but is coprime with n for q, meaning you now had a third number that you could use, sharing only one non-trivial factor with n, that you could use to triangulate or suss out the factors of n.
The problem with that variation on modular exponentiation, as @hitko discovered,
was that if q was greater than about 3^p, the abs in the formula messes the whole thing up. He wrote an improvement but I didn't undertsand his code enough to use it at the time. The other thing was that you had to know p/2 beforehand to find r and I never did find a way to get at r without p/2
This doesn't have that problem, though I won't play stupid and pretend not to know that a search space of (log(log(n))**2)! isn't an enormous improvement over state of the art,
unless I'm misunderstanding.
I haven't posted the full details here, or sequence generation code, but when I'm more confident in what my eyes are seeing, and I've tested thoroughly to understand what I'm looking at, I'll post some code.
hitko's post I mentioned earlier is in this thread here:
https://devrant.com/rants/5632235/...2 -
This error, which took me a long time to find, demonstrates the importance of useful variable names.
Using the Wolfram Language:
pp = {};
For[i = 0, i <= Max[p], i++, If[Count[p, i] != 0, pp = Join[pp, {{i, Count[pp, i]}}], -1]];
pp
Outputs:
{{1, 0}, {2, 0}, {3, 0}, {4, 0}, {5, 0}, {6, 0}, {7, 0}, {8, 0}, {9, 0}, {10, 0}, {11, 0}, {12, 0}, {13, 0}, {14, 0}, {15, 0}, {16, 0}, {17, 0}, {18, 0}, {19, 0}, {20, 0}, {21, 0}, {22, 0}, {23, 0}, {24, 0}, {25, 0}, {26, 0}, {27, 0}, {28, 0}, {29, 0}, {30, 0}, {31, 0}, {32, 0}, {33, 0}, {34, 0}, {35, 0}, {36, 0}, {37, 0}, {38, 0}, {39, 0}, {40, 0}, {41, 0}, {42, 0}, {43, 0}, {44, 0}, {45, 0}, {46, 0}, {47, 0}, {48, 0}, {49, 0}, {50, 0}, {51, 0}, {52, 0}, {53, 0}, {54, 0}, {55, 0}, {56, 0}, {57, 0}, {58, 0}, {59, 0}, {60, 0}, {61, 0}, {62, 0}, {63, 0}, {64, 0}, {65, 0}, {66, 0}, {67, 0}, {68, 0}, {69, 0}, {70, 0}, {71, 0}, {72, 0}, {73, 0}, {74, 0}, {75, 0}, {76, 0}, {77, 0}, {78, 0}, {79, 0}, {80, 0}, {81, 0}, {82, 0}, {83, 0}, {84, 0}, {85, 0}, {86, 0}, {87, 0}, {88, 0}, {89, 0}, {90, 0}, {91, 0}, {92, 0}, {93, 0}, {94, 0}, {95, 0}, {96, 0}, {97, 0}, {98, 0}, {99, 0}, {100, 0}, {101, 0}, {103, 0}, {104, 0}, {105, 0}, {106, 0}, {107, 0}, {108, 0}, {111, 0}, {112, 0}, {116, 0}, {118, 0}, {122, 0}, {125, 0}, {136, 0}, {137, 0}}
As opposed to the expected output, which should have no 0s as the second values in any of the tuples.
I spent a large amount of time examining the code to generate p before realizing that the bug was in this line.3 -
Okay so after a few days of thinking I think I'm sure about what I'm about to write :
Best : Discovering how to use streams while making a service that should extract a tar.gz, extract the tar.gz within it, filter the extracted files and correct some of them, then compress each folder as tar.gz and compress all the archives as .zip. The amazing thing for me is that with streams I could do all the operations in just two passes, maybe one if I had more time, saving disk writing time.
Worst : upgrading a bunch of legacy Access 97 apps and its VBA code to Access 2013 -
Steve Jobs talking about gigabit internet, cloud and SaSS in ‘97
https://m.youtube.com/watch/...
watching old Jobs videos from 90s when Steve was at Next and just after back to Apple with great ideas and fresh mind, damn he saw that all in 90s -
After trying 4 different versions of installation, applying patch, digging through obscure sites, down the rabbit hole, finally
ERROR at 97%
(; _ ;)
Back-up plan : Forget everything... buy land somewhere in the in the mountain and be a farmer.1 -
Notification system is weird
Suppose I have 200 notifs unread and as usual, dR shows 99+ on its bell. But if I click to see it(someone mentioned you in a comment and ++d your rant and whatsoever), its logic is flawed and shows only 97 notifs left unread. But actually 200-3=197 in the whole fucking list5 -
So my first computer... My dad got a Laptop somewhere around 96-97 for work as he had to travel a lot abroad. He also used to take work home and work there in the evening or on weekends. I kindof asked if I could play with it and he just opened defragmenting and I loved the animation. At least I think it had some animation. I know another computer I got later had it. However like the second or third time he left me alone with it, I decided to find something else and somehow managed to instead of defragment the hd, format it. Or atleast delete like a few folders on it. However that game was "lame", so I went out to play with a friend, as the computer wouldn't respond after some time. I've never seen him as angry as when I got home.
Long story short, me and my brother soon got our own computer, like a really " old" one the company where my aunt worked sold. It didn't had a cd rom drive, just a 3.5 and a bigger drive. My dad later took the big tape out and replaced it with a cd rom drive. It ran win95 I think. And we later upgraded it to 981 -
Today something pretty bad happened (as always at school)
and I'm gonna rant about it to
1) get your expertly opinion on it
2) relieve from it
SOOOOO
today I entered class to paretake in the writing of the much anticipated class test (kappa).
The teacher gives everybody a sheet with the exercises - let alone me.
I tell him to give me a sheet too.
"Put a book between you and xy"
so I do. I ask him again to give me the exam paper. No response.
Again, and he looks at me with a disrespectful look. I look back. And get thrown out of the room - not getting a chance to paretake in the writing of the test yet getting the worst grade one could possibly get in the modest german education system (=> 6)
Now I'm going to pursue any possible legal action against him (I dont care about him. After the lesson I wanted to talk with him; yet he declined my offer for reconsiliation, then he called my parents, even though he had time to think about what he did {any sane person would agree that what he did was wrong <yet my classmates dont agree>}. Also, he is that type of teacher who gives unusually unnessecary homework - which I personally see as punition, since I already know 97% of the stuff thought in [english] classes)
See why I am despising school so much?
It drains my last bit of energy until I am an empty shell with the sole goal to finish education asap in order to be able to fucking work.
BTW: I tried using my best english in this rant to demonstrate my abilities in order for you to be able to see that I honestly dont those "basic" english lessons.4 -
So the last couple of days I have been optimizing my site, from a Pagespeed score below 40 to 97 and I can't get further because I'm using Google Analytics, Facebook Like-button and load a couple of images from Youtube.
Why must you be like this Google 😥😥It's partly you code, so why are you punishing me 😥1 -
Booted into my Windows doing uni assignment (Windows Form App, didn't wanna use VM), was bored so I decided to run Windows Update...
"Feature update to Windows 10, version 1709".....
Fffffffffffffffffffffffffffffffffff.....
Enter hour 3, "Preparing to install updates 97%", can't do shit in Visual Studio without lagging cause of this damn update1 -
I despise whovere come up with VBA IDE. Why is all the code confined within one window when multimonitor setups existed even back in the 14'' CRT era? And what sort of a fuckhead thought it's a good idea to throw a pop-up (with a notification sound!) every time you want to move from partially written line to a different one?
But hey, I managed to optimise the data parsing from 97 down to 3 sec.3 -
I love this weekly group rant, it made me think back when my mom started to work in a kindergarten and she used to take me to work when i was 4-7 years old ('94 - '97).
There was this "TV" and all the kids used to smash the buttons on it. It also played sound, but there was always a lot of kids there so I was shy to ask them if I push the buttons too. But I was the teachers son, so I didn't had to sleep in the afternoon, and then I discovered this computer thing I was amazed, it was like nothing I saw before, you push it and it does what you pushed and, *_* this smiley is exactly me back then. It was probably an old commodore with green text on the black screen. It was the moment when I decided to get more information about this wonder.
In elementary school (around '98) we had this computer room and as I was one of the best students back then I was granted access to it. It was a huge success in a post communist country to get money for new computers to teach us kids to use them back then, so only the chosen ones could use them, and I was one of them, one of the best time time of my life, honestly. At this moment I knew for sure, I want one and when I grow up I gonna work with them. I had no idea what you can do with it but every adult is talking about how well paid are the people who use them at work. :D it sounds funny now
In '89 or '99 we visited our family in a town far away. My grandfathers sisters boyfriend had a computer and he said, look I also have internet. This face again *_* what the hell is internet. So he explained me this internet thing which "makes all computers connected, but you have to pay for it and it kinda works like wired phones you know. Here you put the address and you can open the website"
me: website, whoooa *_*
8-9 year old clever me: "but how do you know what are the addresses, do you have a phonebook for these addresses?"
he showed me google, and a slovak and czech search engine, I remember searching for "funny pictures" on the slovak search engine, because I was thinking If I search google, its english so he would pay too much :D
I didn't had a computer until I was 13 years old, but then I started to messing with Microsoft Front Page 2003, was amazed with the html and css generated by it and started to editing it.
Now Im a front end web dev -
Microsoft's new Windows RS5 build has File Explorer Dark Theme.
https://blogs.windows.com/windowsex...
"Today’s build marks the turning point where we’ve finished what we set out to do for this release."
🤣🤣🤣2 -
Google Play Music uploading songs to the library with Chrome is a cpu killer, it was at like 97% and laptop was lagging as hell
-
What are dev books would you recommend reading.?
I am already done with
97 things programmer should know.
Starting with
The pragmatic programmer.1 -
Could my car get its own driving license so I get a self driving car?
It fulfills the age requirement to apply for a driving license, built -97. -
Trained a hand digit recognition model on MNIST dataset.Got ~97℅ accuracy (wohoo!).Tried predicting my digits,its fucked up! Every ML model's story (?)3
-
I am still in awe of the exceptional service I received from Tech Cyber Force Recovery, a renowned team of experts specializing in recovering lost Bitcoin and USDT. Like many others, I was a victim of a phishing scam that left me with a devastating loss of 3.5 BTC and 10,000 USD. The thought of never being able to recover my hard-earned investments was overwhelming, and I had almost given up hope.
That was when I stumbled upon Tech Cyber Force Recovery while searching for a solution online. I must admit, I was skeptical at first, but the numerous positive reviews and testimonials from satisfied clients convinced me to take a chance.
I contacted their team, and their professionalism and expertise shone through from the initial consultation to the final recovery. The Tech Cyber Force Recovery team guided me through a series of steps, explaining each process in detail and keeping me updated on their progress. Their dedication and perseverance were impressive, and it was evident that they had a deep understanding of the complexities involved in crypto recovery.
Within two weeks, Tech Cyber Force Recovery successfully recovered 95% of my lost Bitcoin and USDT. I was overjoyed and relieved to have my investments back, and I couldn't thank them enough for their exceptional service. What sets Tech Cyber Force Recovery apart is its commitment to delivering results and its willingness to go the extra mile.
They are not just a team of experts but a beacon of hope for those who have lost their cryptocurrency investments. If you're a victim of a similar scam or have lost your cryptocurrency due to any other reason, I highly recommend reaching out to Tech Cyber Force Recovery. They will work tirelessly to recover your lost assets and restore your faith in the crypto community. In conclusion, I would like to express my gratitude to Tech Cyber Force Recovery for their outstanding service.
TEXT OR CALL + (156)(172)(636)97
EMAIL contact(@)techcyberforcerecovery(.)info
WEBSITE https(://)techcyberforcerecovery(.)info -
Gonna excavate a gem, polish into a Shiny RubyGem! Even if it becomes a shoddy idea later, I'm sure gonna enjoy the bundler. With those adventurous minitests, rake made my life soothing itself!
https://github.com/mash-97/shpg -
I should’ve known better. I’m an artist who spent years building my digital art and NFTs, earning real crypto that I reinvested into my work. Then, I found what seemed like the perfect NFT platform: "Low fees! High exposure! Exclusive perks!" And it wasn’t real.The moment I connected my wallet, my funds vanished. Heart dropped. In crisis mode, I made a viral TikTok rant about the scam, and got a DM from FUNDS RETRIEVER ENGINEER: "Saw your video. We can help."
Skeptical but desperate, I responded. Within hours, their team traced the stolen funds through complex blockchain transactions, revealing an orchestrated heist via a Dubai shell company. Two weeks later, they had recovered 97% of my funds. They didn’t stop there. They helped me secure my wallets, verify NFT platforms, and even set up two-factor authentication properly (yeah, I hadn’t done that either).
Now, I still create NFTs, but I warn others. My TikTok is no longer about art; it’s about staying safe in Web3.
Lesson learned? Trust is costly in crypto, but when you need the real deal, FUNDS RETRIEVER ENGINEER is the "blue-chip" I trust.1 -
I Thought My Nest Egg Was Immobile Permanently! Overseas travel is glamorous until you are at 37,000 feet, trying to cope with different time zones, airport security queues, and dodgy Wi-Fi that cannot even open an email, never mind providing your future funding. I had stashed $890,000 of Bitcoin away as my retirement nest egg, a nest egg made of decades of hard work. That sense of security evaporated in thin air when I replaced my phone and forgot to update the two-factor authentication settings on my wallet.
Somewhere across the Atlantic, turbulence rattled the plane, but the real storm was the panic in my chest when I realized that I could not access my wallet. Tired and flustered, I arrived with the dread realization that my virtual fortune was now as out of reach as the stars in the sky. The frustration mounted as I hopscotched from airport to airport. Customer service droids, robot call centers, and half-baked solutions had me addressing vending machines instead of human beings. That was before a layover in Singapore where, bleary-eyed and clutching my third cup of coffee, I chanced upon a travel vlogger's YouTube video raving about Tech Cyber Force Recovery.
With nothing to lose, I called. From the first message itself, it was different. These were actual people, smart, caring, and willing to work around my insane schedule. They scheduled calls during my layovers and adjusted to the chaos of traveling overseas like pros.
Their engineers delved deep into my issue, analyzing time-stamped authentication records. It was as if watching a digital detective movie, minus the stakes: my future. For over 14 hair-on-end days, they weathered the 2FA bug like pilots navigating through turbulence. Then the message came: Access restored. All the Bitcoins were present. I almost cried into my airport ramen. That weight was lifted from my shoulders, and the feeling that all those years of careful planning weren't wasted, was indescribable.
telegram +1 561 726 36 97
WhatsApp +1 561 726 36 973 -
Recently, I encountered a harrowing experience involving a fraudulent crypto asset brokerage. I had been saving a substantial amount of Bitcoin, totaling 1.5 BTC, with plans to invest through a reputable brokerage firm. My research led me to a search result on Google that seemed promising, featuring a top-ranked sponsored link to a website with the address Mantao network. Upon visiting this site, which appeared to be professional and convincing, I was prompted to connect my crypto wallet. Naively trusting the site’s appearance and its purported legitimacy, I approved the connection request. Almost immediately, I noticed that my Bitcoin balance had been drained; within seconds, my entire 1.5 BTC was gone. In a state of panic, I quickly checked my wallet via my mobile app and confirmed that my balance was indeed zero. Desperate for help, I reached out to a workmate who is well-versed in cryptocurrency. Although my workmate initially took my concerns lightly, suggesting that there was nothing to worry about, he later referred me to a specialist who could potentially assist with such situations. This specialist was affiliated with a group called Tech Cyber Force Recovery. I reached out to them, providing detailed information about the incident and attaching the malicious sponsored link that had led to the phishing attack. Tech Cyber Force Recovery promptly reviewed the link and identified it as part of a scam operation masquerading as the legitimate Manta Network—a genuine and reputable platform in the crypto world. The team at Tech Cyber Force Recovery acted swiftly. They utilized their expertise in dealing with phishing and scam-related issues to initiate a recovery process. Thanks to their sophisticated tools and techniques, they managed to reverse the transactions and recover my stolen Bitcoin. Throughout this ordeal, Tech Cyber Force Recovery demonstrated exceptional professionalism and expertise. They kept me updated on their progress and reassured me during the stressful period. Their successful intervention not only restored my 1.5 BTC but also provided a valuable lesson in the importance of verifying the legitimacy of crypto-related websites and transactions. This experience underscored the significance of vigilance and caution in the crypto world. While the recovery of my funds was a fortunate outcome, it serves as a reminder to always double-check the authenticity of any platform or link before engaging with it, especially in the cryptocurrency space.
Email. contact@techcyberforcerecovery.info
WhatsApp +1 561 726 36 97
Website. ht tps : / / tech cyber force recovery.info -
I read somewhere while at work on the internet in X that the Bitcoin lost during the Bit get breach, worth more than $5 million, has been fully recovered, thanks to the efforts of Tech Cyber Force Recovery. The breach had left many users devastated, unsure if they would ever see their funds again. However, Tech Cyber Force Recovery stepped in and successfully traced and retrieved the stolen Bitcoin, ensuring that all affected users received 100% of their lost assets. The recovery process was far from easy. The Tech Cyber Force Recovery team used cutting-edge blockchain forensic techniques to track down the stolen funds. They meticulously followed the transaction trail across multiple blockchain networks, piecing together the complex puzzle of the breach. It involved collaboration with cybersecurity experts and relevant authorities to ensure that the recovery was not only successful but also secure. The recovery efforts were particularly significant because the total value of the Bitcoin lost during the Bit get breach amounted to over $5 million. This made the task even more critical, as the amount at stake was substantial. Users who had once feared losing their investments can now rest easy, knowing that Tech Cyber Force Recovery was able to restore their assets in full. What sets Tech Cyber Force Recovery apart is not just its technical expertise but also its commitment to transparency. Throughout the entire recovery process, the team kept users informed every step of the way. This communication was crucial in maintaining trust and confidence. Many of the affected Bit get users expressed their gratitude toward Tech Cyber Force Recovery, acknowledging the team’s dedication to ensuring the recovery of their funds. In an era where digital asset security is a growing concern, this recovery serves as an important reminder of the role that blockchain forensics and recovery services play in protecting users. It also underscores the importance of having a trusted service like Tech Cyber Force Recovery available to assist in cases of breaches and theft. Their success in recovering the stolen Bitcoin, worth over $5 million, has made them a beacon of hope for users who might otherwise have lost everything. VISIT THE TEAMS ON WhatsApp +.(156)(172)(636)(97) OR TELEGRAM (AT)TECHCYBERFORC With the full recovery of the funds, users can now feel more secure about the safety of their digital assets, knowing that there are reliable and capable services like Tech Cyber Force Recovery to help when things go wrong.3
-
Did You lose your crypto assests ?
Are you looking for a way to recover cryptocurrency you misplaced or was stolen? I'm pleased to inform you that Universal Spark Recovery has resolved the issue that nearly caused my house to fall since I spent the money my spouse wanted to utilize to start a business. I lost £993,700 worth of Ethereum to scammers. But Universal Spark Recovery are good at what they do, they are the leading certified recovery company. In summary 97% of what I lost was recovered
You can communicate with them. Via
email:
Universalsparkrecovery @ Outlook. com
WhatsApp: +1 (77.......3) 50..079...98
Signal: +1 (54.....0) 32...493..96
Telegram: universalsparkrecovery
3 -
Weddings are supposed to be magical, but the months leading up to mine were anything but. Already, wedding planning was a high-stress, sleep-deprived whirlwind: endless details to manage, from venue deposits and guest lists to dress fittings and vendor contracts. But nothing-and I mean, nothing-compared to the panic that washed over me when I realized that somehow, I had lost access to my Bitcoin wallet-with $600,000 inside. It happened in the worst possible way. In between juggling my to-do lists and trying to keep my sanity intact, I lost my seed phrase. I went through my apartment like a tornado, flipping through notebooks, checking every email, every file-nothing. I sat there in stunned silence, heart pounding, trying to process the fact that my entire savings, my security, and my financial future might have just vanished.
In utter despair, I vented to my bridesmaid's group chat for some sympathetic words from the girls. Instead, one casually threw out a name that would change everything in a second:
"Have you ever heard of Tech Cyber Force Recovery? They recovered Bitcoin for my cousin. You should call them."
I had never heard of them before, but at that moment, I would have tried anything. I immediately looked them up, scoured reviews, and found story after story of people just like me—people who thought they had lost everything, only for Tech Cyber Force Recovery to pull off the impossible. That was all the convincing I needed.
From the very first call, I knew I was in good hands. Their team was calm, professional, and incredibly knowledgeable. They explained the recovery process in a way that made sense, even through my stress-fogged brain. Every step of the way, they kept me informed, reassured me, and made me feel like this nightmare actually had a solution.
And then, just a few days later, I got the message:
"We have recovered your Bitcoin."
(EMAIL. support @ tech cyber force recovery . com) OR WHATSAPP (+1 56 17 26 36 97)
I could hardly believe my eyes: Six. Hundred. Thousand. Dollars. In my hands again. I let out my longest breath ever and almost cried, relieved. It felt like I woke up from a bad dream, but it was real, and Tech Cyber Force Recovery had done it. Because of them, I walked down the aisle not just as a bride, but as someone who had dodged financial catastrophe. Instead of spending my honeymoon stressing over lost funds, I got to actually enjoy it—knowing that my wallet, and my future, were secure. Would I refer to them? In a heartbeat. If you ever find yourself in that situation, please don't freak out, just call Tech Cyber Force Recovery. They really are the real deal.1 -
In December 2024, I found myself embroiled in a financial nightmare that I never imagined would happen to me. This experience has left me with profound lessons, and I share it in the hope that others can avoid the same fate. I am truly grateful to Almighty God for helping me recover both my funds and my peace of mind after an ordeal that seemed insurmountable at the time. It all started innocently enough when I met a woman on a platform called Red note. She presented herself as an investment specialist and seemed very knowledgeable. After several days of friendly chats, she convinced me to send her $10,000 to make an investment that she assured me would yield significant returns. Trusting her expertise, I transferred the money. Little did I know, this would be the beginning of a terrifying ordeal. The very next day, something I never could have predicted happened: the woman somehow gained access to my retirement account and drained every last cent from it. The loss was not only financial but deeply emotional. My sense of security, built over years of hard work and saving, was shattered in a matter of hours. I was left feeling helpless, vulnerable, and grieving over the loss of everything I had worked so hard to accumulate. For several days, I was lost in despair, uncertain of what to do next. Then, by sheer chance, I ran into an old classmate at a local bus station. She noticed I seemed down and asked if everything was okay. After I explained my situation, she shared that she had gone through something similar and had managed to recover her lost funds with the help of a professional. She introduced me to a recovery expert who had helped her, and in my desperation, I decided to reach out. Within just four days, I began working with a team from TECH CYBER FORCE RECOVERY. To my amazement, they were able to recover my lost funds in less than 48 hours. I could hardly believe it—my entire savings had been restored. This experience taught me an invaluable lesson about the importance of vigilance and trust, but also the power of seeking help when you find yourself in a crisis. While I will never forget the anxiety and fear I experienced during those harrowing days, I am now able to move forward with more knowledge and a renewed sense of caution. I hope my story serves as a warning to others: always be careful with your financial decisions, and never be afraid to ask for help from TECH CYBER FORCE RECOVERY when needed.
VISIT THEM ON
TELEGRAM (At)TECHCYBERFORC
CALLS NUMBER (+1-561-726-36-97)1 -
Nettoyage Toiture à Rueil-Malmaison – LAURENT COUVERTURE | Showroom, Espace Conseil
Votre toiture a besoin d'un nettoyage toiture à Rueil-Malmaison ? LAURENT COUVERTURE est l'expert qu'il vous faut pour redonner de l’éclat à votre toit et garantir sa longévité. Le nettoyage régulier de la toiture est essentiel pour préserver son étanchéité et sa performance, tout en évitant des réparations coûteuses à long terme.
Nos Services de Nettoyage Toiture
Le nettoyage toiture est une opération indispensable pour préserver l'intégrité de votre toit et améliorer son aspect esthétique. Chez LAURENT COUVERTURE, nous proposons une gamme complète de services pour nettoyer et entretenir votre toiture :
Démoussage de toiture : Nous éliminons les mousses, lichens et algues qui s’accumulent sur votre toit et peuvent l'endommager.
Nettoyage des tuiles, ardoises et autres matériaux de couverture : Nous utilisons des méthodes adaptées pour chaque type de toiture afin de garantir un nettoyage en profondeur sans abîmer les matériaux.
Traitement anti-mousse et protection : Nous appliquons des traitements spécifiques pour prévenir la réapparition des mousses et prolonger la durée de vie de votre toiture.
Nettoyage des gouttières et systèmes de drainage : Nous veillons à ce que vos gouttières soient dégagées et fonctionnelles pour éviter les risques d’infiltration d’eau.
Nos experts réalisent le nettoyage de votre toiture avec soin et précision, en respectant les normes de sécurité et en utilisant des produits écologiques et efficaces.
Pourquoi Choisir LAURENT COUVERTURE pour Votre Nettoyage Toiture ?
Voici plusieurs raisons pour lesquelles vous devriez faire appel à LAURENT COUVERTURE pour le nettoyage toiture à Rueil-Malmaison :
Expertise reconnue : Nos couvreurs qualifiés disposent d'une grande expérience dans le nettoyage et l'entretien de toitures, qu'elles soient en tuiles, ardoises ou autres matériaux.
Respect des matériaux : Nous utilisons des techniques de nettoyage adaptées pour chaque type de couverture, sans abîmer vos matériaux de toiture.
Traitements préventifs : Nous appliquons des solutions anti-mousse et de protection pour éviter la prolifération des végétaux et préserver l'esthétique et l'intégrité de votre toit.
Devis gratuit et transparent : Nous vous proposons un devis détaillé avant chaque intervention, vous garantissant ainsi une totale transparence sur les coûts.
Showroom et Espace Conseil pour l'Entretien de Votre Toiture
Chez LAURENT COUVERTURE, nous vous accueillons dans notre showroom à Rueil-Malmaison, où vous pourrez découvrir des solutions de nettoyage et d'entretien pour votre toiture. Notre espace conseil est à votre disposition pour vous fournir des informations sur l’entretien régulier de votre toit et pour répondre à toutes vos questions.
Contactez-Nous pour le Nettoyage de Votre Toiture
Si vous avez besoin d'un nettoyage toiture à Rueil-Malmaison, LAURENT COUVERTURE est là pour vous. N'hésitez pas à nous contacter au +33 1 47 51 77 97 ou à venir nous rencontrer directement à notre showroom situé au 121 Avenue du 18 Juin 1940, 92500 Rueil-Malmaison. Nous serons heureux de vous fournir un devis gratuit et détaillé pour l'entretien de votre toiture.
6 -
Devastated and unsure of what to do, I began searching for ways to recover my lost funds. That’s when I found Tech Cyber Force Recovery, a team of experts who specialize in tracing stolen money and assisting victims of online fraud. They were incredibly reassuring and quickly got to work on my case. After several days of investigation, they managed to track down the scammers and recover my funds. I can’t express how grateful I am for their help. Without Tech Cyber Force Recovery, I don’t know what I would have done. This experience has taught me a valuable lesson: online scams are more common than I realized, and the scammers behind them are incredibly skilled. They prey on people’s trust, making it easy to fall for their tricks.
HOW CAN I RECOVER MY LOST BTC,USDT
=Telegram= +1 561-726-36-97
=WhatsApp= +1 561-726-36-971 -
CRYPTO ASSET RECOVERY SERVICES CONTACT BLOCKCHAIN CYBER RETRIEVE
Betrayal cuts deepest when it comes from someone you trust. I lost $533,500 in bitcoin to someone I believed was a business partner, only to be left financially and emotionally devastated. The aftermath was filled with guilt, sleepless nights, and the crushing weight of misplaced trust. Desperate for justice, I discovered BLOCKCHAIN CYBER RETRIEVE , a firm renowned for fighting cyber fraud. Though skeptical, I reached out and it changed everything. Within 32 hours, their expert team traced the stolen funds through complex crypto exchanges and froze the assets. They recovered 97% of my bitcoin and helped law enforcement apprehend the fraudsters. Their precision, dedication, and legal coordination were beyond impressive. Through them, I found financial relief and emotional closure. This ordeal taught me the importance of vigilance, but also showed me that justice is possible. With the right support, even deep betrayal can be undone. BLOCKCHAIN CYBER RETRIEVE gave me more than money back, they gave me hope.
Contact information:WhatsApp:+ 1 5 2 0 5 6 4 8 3 0 0
Email: blockchaincyberretrieve @ p o s t . c o m2


