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 - "right tools for the job"
		- 
				    					
					
					!rant
This was over a year ago now, but my first PR at my current job was +6,249/-1,545,334 loc. Here is how that happened... When I joined the company and saw the code I was supposed to work on I kind of freaked out. The project was set up in the most ass-backward way with some sort of bootstrap boilerplate sample app thing with its own build process inside a subfolder of the main angular project. The angular app used all the CSS, fonts, icons, etc. from the boilerplate app and referenced the assets directly. If you needed to make changes to the CSS, fonts, icons, etc you would need to cd into the boilerplate app directory, make the changes, run a Gulp build that compiled things there, then cd back to the main directory and run Grunt build (thats right, both grunt and gulp) that then built the angular app and referenced the compiled assets inside the boilerplate directory. One simple CSS change would take 2 minutes to test at minimum.
I told them I needed at least a week to overhaul the app before I felt like I could do any real work. Here were the horrors I found along the way.
- All compiled (unminified) assets (both CSS and JS) were committed to git, including vendor code such as jQuery and Bootstrap.
- All bower components were committed to git (ALL their source code, documentation, etc, not just the one dist/minified JS file we referenced).
- The Grunt build was set up by someone who had no idea what they were doing. Every SINGLE file or dependency that needed to be copied to the build folder was listed one by one in a HUGE config.json file instead of using pattern matching like `assets/images/*`.
- All the example code from the boilerplate and multiple jQuery spaghetti sample apps from the boilerplate were committed to git, as well as ALL the documentation too. There was literally a `git clone` of the boilerplate repo inside a folder in the app.
- There were two separate copies of Bootstrap 3 being compiled from source. One inside the boilerplate folder and one at the angular app level. They were both included on the page, so literally every single CSS rule was overridden by the second copy of bootstrap. Oh, and because bootstrap source was included and commited and built from source, the actual bootstrap source files had been edited by developers to change styles (instead of overriding them) so there was no replacing it with an OOTB minified version.
- It is an angular app but there were multiple jQuery libraries included and relied upon and used for actual in-app functionality behavior. And, beyond that, even though angular includes many native ways to do XHR requests (using $resource or $http), there were numerous places in the app where there were `XMLHttpRequest`s intermixed with angular code.
- There was no live reloading for local development, meaning if I wanted to make one CSS change I had to stop my server, run a build, start again (about 2 minutes total). They seemed to think this was fine.
- All this monstrosity was handled by a single massive Gruntfile that was over 2000loc. When all my hacking and slashing was done, I reduced this to ~140loc.
- There were developer's (I use that term loosely) *PERSONAL AWS ACCESS KEYS* hardcoded into the source code (remember, this is a web end app, so this was in every user's browser) in order to do file uploads. Of course when I checked in AWS, those keys had full admin access to absolutely everything in AWS.
- The entire unminified AWS Javascript SDK was included on the page and not used or referenced (~1.5mb)
- There was no error handling or reporting. An API error would just result in nothing happening on the front end, so the user would usually just click and click again, re-triggering the same error. There was also no error reporting software installed (NewRelic, Rollbar, etc) so we had no idea when our users encountered errors on the front end. The previous developers would literally guide users who were experiencing issues through opening their console in dev tools and have them screenshot the error and send it to them.
- I could go on and on...
This is why you hire a real front-end engineer to build your web app instead of the cheapest contractors you can find from Ukraine.
				        
				        
				        
				        
				        19 - 
				    					
					
					I’ve been told my rants are being missed, since I left my hellhole of a job. So here’s a filler until something major goes wrong.
Right so here’s what my life is like at the minute. I’m working remotely from home. So this morning, instead of spending 2 hours in traffic, I got up at a reasonable hour and brought the dog for a walk. I don’t know who these people think they are, fucking up my routine like this. The audacity of them thinking it’s no big deal really pisses me off.
I’m the only iOS developer in the company. Normally I get bombarded with “why not use react-native” or “RxSwift is the future” and other shitty tools. Last week I said “i’d like to do X this way”. Do you know what those absolute bastards said to me? You ready? Hope you are sitting down ... they said ... “ok, sounds good” .... the fucking c***s.
Oh oh and the big one, wait for this now. Fridays are demo days, last Friday I showed what I was working on. Afterwards the CEO comes along, stares me in the eyes and without a care in the world what his comments might do to my self-esteem the fucker says “wow great job”. He fucking makes me SICK!!!
Feels good to get all that off my chest. I’ve missed venting. At this rate, I’ll be back very soon!8 - 
				    					
					
					I'm drunk and I'll probably regret this, but here's a drunken rank of things I've learned as an engineer for the past 10 years.
The best way I've advanced my career is by changing companies.
Technology stacks don't really matter because there are like 15 basic patterns of software engineering in my field that apply. I work in data so it's not going to be the same as webdev or embedded. But all fields have about 10-20 core principles and the tech stack is just trying to make those things easier, so don't fret overit.
There's a reason why people recommend job hunting. If I'm unsatisfied at a job, it's probably time to move on.
I've made some good, lifelong friends at companies I've worked with. I don't need to make that a requirement of every place I work. I've been perfectly happy working at places where I didn't form friendships with my coworkers and I've been unhappy at places where I made some great friends.
I've learned to be honest with my manager. Not too honest, but honest enough where I can be authentic at work. What's the worse that can happen? He fire me? I'll just pick up a new job in 2 weeks.
If I'm awaken at 2am from being on-call for more than once per quarter, then something is seriously wrong and I will either fix it or quit.
pour another glass
Qualities of a good manager share a lot of qualities of a good engineer.
When I first started, I was enamored with technology and programming and computer science. I'm over it.
Good code is code that can be understood by a junior engineer. Great code can be understood by a first year CS freshman. The best code is no code at all.
The most underrated skill to learn as an engineer is how to document. Fuck, someone please teach me how to write good documentation. Seriously, if there's any recommendations, I'd seriously pay for a course (like probably a lot of money, maybe 1k for a course if it guaranteed that I could write good docs.)
Related to above, writing good proposals for changes is a great skill.
Almost every holy war out there (vim vs emacs, mac vs linux, whatever) doesn't matter... except one. See below.
The older I get, the more I appreciate dynamic languages. Fuck, I said it. Fight me.
If I ever find myself thinking I'm the smartest person in the room, it's time to leave.
I don't know why full stack webdevs are paid so poorly. No really, they should be paid like half a mil a year just base salary. Fuck they have to understand both front end AND back end AND how different browsers work AND networking AND databases AND caching AND differences between web and mobile AND omg what the fuck there's another framework out there that companies want to use? Seriously, why are webdevs paid so little.
We should hire more interns, they're awesome. Those energetic little fucks with their ideas. Even better when they can question or criticize something. I love interns.
sip
Don't meet your heroes. I paid 5k to take a course by one of my heroes. He's a brilliant man, but at the end of it I realized that he's making it up as he goes along like the rest of us.
Tech stack matters. OK I just said tech stack doesn't matter, but hear me out. If you hear Python dev vs C++ dev, you think very different things, right? That's because certain tools are really good at certain jobs. If you're not sure what you want to do, just do Java. It's a shitty programming language that's good at almost everything.
The greatest programming language ever is lisp. I should learn lisp.
For beginners, the most lucrative programming language to learn is SQL. Fuck all other languages. If you know SQL and nothing else, you can make bank. Payroll specialtist? Maybe 50k. Payroll specialist who knows SQL? 90k. Average joe with organizational skills at big corp? $40k. Average joe with organization skills AND sql? Call yourself a PM and earn $150k.
Tests are important but TDD is a damn cult.
Cushy government jobs are not what they are cracked up to be, at least for early to mid-career engineers. Sure, $120k + bennies + pension sound great, but you'll be selling your soul to work on esoteric proprietary technology. Much respect to government workers but seriously there's a reason why the median age for engineers at those places is 50+. Advice does not apply to government contractors.
Third party recruiters are leeches. However, if you find a good one, seriously develop a good relationship with them. They can help bootstrap your career. How do you know if you have a good one? If they've been a third party recruiter for more than 3 years, they're probably bad. The good ones typically become recruiters are large companies.
Options are worthless or can make you a millionaire. They're probably worthless unless the headcount of engineering is more than 100. Then maybe they are worth something within this decade.
Work from home is the tits. But lack of whiteboarding sucks.37 - 
				    					
					
					A couple of months back I got an interview for a junior android devel position. I do not consider myself a junior devel, bt fuck it they paid 78k a year plus benefits and this is for south texas where it ain't thaaat expensive. So i kept my mouth shut and went with it.
The company was glorious, one of those hipsert marketing companies with cool couches and shit and people doing fuckign whatever all over the place and cool tools and desks.
So the initial interview with the hr dept went amazing, real cool guys and very down to earth. Next was the senior android dev.
This dude.
It was to be a phone interview, with a lil coding test. Fine whatevs. But the moment he called i knew shit was going down hill. Dude sounded dead af. Like he could not stand being himself that day. Asked asshole questions that every developer in Android should know that were frankly quite insulting ("what company develops the Android os" kind of deal) but kept my mouth shut and answered as needed.
Then the coding portion. Given a string, find the first position of the first repeated char, so if I had , fuck i dunno "tetas" then t was the first (and only) char repeated and it should have given out 2.
Legit finished it up in less than 6 mins and only because he was making me explain my entire thought process.
He got angry for some reason. Mind you I speak like a hippie, with a melow town and calm voice all the damned time, got that Texas swag going on as well as any good ol' boy from Texas should right?
Well this dude was not having none of that shit that day.
Dude was all like "ok now....why exactly did you do it this way?"
With a VERY condescending tone. And i explained that at first I normally think about solutions in pseudocode, so I wrote that as well...1 min or less. In python. This is after I still had the Java solution on screen with perfectly clean and working Java. I saif that since Python was as close to pseudocode as it gets that I figured i would just write the "pseudocode" in python and then map it to Java with all the required modifications.
"Welk i did not ask you to write it in java, so i dunno why you would even do that to begin with"
That is one of many asshole remarks. The first when I mentioned that I found React Native good for prototyping complex ideas for FUCKING FUN. Passion motherfucker. Shit so fly I do it for fun. "We don't deal with that here so I am not interested in what you can do with that or how would it help me"
Mofocka plz.
Well going back to the python shit. I explain (calmly) that it was just a way that I had to figure details, to think of different implementations. He continues by saying that it takes valuable company time.
Then he proceeds to tell me that he believes that i cheated since i fi ished the java "problem" too fast.
I told him that simple stuff like that should take even less for any senior java dev and that we could run another example if he wanted.
Bring it puto.
But no.
He then said that he still did not understand the need for Python in my solution. I lost it.
"Look man, getting real tired of your tone, i explained already, it is just a mental process, i do this when comming up with solutions, thinking in theory, not languages, helps me bridge the gap between problem and implementation, the solution works, it is efficient and fast and i can do it in 5 diff ways if you wanted, i offered and you said no. Don't really know what else you want"
"All i am saying, i am not going to hire you if you are going to be writing Python for Android, that is useless to me"
Lost it more.
I do sound different when pissed. So I basically told him that he asked for my reasoning behind and it was given, that not getting it was a you problem.
Sooooo did not get the job. Was relieved really. Can't imagine having a twat like that as a lead devel.19 - 
				    					
					
					So I've been looking for a Linux sysadmin job for a while now. I get a lot of rejections daily and I don't mind that because they can give me feedback as for what I am doing wrong. But do you know what really FUCKING grinds my FUCKING gears?
BEING REJECTED BASED ON LEVEL OF EDUCATION/NOT HAVING CERTIFICATIONS FOR CERTAIN STUFF. Yes, I get that you can't blindly hire anyone and that you have to filter people out but at least LOOK AT THEIR FUCKING SKILLSET.
I did MBO level (the highest sub level though) as study which is considered to be the lowest education level in my country. lowest education level meaning that it's mostly focused on learning through doing things rather than just learning theory.
Why the actual FUCK is that, for some fucking reason, supposed to be a 'lower level' than HBO or Uni? (low to high in my country: MBO, HBO, Uni). Just because I learn better by doing shit instead of solely focusing on the theory and not doing much else does NOT FUCKING MEAN THAT I AM DUMBER OR LESS EDUCATED ON A SUBJECT.
So in the last couple of months, I've literally had rejections with reasons like
- 'Sorry but we require HBO level as people with this level can analyze stuff better in general which is required for this job.'. - Well then go fuck yourself. Just because I have a lower level of education doesn't FUCKING mean that I can't analyze shit at a 'lower level' than people who've done HBO.
- 'You don't seem to have a certificate for linux server management so it's a no go, sorry!' - Kindly go FUCK yourself. Give me a couple of barebones Debian servers and let me install a whole setup including load balancers, proxies if fucking neccesary, firewalls, web servers, FUCKING Samba servers, YOU FUCKING NAME IT. YES, I CAN DO THAT BUT SOLELY BECAUSE I DON'T HAVE THAT FUCKING CERTIFICATE APPEARANTLY MEANS THAT I AM TOO INCOMPETENT TO DO THAT?! Yes. I get that you have to filter shit but GUESS WHAT. IT'S RIGHT THERE IN MY FUCKING RESUME.
- 'Sorry but due to this role being related to cyber security, we can't hire anyone lower than HBO.' - OH SO YOUR LEVEL OF EDUCATION DEFINES HOW GOOD YOU ARE/CAN BE AT CYBER SECURITY RELATED STUFF? ARE YOU MOTHERFUCKING RETARDED? I HAVE BEEN DOING SHIT RELATED TO CYBER SECURITY SINCE I WAS 14-15 FUCKiNG YEARS OLD. I AM FAMILIAR WITH LOADS OF TOOLS/HACKING TECHNIQUES/PENTESTING/DEFENSIVE/OFFENSIVE SECURITY AND SO ON AND YOU ARE TELLING ME THAT I NEED A HIGHER LEVEL OF FUCKING EDUCATION?!?!? GO FUCKING FUCK YOURSELF.
And I can go on like this for a while. I wish some companies I come across would actually look at skills instead of (only) study levels and certifications. Those other companies can go FUCK THEMSELVES.39 - 
				    					
					
					I'm 20, and I consider myself to be as junior as they come. I only started programming seriously in June 2016,and since then, I've been doing mainly Android Work, and making my own servers and backends(using AWS/Firebase nd stuff).
For the first time in life, I was approached by a recruiter for a company on linkedIn. They "stumbled upon" my Github profile and wanted to see if I was interested in an internship opportunity. This company is an early stage start up, by that I mean a dude with an idea calling himself the CEO and a guy who "runs a tech blog" and only knows college level C programming (explaination follows).
So they want me to make the app for their startup. and for that, I ws first asked to solve a couple problems to prove my competence and a "technical interview" followed.
They gave me 3 questions, all textbook, GCD of 2 numbers, binary search and Adding an element to the linked List, code to be written on a piece of paper. As the position was that of an Android Developer, I assumed that Java should be the language of choice. Assumed because when I asked, the 'tech blogger' said, yeah whatever.
But wait, that ain't all, as soon as I was done, Mr. Blogger threw a fit, saying I shouldn't assume and that I must write it in C. I kept my cool (I'm not the most patient person), and wrote the whole thing in C.
He read it, and asked me what I've written and then told me how wrong I was to write 2 extra lines instead of recursion for GCD. I explained that with numbers large enough, we run the risk of getting a stackoverflow and it's best to apply non recursive solution if possible. He just heard stackoverflow and accused me of cheating. I should have left right then, but I don't know why, I apologized and again, in detail explained what was happening to this fucktard. Once this was done, He asked me how, if I had to, I'd use this exact code in my Android App. I told him that Id rather write this in Java/Kotlin since those are the languages native to Android apps. I also said that I'd export these as a Library and use JNI for the task. (I don't actually know how, I figured I can study if I have to).
Here's his reply, "WTF! We don't want to make the app in Java, we will use C (Yeh, not C++, C). and Don't use these fancy TOOLS like JNI or Kotlin in front of me, make a proper application."
By this I was clear that this guy is not fit to be technical lead and that I should leave. I said, "Sir, I don't know how, if even possible, can we make an Android App purely in C. I am sorry, but this job is not for me".
I got up and was about to leave the room, when we said, "Yeah okay, I was just testing you".
Yeah right, the guy's face looked like a howling monkey when I said Library for C, and It has been easier for me to explain code to my 10 year old cousin that this dumbfuck.
He then proceeded to ask me about my availability, and I said that I can at max to 15-20 hours a week since my college schedule is pretty tight. I asked me to get him a prototype in 2 months and also offered me a full time job after I graduate. (That'd be 2 years from now). I said thank you for the offer, but I am still not sure of I am the right person for this job.
He then said, "Oh you will be when I tell you your monthly stipend."
I stopped for a second, because, money.
And then he proceeded to say 2 words which made me walk out without saying a single word.
"One Thousand".
I live in India, 1000 INR translates to roughly $15. I made 25 times that by doing nothing more than add a web view to an activity and render a company's responsive website in it so it looks like an app.
If this wasn't enough, the recruiter later had the audacity to blame me for it and tell me how lucky I am to even get an offer "so good".
Fuck inexperienced assholes trying shit they don't understand and thinking that the other guy is shitsworth.10 - 
				    					
					
					Ok story of my most most recent job search (not sure devRant could handle the load if I was to go through them all)
First a little backstory on why I needed to search for a new job:
Joined a small startup in the blockchain space. They were funded through grants from a non-profit setup by the folks who invented the blockchain and raised funds (they gave those funds out to companies willing to build the various pieces of the network and tools).
We were one of a handful of companies working on the early stages of the network. We built numerous "first"s on the network and spent the majority of our time finding bugs and issues and asking others to fix them so it would become possible, for us to do what we signed up for. We ended up having to build multiple server side applications as middleware to plug massive gaps. All going great, had a lot of success, were told face to face by the foundation not to worry about securing more funds at least for the near term as we were "critical to the success of the network".
1 month later a bug was discovered in our major product, was nasty and we had to take it offline. Nobody lost any funds.
1-2 months later again, the inventor of the blockchain (His majesty, Lord dickhead of cuntinstein) decided to join the foundation as he wasn't happy with the orgs progress and where the network now stood. Immediately says "see that small startup over there ... yeah I hate them. Blackball them from getting anymore money. Use them as an example to others that we are not afraid to cut funds if you fuck up"
Our CEO was informed. He asked for meetings with numerous people, including His royal highness, lord cockbag of never-wrong. The others told our CEO that they didn't agree with the decision, but their hands were tied and they were deeply sorry. Our CEO's pleas with The ghost of Christmas cuntyness, just fell on deaf ears.
CEO broke the news to us, he had 3 weeks of funds left to pay salaries. He'd pay us to keep things going and do whatever we could to reduce server costs, so we could leave everything up long enough for our users to migrate elsewhere. We reduced costs a lot by turning off non essential features, he gave us our last pay check and some great referrals. That was that and we very emotionally closed up shop.
When news got out, we then had to defend ourselves publicly, because the loch ness moron, decided to twist things in his favour. So yeah, AMAZING experience!
So an unemployed and broken man, I did the unthinkable ... I set my linkedin to "open to work". Fuck me every moronic recruiter in a 10,000 mile radius came after me. Didn't matter if I was qualified, didn't matter if I had no experience in that language or type of system, didn't matter if my bio explicitly said "I don't work with X, Y or Z" ... that only made them want me more.
I think I got somewhere around 20 - 30 messages per week, 1 - 2 being actually relevant to what I do. Applied to dozens of jobs myself, only contacted back by 1, who badly fucked up the job description and I wasn't a fit at all.
Got an email from company ABC, who worked on the same blockchain we got kicked off of. They were looking for people with my skills and the skills of one other dev in the preious company. They heard what happened and our CEO gave us a glowing recommendation. They largely offered us the job, but both of us said that we weren't interested in working anywhere near, that kick needing prick, again. We wanted to go elsewhere.
Went back to searching, finding nothing. The other dev got a contract job elsewhere. The guy from ABC message me again to say look, we understand your issues, you got fucked around. We can do out best to promise you'll never have to speak to, the abominable jizz stain, again. We'll also offer you a much bigger role, and a decent salary bump on top of that.
Told them i'd think about it. We ended up having a few more calls where they showed me designs of all the things they wanted to do, and plans on how they would raise money if the same thing was to ever happen to them. Eventually I gave in and signed up.
So far it was absolutely the right call. Haven't had to speak to the scrotum at all. The company is run entirely by engineers. Theres no 14 meetings per week to discuss "where we are" which just involves reading our planning tool tickets, out loud. I'm currently being left alone 99% of the week to get work done. and i'm largely in-charge of everything mobile. It was a fucking hellhole of a trip, but I came out the other side better off
I'm sure there is a thought provoking, meaningful quote I could be writing now about how "things always work out" or that crap. But remembering it all just leaves me with the desire to find him and shove a cactus where the sun don't shine
.... happy job hunting everyone!10 - 
				    					
					
					Programming is not knowing some language very well. It's about how you solve complex problems with the right tools for the job.5
 - 
				    					
					
					Public service announcement: Do not get married to your language, tools, or way of doing things. If there's an easier solution to something, try it before dismissing it. No language is perfect, and dumping everything on the responsibility of an API or framework can cause more headache then solve it.
Case in point: I love Java for backend programming, but node.js is a better solution to frontend programming then depending on JSP's and HTML within the same Java project. Less things go wrong and it's easier to debug issues.
There is no best programming language. Only best practices and using the right tool for the right job.
#exceptC++fuckthatlanguage
:^)
				        
				        
				        
				        
				        15 - 
				    					
					
					I've been fairly lucky with my bosses of late since I've progressed in my programming career. But my absolute worst boss was when I first started working in an office environment doing data entry. My boss at the time was terrible, and she was always against innovation or process improvement. She also always tried to make herself look good and taking credit for the accomplishments of others. If she screwed up it was your fault, and she was "always buried in email" so she could never respond to you for pto requests, or escalation of issues between departments. My whole family pretty much worked in various roles in the department and she fired my brother after my mother left the company for no reason, saying he was "sleeping", but I worked right next to him and he's tall and had to slouch just to comfortable see his computer screen since the same manager refused to approve work station improvements for him.
Our workflow was to receive daily spreadsheets of health care claims that we had to manually process and enter into the system. So being the lazy innovator that I am, and trying to find ways I can efficiently work, I delved into studying visual basic and programmed a few functions and tools in excel to analyze, highlight, and process some of the data since the claims on the spreadsheets always had a specific pattern. This was all before I had any formal education in computer science so the program was very basic and clunky but it tripled my efficiency. When I brought it up to my boss to spread it among the rest of our team so they could use it after a short 20 minute training, she struck it down saying any training or use of it would be a waste of resources since it was too technical and complex to be used and if I were to keep improving it or use it I would be fired. It was literally copy and paste from one spreadsheet to the other en masse and clicking a button to sort and fill in the blanks. Eventually I showed it to the director of the department when working on a large data entry project with her, and I was later offered a job as a technical analyst where I was responsible for the codebase that generated the reports for the department and specifically all the reports my old boss used where I would occasionally mess with her to get back at all the crap she gave me and my brother. Since all the reports were blind carbon copied to everyone, I would send out her reports on a delay while everyone else got them on time. It eventually got her in so much crap she had to step down as a manager. She still works in the same company that I started working at again earlier this year, and like the many careers she's ruined she eventually ruined her own within the company 😂4 - 
				    					
					
					The tech stack at my current gig is the worst shit I’ve ever dealt with...
I can’t fucking stand programs, especially browser based programs, to open new windows. New tab, okay sure, ideally I just want the current tab I’m on to update when I click on a link.
Ticketing system: Autotask
Fucking opens up with a crappy piss poor sorting method and no proper filtering for ticket views. Nope you have to go create a fucking dashboard to parse/filter the shit you want to see. So I either have to go create a metric-arse tonne of custom ticket views and switch between them or just use the default turdburger view. Add to that that when I click on a ticket, it opens another fucking window with the ticket information. If I want to do time entry, it just feels some primal need to open another fucking window!!! Then even if I mark the ticket complete it just minimizes the goddamn second ticket window. So my jankbox-supreme PC that my company provided gets to strugglepuff along trying to keep 10 million chrome windows open. Yeah, sure 6GB of ram is great for IT work, especially when using hot steaming piles of trashjuice software!
I have to manually close these windows regularly throughout the day or the system just shits the bed and halts.
RMM tool: Continuum
This fucker takes the goddamn soggy waffle award for being utterly fucking useless. Same problem with the windows as autotask except this special snowflake likes to open a login prompt as a full-fuck-mothering-new window when we need to open a LMI rescue session!!! I need to enter a username and a password. That’s it! I don’t need a full screen window to enter credentials! FUCK!!! Btw the LMI tools only work like 70% of the time and drag ass compared to literally every other remote support tool I’ve ever used. I’ve found that it’s sometimes just faster to walk someone through enabling RDP on their system then remoting in from another system where LMI didn’t decide to be fully suicidal and just kill itself.
Our fucking chief asshat and sergeant fucknuts mcdoogal can’t fucking setup anything so the antivirus software is pushed to all client systems but everything is just set to the default site settings. Absolutely zero care or thought or effort was put forth and these gorilla spunk drinking, rimjob jockey motherfuckers sell this as a managed AntiVirus.
We use a shitty password manager than no one besides I use because there is a fully unencrypted oneNote notebook that everyone uses because fuck security right? “Sometimes it’s just faster to have the passwords at the ready without having to log into the password manager.” Chief Asshat in my first week on the job.
Not to mention that windows server is unlicensed in almost every client environment, the domain admin password is same across multiple client sites, is the same password to log into firewalls, and office 365 environments!!!
I’ve brought up tons of ways to fix these problems, but they have their heads so far up their own asses getting high on undeserved smugness since “they have been in business for almost ten years”. Like, Whoop Dee MotherFucking Doo! You have only been lucky to skate by with this dumpster fire you call a software stack, you could probably fill 10 olympic sized swimming pools to the brim with the logarrhea that flows from your gullets not only to us but also to your customers, and you won’t implement anything that is good for you, your company, or your poor clients because you take ten minutes to try and understand something new.
I’m fucking livid because I’m stuck in a position where I can’t just quit and work on my business full time. I’m married and have a 6m old baby. Between both my wife and I working we barely make ends meet and there’s absolutely zero reason that I couldn’t be providing better service to customers without having to lie through my teeth to them and I could easily support my family and be about 264826290461% happier!
But because we make so little, I can’t scrap together enough money to get Terranimbus (my startup) bootstrapped. We have zero expendable/savable income each month and it’s killing my soul. It’s so fucking frustrating knowing that a little time and some capital is all that stands between a better life for my family and I and being able to provide a better overall service out there over these kinds of shady as fuck knob gobblers.5 - 
				    					
					
					Like most people I needed some extra cash during uni, so I proceeded to learn CSS + Photoshop (yeah, I know). Followed by PHP and WordPress.
It can be a very shitty platform until you realize that you can stop combining plug-ins from all over the place with dubious code quality and roll your own.
Anyhow I kept at it until I was able to join a niche company doing a quite popular caching plug-in for WP (yeah, W3 Total) when I suddenly became *very* interested in anything and everything performance.
This landed me a very cozy consulting gig in the Nordics - they were using WP for an elephant-traffic website and had run into a myriad of perf issues.
Fixing them and breaking the monolith awarded me with skills in nodejs, linux, asynchronous caching among others.
I was soon in charge with managing the dev boxes for the entire team, and when the main operations dude left, I was promoted to owning the entire platform. (!) Tinkering with Linux for most of my life really came in handy here. (remember Debian potato?)
Used saltstack + aws cloudformation to achieve full parity between all environments. Learned myself some python and all various tips and tricks which in the end amounted to 90% reduction in time-to-first-byte and considerable cost savings.
By the end of the 2yr contract I had turned myself into a fullstack systems engineer and never looked back.
Lawyers not getting along resulted in us having to abandon NewRelic, so I got to learn and deploy the ELK stack as a homegrown replacement, which was super-fun.
Now I work in the engineering effectiveness department of a Swedish fintech unicorn where all languages under the Sun are an option (tho we prefer Python), so the tech stack is unlimited. Infinite tools and technologies, but with strong governing principles and with performance always in mind so as to pick the right tool for the job.
It's like that childhood feeling when you've just dumped a ton of Lego on the floor and are about to build something massive.
I guess the morale here is however disappointed you feel by your current stack - don't. Always strive to make things better, faster, more decoupled, easier to test, etc. and always challenge yourself to go outside the comfort zone.5 - 
				    					
					
					The amount of much political correctness in the dev community just pisses me off sometimes.
I've watched "Use the right tool / language for the job" has become *THE* excuse for shitty tools and languages.
Case in point -- JavaScript. If you want to make a website that interacts with the end user, the right tool is JavaScript. But that's because IT'S THE ONLY TOOL. Does that make it a *good* tool?
HELL NO.
/midranttimeout
Brendan Eich, I forgive you. You had 10 days and a corporation on your case.
That's not saying JavaScript doesn't have some good things in it. It does. But "Javascript the good parts" is a fucking thin book.
Sure, some amazing things have been written in JavaScript. Great communities have coalesced around this cancer.
BUT THATS IN SPITE OF JAVASCRIPT, NOT BECAUSE OF IT. AS A LANGAUGE IT'S STILL A STEAMING PILE OF DOGSHIT.
A master can draw great art with a shitty piece of charcoal. That doesn't make charcoal THE BEST DRAWING TOOL EVARRR. It's just a testament to the master's craft.
If you started your programming journey with JavaScript, do expand your horizons.
Break free from Stockholm's syndrome.
Discard your cognitive dissonance.
See JavaScript for what it is -- a shitty language everyone was forced to use.
PS: Don't even get me started on Java ...24 - 
				    					
					
					Before starting a job at company CUNT, we had an interview at which I told them I do not want to work on legacy monolithic codebases. We had a nice agreement and they offered me to work as a back-end with one of their projects. I was super excited to start. CUNT was very culty, always talks about how carrying for employees they are and always keep promises on their end of the table.
A week has passed, the codebase is superb legacy shit hole, no fucking standards, monolithic as fuck (BE and FE projects live in one project folder with tons of depreciated tools - there are no docs for them. That’s how old they are). They even have secret folder in their project with YOU GUESSED IT - secret keys.
Told CTO today, that I want to switch projects, because this was not the thing I signed up for and remember THEY ALWAYS CARE ABOUT THEIR EMPLOYEES AND PROMISES MADE. He basically told me, that project owners (other company) will not understand this culturally and I can either wait it out and possibly get my hands on a better project or fuck off right now.
Also, I was told, that my judgment was garbage worth and I should work longer with project “shit hole” to fully understand it.
Such a fucking salesman.
Anyways, I told that this situation is not culturally appropriate for me either as they gave me a sort of promise and I wont leave the company as I just switched jobs and cannot afford to do that again. I’ll hopefully get another position in another project soon.
WTF IS WORNG WITH PEOPLE8 - 
				    					
					
					!dev
TLDR; younger brother is an unreliable fuck. Learning to be a pathetic trickster. Penny teller cheap ass jester.
Hello folks. Time for a little family story.
This started around mid June.
I was a little tight on money the past few months. I had a broken laptop, that my brother wanted to buy. So I told him that he can have it for 100 bucks. It was a 1k gaming laptop 2 years ago, (i7, gtx 960m, 16gb ddr4). But I didn't know how much it would cost to repair. So I was happy with the price and so was him.
He told me he would pay by the end of June.
Hi didn't pay. He repaired the laptop for free by asking his boss, that used to be my friend (I'll probably tell you guys about that in another rant, best friend, got in a fight, stopped talking, next day my brother asked him for a job).
A month later, mid July, I told him I needed the money.
He literally said:
"I don't care for what you need. I'll pay you when I think it is a relevant expense, now I have money only for buying tools and investing in my career".
He was buying 15 usd pens (not only 1), because he wants to have expensive crap.
That was a bit disgusting, but not shocking. (I'm used to his little brat attitude, he's 26 btw).
I thought to myself. Ok, you want to be a bitch?. Then pay more.
I told him that he appreciated a good that wasn't his and that he should either pay now or agree to a new price. He didn't like that idea, but eventually we agreed to make it 300usd.
And one of the clauses was.
"I shouldn't ask him to pay." 🙄
He would pay when he could. (entitled brat attitude again). Ok. Fine.
It's been a month from that. He teased that he would pay 3 weeks ago. And he didn't. I asked him how was the "not asking for payment clause", because he did the teasing and I wanted to know if that kind of shitty mind games was part of the deal.
So that's the background story for the laptop.
Now time for a dinner story.
We share dinner once or twice a week. And when any one is short in money we keep a tally on who's been paying.
When I have money I just let the tally go in my favor, an buy him dinner whenever he says his short on money.
Note: Here, fries and soda are not part of the price, so the one that is short on money pays the fries and soda.
Today it was not one of those days. (Dinner here is about 15 USD for 2, with fries, and soda, nothing fancy, nor healthy, but an exuse to hang out with my only brother that would not eat a salad even if it was free).
I owed him 10 bucks, and he owed me 1 dinner. I asked him if he's buying dinner today. He said that the tally is even because last meal I didn't pay the chips. 🧐. (That was settled because I didn't pay once, but made up for it later)
Again with his entitled ass shitty attitude.
I just said. I don't want to hear your excuses. Here's your money. I want my laptop tomorrow, I'll sell first thing Monday. And tell me how much did you spend on repairs and parts and I'll pay you.
And now I'm sad. 🙃
Mainly, because is just so fucking boring to deal with a person that counts every penny. I fed him for 10 year while he was having problems, (alcohol and depression), And now he comes with this shitty ass counting pennies attitude, wtf?
I literally felt poorer just by counting the cents that made part of this story. (Really, who the fucks keeps track of chips and soda??? What are we 15yo??)))
It's one thing to be trapped in a 3rd world country where everyone is trying to fuck you. You learn to deal with that shit. And it's ok.
But seeing that your little brother is learning the same cheap trickery is just sad. The same cheap approach to life. The same easy and pathetic mind games is just fucking sad.
I don't even mind the money anymore. I was short on cash 2 months ago, I'm gladly better now. But finding out that he's becoming a little scammer is a bummer.
I just needed to vent. I think I should stop enabling him. And maybe keep some distance, it is fucking depressing to be counting cents to settle an argument. By dealing with that fucktard I end up counting cents just to figure out who's right.9 - 
				    					
					
					I don't know if I'm being pranked or not, but I work with my boss and he has the strangest way of doing things.
- Only use PHP
- Keep error_reporting off (for development), Site cannot function if they are on.
- 20,000 lines of functions in a single file, 50% of which was unused, mostly repeated code that could have been reduced massively.
- Zero Code Comments
- Inconsistent variable names, function names, file names -- I was literally project searching for months to find things.
- There is nothing close to a normalized SQL Database, column ID names can't even stay consistent.
- Every query is done with a mysqli wrapper to use legacy mysql functions.
- Most used function is to escape stirngs
- Type-hinting is too strict for the code.
- Most files packed with Inline CSS, JavaScript and PHP - we don't want to use an external file otherwise we'd have to open two of them.
- Do not use a package manger composer because he doesn't have it installed.. Though I told him it's easy on any platform and I'll explain it.
- He downloads a few composer packages he likes and drag/drop them into random folder.
- Uses $_GET to set values and pass them around like a message contianer.
- One file is 6000 lines which is a giant if statement with somewhere close to 7 levels deep of recursion.
- Never removes his old code that bloats things.
- Has functions from a decade ago he would like to save to use some day. Just regular, plain old, PHP functions.
- Always wants to build things from scratch, and re-using a lot of his code that is honestly a weird way of doing almost everything.
- Using CodeIntel, Mess Detectors, Error Detectors is not good or useful.
- Would not deploy to production through any tool I setup, though I was told to. Instead he wrote bash scripts that still make me nervous.
- Often tells me to make something modern/great (reinventing a wheel) and then ends up saying, "I think I'd do it this way... Referes to his code 5 years ago".
- Using isset() breaks things.
- Tens of thousands of undefined variables exist because arrays are creates like $this[][][] = 5;
- Understanding the naming of functions required me to write several documents.
- I had to use #region tags to find places in the code quicker since a router was about 2000 lines of if else statements.
- I used Todo Bookmark extensions in VSCode to mark and flag everything that's a bug.
- Gets upset if I add anything to .gitignore; I tried to tell him it ignores files we don't want, he is though it deleted them for a while.
- He would rather explain every line of code in a mammoth project that follows no human known patterns, includes files that overwrite global scope variables and wants has me do the documentation.
- Open to ideas but when I bring them up such as - This is what most standards suggest, here's a literal example of exactly what you want but easier - He will passively decide against it and end up working on tedious things not very necessary for project release dates.
- On another project I try to write code but he wants to go over every single nook and cranny and stay on the phone the entire day as I watch his screen and Im trying to code.
I would like us all to do well but I do not consider him a programmer but a script-whippersnapper. I find myself trying to to debate the most basic of things (you shouldnt 777 every file), and I need all kinds of evidence before he will do something about it. We need "security" and all kinds of buzz words but I'm scared to death of this code. After several months its a nice place to work but I am convinced I'm being pranked or my boss has very little idea what he's doing. I've worked in a lot of disasters but nothing like this.
We are building an API, I could use something open source to help with anything from validations, routing, ACL but he ends up reinventing the wheel. I have never worked so slow, hindered and baffled at how I am supposed to build anything - nothing is stable, tested, and rarely logical. I suggested many things but he would rather have small talk and reason his way into using things he made.
I could fhave this project 50% done i a Node API i two weeks, pretty fast in a PHP or Python one, but we for reasons I have no idea would rather go slow and literally "build a framework". Two knuckleheads are going to build a PHP REST framework and compete with tested, tried and true open source tools by tens of millions?
I just wanted to rant because this drives me crazy. I have so much stress my neck and shoulder seems like a nerve is pinched. I don't understand what any of this means. I've never met someone who was wrong about so many things but believed they were right. I just don't know what to say so often on call I just say, 'uhh..'. It's like nothing anyone or any authority says matters, I don't know why he asks anything he's going to do things one way, a hard way, only that he can decipher. He's an owner, he's not worried about job security.12 - 
				    					
					
					Depends. No one took for the job. VSCode is really good for web and Python. I use Visual Studio for c#, c++ and c. Jetbrains for Java stuff, including Android studio.
When writing SQL I usually use vendor-provided editors like MySQL Workbench. They're the tool made for the job.
Visual Studio Code is my generic editor thanks to it's easy-access terminal. Makes running anything a breeze.
It doesn't feel as snappy as other editors though and installing plugins just for intellisense to work can be annoying, which is why I use other tools for other workflows.
Generally, I avoid things like vim. Sorry, but I have a mouse AND a keyboard. Paid for em both, and I intend to use em. Sometimes I wanna find a setting in a menu and not fuck around with config files after googling what the right setting is called.
I used Sublime for a while, but never really got too into it. It's okay.1 - 
				    					
					
					So about 3 weeks ago I was laid off from my dream job due to corporate bullshit. From the feedback received since then it is clear that the company made a mistake hiring a brand new React dev while they really needed an experienced one. Because the consultants who were supposed to be weren't. And the other in-house front end dev was an elitist asshole. And I never received proper feedback until it was too late. Actually I still don't have proper feedback save for some vague stuff which really sounds like the kind of feedback you'd give someone in the middle of their learning process. They even said eventually given more time I could have made it. But alas they felt they had to make a call in the best interest of the company.
Things moved fast since then, I took a week to recover and then I spent time updating my resume before getting back in touch with the recruiter who got me my last job. Great guy and he was happy to help me again. Applied to some positions, got some replies, first in person interview I go to they are immediately willing to take me on.
So now I'm supposed to start tomorrow but somehow I'm having my doubts. The company isn't an IT company but rather a fashion company. They believe in developing in house tools because past attempts with external companies resulted in them trying to push their vision through. Knowing who they worked with I agree, they tried to oversell all the time. But after talking with their developers I noticed they are behind on their knowledge. But so am I. So there was no tech interview which means I am getting an easy way in. And if they honour their word I'll be signing tomorrow for around my old wages.
So you'd think that sounds good right? And yet I'm worried it's going to be another shit show working on software without proper analysis or best practices. I mean the devs aren't total idiots, they are mediors like me and I think their heart is in the right place. They want to develop a good project but it will be just us 3 making a modern .net wpf application with the same functionality of the old Access based system currently in use. I was urged by the boss to draw on my experience and I think he wants me to help teach them too. But I'm painfully aware for my decade since graduating I'm a less than average .net dev who struggles with theory and never worked a job where I had someone more experienced to teach me. I coasted most of the time in underpaid jobs due to various reasons. But I'd always get mad over shitty code and practices. Which I realize is hypocritical for someone who couldn't explain what a singleton class is or who still fails at separation of concerns.
So yeah my question for the hivemind is what advice would you give a dev like me? I honestly dislike how poor I perform but it often feels like an insurmountable climb, and being over 30 makes it even more depressing. On the other hand I know I should feel blessed to find a workplace who seems to genuinely believe that people grow and develop and wishes to support me in this. Part of me thinks I should just go in, relax, but also learn till I'm there where I want to be and see if these people are open to improving with me. But part of me also feels I'm rushing into this, picking the first best offer, and it sure feels like a step backwards somehow. And that then makes me feel like an ugly ungrateful person who deserves her bad luck because she expects of others what she can't even do herself :(4 - 
				    					
					
					Microservices is a buzzword and everyone is using it to modernize their company and themselves.
Add a cloud in the context and boom, you are equivalent of some Tech gaint.
Well then, if you say so why don't you implement or try to implement in proper way. Use the right tools, "opensource" if you have heard of it has a ton of stuff right for the job.
But no, all you do is write the same old services in Java, put a label of "cloud native" and stick it out so proudly that clients think "oh a new shiny thing".
Putting out poster of "Immediate job requiment for Microservices" and staring blank when the candidate tries to explain how the Microservices work, but you know only about EJBs and you are sitting in interview room wondering what he is really talking about. I dint hear a single word of Java because that is all I know. Then finally rejecting the candidate because he dint say EJB in the interview.
The point is, some shit people don't want to improve themselves nor let anyone improve. Fear of being replaced by a younger generation of developers has plauged the seniors in ways no one can think of.3 - 
				    					
					
					So first of all merry delayed Xmas and of course wishing you all a happy new year.
Now...
I always loved designing and coding, yes I actually like it, I must be absolutely mental or something.. I finally after pushing myself through hours upon hours of courses, finishing most within 15% of the allotted time, and doing more then was requested, I finally found a job, related to front-end development. You might think "Gee; good for you buddy, you filthy commoner.." Well; it didn't last all too long, I basically after nailing the interview process got my first day there within a few days, now I am absolutely stoked and my nerves are shot, plus the 4 cups of coffee aren't helping. I literally was so nervous to do well on my first day, that I slept for only one hour, literally one bloody hour.
I get into the office where I am greeted by an amazing laptop, I mean high-end gaming 360 no-scope all over the place gaming. I sit down and start on getting all my tools ready to go (they let us use whatever IDE we wanted, which I thought was amazing) after getting my IDE and the plugins and all the emails/Slack etc setup, I then get told to get a Dropbox account. I assumed the Dropbox account was just there to share things quickly with the designers, we would obviously be using Git right?! Well; no not exactly, actually not at all - we all used the Dropbox account of one of the bosses, I swear everybody pushed and pulled stuff all the time, a copy of the boss's passport was in there as well, and they had projects from and up to 3 years ago, still in there... It took my Dropbox 3 bloody hours to grab as much as it could to actually allow me to get started...
I then to my absolute dismay notice that I would be working on a prefab of a prefab, basically the only thing I would be responsible for, is to adjust the animations and aligning elements.... Aligning and animations.... Fine, I guess it could be worse right? Started going along with it, using a framework that I never heard of before, till like a good 3 days before starting there called "Greensock" which is amazing I must admit, could've helped me allot on my solo-projects. Problem was; we had designers who wanted things, that just looked plain horrible, it was never 'on-point' so to say, maybe it's just me being a perfectionist but it just looked wrong.
Finally got it done after struggling with the prefabs and what not, then the day was almost over and I finally got to go home, fortunately dodging the drinking that was occurring around 4 in the afternoon in the middle of the office, it wasn't beers or anything of the sort - but hard liquor along the lines of Wodka and straight up Gin. I fortunately had a personal issue I had to attend too, so I got out of there before things got too crazy and they went out for dinner stumbling all over the place.
Well this wen't for a few more days (minus the drinking), with 8 being the exact number of days and my grievance list only kept growing. I was for one a junior-developer and thus with them knowing was supposed to get training from our lead, however; that never occurred instead said 'lead' would leave early or be completely absent on most days, leaving me to mess around with prefabs that did my head in, with no comments nor any indication what it did or should've done, I spent hours just adjusting one line of code at a time to see what would happen.
Eventually they told us to work from home only, so I did - did a project here and there and then got told they wouldn't keep me on board any longer, stating I was too inexperienced and they didn't have enough work (which was a load of bs) and that I lacked "office experience" whatever the heck that means, I was always sociable and hell I ever cracked people up, kept a neat and orderly list of things that needed doing, I even contrary to most commented on my code, so the next poor sod wouldn't be going through 'try by error' hell that I wen't through.
Either way; I currently have been feeling absolutely wrecked in terms of motivation, that job would've solved my financial situation and allowed me to finally do what I wanted to do. Instead of doing some random dead-end job each week or month, I would've had a steady income and something I could've built on.
But to add some positivism to this endless and too long of a rant... I'm currently going through a boot-camp and doing a small Linux based course on the side, this little thing isn't going to hold me back; yeah it will be tough, but then again most things don't come easy..
Thank you for reading and I hope you have allot and I mean allot more luck on your first job.5 - 
				    					
					
					I read something LinkedIn -related just now in here, and it kind of made me think. Not really, but whatever it was, brought my mood down some...
It’s a good thing I’m not looking for work at the moment, and I’m quite happy where I am right now, because what I see in LinkedIn depresses me. More specifically, the language and/or framework experience companies are looking to recruit... Java this, Python that, React everywhere... and then there’s the M$ shops... (oh and Scala - surprisingly much Scala, waduheq?) Urgh...
Don’t take it wrong, I totally understand sticking to the tried and tested tools you just know there’s devs aplenty who know their way around them. It’s just from the perspective of someone who prefers to use one of the better tools for a job, it breaks my heart to not see them utilized more, and it makes me think what I would do if I was fired rn? (Unlikely, but theoretically...) Tbh, I don’t know. Probs apply to one of the few F# jobs out there, even when I knew I’d probably have to work on a Windork machine again (pls no), but due to the drawback I just mentioned, not such a bright prospect after all...4 - 
				    					
					
					I am an Indie game developer. I've been working solo for two or three years now and teaching myself. I can work in 3D modeling applications as well as program in c++ and do blueprint in unreal engine. I know most of the pipeline and the suite.
I'd like to transition to doing game Dev full time or at the very least do programming as my job. I have no degree.
I'm looking for contracts or whatever I can get and I'd like to get suggestions on how I should go about quitting my shity night shift job at a factory and finally work in tech.
I've got a couple contracts going on right now that I am not sure if they are going to last. I would like to know how I should go about finding more and or what things I should do in order to get residual income so I can focus on my own projects.
I have several of my own games in the works and I'm developing some tools for the marketplace. Advice?28 - 
				    					
					
					It is the time for the proper long personal rant.
Im a fresh student, i started few months ago and the life is going as predicted: badly or even worse...
Before the university i had similar problems but i had them under control (i was able to cope with them and with some dose of "luck" i graduated from high school and managed to get into uni). I thought by leaving the town and starting over i would change myself and give myself a boost to keep going. But things turned out as expected. Currently i waste time everyday playing pc games or if im too stressed to play, i watch yt videos. Few years ago i thought i was addicted, im not. It might be a effect of something greater. I have plans, for countess inventions, projects, personal, for university and others and ALL of them are frozen, stopped, non existant. No motivation. I had few moments when i was motivated but it was short, hours or only minutes. Long term goals dont give me any motivation. They give as much short lived joy, happines as goals in games and other things... (no substance abuse problems, dont worry). I just dont see point of my projects anymore. Im sure that my projects are the only thing that will give me experience and teach me something but... i passed the magic barrier of univercity, all my projects are becoming less and less impressive... TV and other sources show people, briliant people, students, even children that were more succesful than me
if they are better than me why do i even bother? companies care more for them, especialy the prestigious ones, they have all the fame, money, funding, help, gear without question!
of course they hardworked for ther positions, they could had better beggining or worse but only hard work matters right?
As i said. None of my work matters, i worked hard for my whole life, studing, crafting, understanding: programming, multiple launguages, enviorements, proper and most effcient algorithms, electronic circuits, mechanical contraptions. I have knowlege about nearly every machine and i would be able to create nearly everything with just access to those tools and few days worth of practice. (im sort of omnibus, know everything) But because had lived in a small town i didnt have any chances of getting the right equpment. All of my electronical projects are crap. Mechanical projects are made out of scrap. Even when i was in high school, nobody was impressed or if they were they couldnt help me.
Now im at university. My projects are stagnant, mostly because of my mental problems. Even my lifestyle took a big hit. I neglect a lot of things i shouldnt. Of course greg, you should go out with friends! You cant dedicate 100% of your life to science!
I fucking tried. All of them are busy or there are other things that prevent that... So no friends for me. I even tried doing something togheter! Nope, same reasons or in most cases they dont even do anything...
Science clubs? Mostly formal, nobody has time, tools are limited unless you designed you thing before... (i want to learn!, i dont have time to design!), and in addition to that i have to make a recrutment project... => lack of motivation to do shit.
The biggest obstacle is money. Parts require money, you can make your parts but tools are money too. I have enough to live in decent apartment and cook decently as well but not enough to buy shit for projects. (some of them require a lot or knowlege... and nobody is willing to give me the second thing). Ok i found a decent job oppurtunity. C# corporation, very nice location, perfect for me because i have a lot of time, not only i can practice but i can earn for stuff. I have a CV or resume just waiting for my friend to give me the email (long story, we have been to that corp because they had open days and only he has the email to the guy, just a easier way)
But there are issiues with it as well so it is not that easy.
If nobody have noticed im dedicated to the science. Basicly 100% scientist that want to make a world a better place.
I messaged a uni specialist so i hope he will be able to help me.
For long time i have thought that i was normal, parent were neglecting my mental health and i had some situations that didnt have good infuence on me as well. I might have some issiues with my brain as well, 96% of aspargers symptoms match, with other links included. I dont want to say i have it but it is a exciuse for a test. In addition to that i cant CANT stop thinking, i even tried not thinking for few minutes, nope i had to think about something everytime. On top of that my biological timer is flipped. I go to sleep at 5 am and wake up at 5pm (when i dont have lectures).
I prefer working at night, at that time my brain at least works normaly but i dont want to disrupt roommates...
And at the day my brain starts the usual, depression, lack of motivation, other bullshit thing.
I might add something later, that is all for now. - 
				    					
					
					So new job started.
Just for context- old company was shit.
Promised the world but.
No benefits.
Terrible project management.
High pressure.
But green field interesting work (except by now it’s a few years in so it’s a ‘browning’ field but I was on it from the start).
New company first impressions..
Seems a fantastic company.
True to their word they have money for tools.
Making time for personal development.
Much bigger development community/department.
Seems like the term are under far less pressure so far at least.
But a MASSIVE amount of tech debt.
People seem to want to do the right thing and they’re making time to try and deal with it.
But one or two are very opinionated as to how to deal with it.
So this could go either way and only time will tell I guess.
Trying not to over analyse every little thing they say but I’m hyper sensitive to it at the minute while in the early days.
As always the real challenge in IT is the people not the tech. I count myself as part of the problem, sure I will form some opinions and sharing them too.3 - 
				    					
					
					Dear Devranters, since recruiters love personal websites (and I'm looking for work), I spent the last two days making my own personal site using all the tools I know, including some 3d modeling of the stack I know
DO YOU HAVE YOUR OWN SITES? can you share so I can compare? thanks.
site is here https://bransongitomeh.github.io and I'm attaching the 3D render of my stack done in blender and rendered using cycles
the site itself is done in HTML and CSS is using some paid bootstrap template and I put it all together using https://github.com/BransonGitomeh/... so its minified and stripped down (could do more) and it's cute I think.
I'm not sure if recruiters care if I should use react and vue and angular, lol. I figured I should use the right tool for the Job.
what do you think?
				        
				        
				        
				        
				        39 - 
				    					
					
					Here comes lots of random pieces of advice...
Ain't no shortcuts.
Be prepared, becoming a good programmer (there are lots of shitty programmers, not so many good ones) takes lots of pain, frustration, and failure. It's going to suck for awhile. There will be false starts. At some point you will question whether you are cut out for it or not. Embrace the struggle -- if you aren't failing, you aren't learning.
Remember that in 2021 being a programmer is just as much (maybe even moreso) about picking up new things on the fly as it is about your crystalized knowledge. I don't want someone who has all the core features of some language memorized, I want someone who can learn new things quickly. Everything is open book all the time. I have to look up pretty basic stuff all the time, it's just that it takes me like twelve seconds to look it up and digest it.
Build, build, build, build, build. At least while you are learning, you should always be working on a project. Don't worry about how big the project is, small is fine.
Remember that programming is a tool, not the end goal in and of itself. Nobody gives a shit how good a carpenter is at using some specialized saw, they care about what the carpenter can build with that specialized saw.
Plan your build. This is a VERY important part of the process that newer devs/programmers like to skip. You are always free to change the plan, but you should have a plan going on. Don't store your plan in your head. If you plan exists only in your head you are doing it wrong. Write that shit down! If you create a solid development process, the cognitive overhead for any project goes way down.
Don't fall into the trap of comparing yourself to others, especially to the experts you are learning from. They are good because they have done the thing that you are struggling with at least a thousand times.
Don't fall into the trap of comparing yourself today to yourself yesterday. This will make it seem like you haven't learned anything and aren't on the move. Compare yourself to yourself last week, last month, last year.
Have experienced programmers review your code. Don't be afraid to ask, most of us really really enjoy this (if it makes you feel any better about the "inconvenience", it will take a mid-level waaaaay less time to review your code that it took for you to write it, and a senior dev even less time than that). You will hate it, it will suck having someone seem like they are just ripping your code apart, but it will make you so much better so much faster than just relying on your own internal knowledge.
When you start to be able to put the pieces together, stay humble. I've seen countless devs with a year of experience start to get a big head and talk like they know shit. Don't keep your mouth closed, but as a newer dev if you are talking noise instead of asking questions there is no way I will think you are ready to have the Jr./Associate/Whatever removed from your title.
Don't ever. Ever. Ever. Criticize someone else's preferred tools. Tooling is so far down the list of what makes a good programmer. This is another thing newer devs have a tendency to do, thinking that their tool chain is the only way to do it. Definitely recommend to people alternatives to check out. A senior dev using Notepad++, a terminal window, and a compiler from 1977 is probably better than you are with the newest shiniest IDE.
Don't be a dick about terminology/vocabulary. Different words mean different things to different people in different organizations. If what you call GNU/Linux somebody else just calls Linux, let it go man! You understand what they mean, and if you don't it's your job to figure out what they mean, not tell them the right way to say it.
One analogy I like to make is that becoming a programmer is a lot like becoming a chef. You don't become a chef by following recipes (i.e. just following tutorials and walk-throughs). You become a chef by learning about different ingredients, learning about different cooking techniques, learning about different styles of cuisine, and (this is the important part), learning how to put together ingredients, techniques, and cuisines in ways that no one has ever showed you about before. - 
				    					
					
					A loooong time ago...
I've started my first serious job as a developer. I was young yet enthusiastic as well as a kind of a greenhorn. First time working in a business, working with a team full of experienced full-lowered ultra-seniors which were waiting to teach me the everything about software engineering.
Kind of.
Beside one senior which was the team lead as well there were two other devs. One of them was very experienced and a pretty nice guy, I could ask him anytime and he would sit down with me a give me advice. I've learned a lot of him.
Fast forward three months (yes, three months).
I was not that full kind of greenhorn anymore and people started to give me serious tasks. I had some experience in doing deployments and stuff from my other job as a sysadmin before so I was soon known as the "deployment guy", setting up deployments for our projects the right way and monitoring as well as executing them. But as it should be in every good team we had to share our knowledge so one can be on vacation or something and another colleague was able to do the task as well.
So now we come to the other teammate. The one I was not talking about till now. And that for a reason.
He was very nice too and had a couple of years as a dev on his CV, but...yeah...like...
When I switched some production systems to Linux he had to learn something about Linux. Everytime he encountered an error message he turned around and asked me how to fix it. Even. For. The. Simplest. Error. He. Could. Google. Up.
I mean okay, when one's new to a system it's not that easy, but when you have an error message which prints out THE SOLUTION FOR THE ERROR and he asks me how to fix it...excuse me?
This happened over 30 times.
A. Week.
Later on I had to introduce him to the deployment workflow for a project, so he could eventually deploy the staging environment and the production environment by hisself.
I introduced him. Not for 10 minutes. I explained him the whole workflow and the very main techniques and tools used for like two hours. Every then and when I stopped and asked him if he had any questions. He had'nt! Wonderful!
Haha. Oh no.
So he had to do his first production deployment. I sat by his side to monitor everything. He did well. One or two questions but he did well.
The same when he did his second prod deploy. Everythings fine.
And then. It. Frikkin. Begins.
I was working on the project, did some changes to the code. Okay, deploy it to dev, time for testing.
Hm.
Error checking out git. Okay, awkward. Got to investigate...
On the dev server were some files changed. Strange. The repo was all up to date. But these changes seemed newer because they were fixing at least one bug I was working on.
This doubles the strangeness.
I want over to my colleague's desk.
I asked him about any recent changes to the codebase.
"Yeah, there was a bug you were working on right? But the ticket was open like two days so I thought I'll fix it"
What the Heck dude, this bug was not critical at all and I had other tasks which were more important. Okay, but what about the changed files?
"Oh yeah, I could not remember the exact deployment steps (hint from the author: I wrote them down into our internal Wiki, he wrote them done by hisself when introducing him and after all it's two frikkin commands), so I uploaded them via FTP"
"Uhm... that's not how we do it buddy. We have to follow the procedure to avoid..."
"The boss said it was fine so I uploaded the changes directly to the production servers. It's so much easier via FTP and not this deployment crap, sorry to say that"
You. Did. What?
I could not resist and asked the boss about this. But this had not Effect at all, was the long-time best-buddy-schmuddy-friend of the boss colleague's father.
So in the end I sat there reverting, committing and deploying.
Yep
It's soooo much harder this deployment crap.
Years later, a long time after I quit the job and moved to another company, I get to know that the colleague now is responsible for technical project management.
Hm.
Project Management.
Karma's a bitch, right? - 
				    					
					
					That time after you changed to Linux and you really need windows...
Trying to root my new server :( Don't know why can only use USB1 on my VirtualBox VM... Fuck man26 - 
				    					
					
					Confluence is called so because it is confusing. It's a prime example of a tool getting in the way for work instead of helping. In Swedish, we have the expression: "Rätt verktyg gör halva jobbet", meaning the right tool does half of the job. Tools from Atlassian do the opposite, they only double the workload.11
 - 
				    					
					
					This always gets me:
Developers complaining that their 4 year old / cheap ass computer is slow.
Get. A. New. One.
It's not that hard.
Here, let me do one for you:
https://computeruniverse.net/en/...
I just went to a site that delivers across Europe, and selected a cheap laptop with a decent CPU and SSD. Short on RAM, sure, and without a Windows License. But you can buy RAM for an additional 50$, and that brings you to a total of 550€, delivery included. And it will WORK. And it will be fast.
It's too expensive?
No, not exactly. Wherever you are in the world, if you can code decently, good enough to have the right to complain about development tools, you are eligible to at least 10$ per hour income as a freelancer across the globe. I've had such opportunities offered to me by many organizations, especially non-profit ones that need cheap employees. I actually was offered more but let's stick to 10$ per hour.
So that's 1600$ per month. Enough to buy 3 such laptops. Oh, taxes, I forgot. So you get 2 laptops. Wait! You need food and everything else. Well if you're in a country where that offer actually makes sense, then it's likely that you can live off of 400$ per month quite well. Maybe 800$ if you need to pay rent.
So that's roughly 1 month of work for a laptop that will make you not waste time on waiting for stuff.
Sweet! 1 Month! What does it get me?
Well assuming that you have no laptop, it gets you A JOB that pays you 1600$ per month.
But if you DO have a laptop, you can sell it for cheap, and benefit from the following:
1. Boot-up time from 30-60 seconds to 10 seconds.
2. Installing software - from 1 minute to 10 seconds.
3. Opening a browser - from 10 seconds to 1 second.
4. Opening an advanced text editor (Atom, VS.Code) - from 10 seconds to 1 second.
5. Searching for a file on your entire hard drive - from 1 hour to 2 minutes.
....
You get the point. Waiting is reduced by several times.
So how much do you really wait when coding?
Well are you compiling? Are you opening a new project and the IDE needs to re-index the files? Are you opening programs like a terminal emulator, browser and such? Are you using virtual machines for dev environments?
Well all of these processes become several times faster. Depending on how often you do it, you'll be saving yourself from 1 hour per day to upto 4 hours per day (my case, where a HDD would be just out of the question).
How much is that time worth? At least 10$ per day. If you're working for 20 days per month, 240 days per year, that's a total of 2400$. And for the life time of that crappy laptop of 2 years, that's 4800$ saved. And that's with hugely conservative numbers. Nobody pays 10$ per hour any more, except if you've just started in the industry. I know because I've been there.
Please, for all that's sacred to you, justify right here, right now, HOW THE FUCK can you not afford to get that 8GB of RAM, that cheap ass SSD for 100$, or even a brand new laptop (hey! it's even portable and has FHD graphics on it!) for 550$.
That's why every time I hear someone who is a professional developer complain that they don't have money for a decent machine, I have to ask: why the fuck are you wasting yours and everyone else's time?!10 - 
				    					
					
					I'm getting started on web development again. But I want to get the right tools for the job. I don't hate Dreamweaver. But I know there's got to be something better out there for me to use.15
 - 
				    					
					
					48 hours.
We had 3 weeks of "manual data collection": pencil, paper and a dozen of people around all the offices of the company with the task to collect serial numbers of every piece of equipment used.
Then we had 3 weeks of data entry, a dozen of people copying all handwritten data to a custom made VB form.
And then there was me, the guy that was in charge of verifying, zipping and sending the data to the client. I spent 48h non stop to go through everything, finding, fixing or delete unusable data.
I had to delete at least 25% of the data because incomplete or completely unusable (serial numbers too short or too long, for example).
48h in the office.
The data was then delivered to the customer. 2 days after, when I finally woke up, everyone was in panic because:
- serial numbers were not matching
- addresses were wrong
- the number of delivered records was smaller than expected
What did I learn from this experience?
When your deadline is tomorrow, and you need 4 weeks to complete your work, ignore the deadline and inform everyone at any level that you are ignoring the deadline. And then resign and find a better job.
Ah, yes, pencils and paper are powerful tools, but rat poison too. You just need to use them in the right place. The only data collection that can be trusted when done with a pencil is the one involving checkboxes.1 - 
				    					
					
					The joy when tools do not have machine parseable output.
I'm looking at you SBT. My favorite pile of poo.
Remove the logging level from each line, then trim the line, then stab around inside the line with regexes, fishing for a possible match which hopefully is right...
Then stripping scala information like the object type, cause yeah...
A line can be for example "[info] Vector(File(...),File(...))" where info is the log level, Vector the wrapping sequence type, File(...) the wrapping element type and the string inside File(...) what yours truly needs.
As this is lot of shitty shabby string stabby stabby, we need to add a fuckton of boiler plate validation cause who knows what we just murdered.
To make it even more fucked up, a multi project project can produce different output for the same key.
:-)
Yeah. So we need to fix that too.
By the way, one can set log output to unbuffered in SBT.
Then the output is in random order :-)
Isn't that fun? Come on, you wanna poke that pile of shit, too.
The SBT plugin way is by the way no alternative, as I need a full Java environment for execution.
Which brings me to the last point:
For fucks sake, writing CLI applications in Java is so much bloody boilerplate code.
There's ugly and then there's the "please kill me" kind of level.
50 lines just to write a basic validation of argc / argv with commons cli.
That's 6 lines in python. Not kidding. :(
I currently hate everything.
Moments where the job sucks: When you have to hotwire two electric cables with high currency by giving both cables the blowjob of your life.3 - 
				    					
					
					I'm really tired of all the hype that Python lately gets, mostly by begginers or at most mediors.
I get that a lot of people like it's syntax, but it has just a few use cases where it really shines (like CI scripting or ML). In other cases it always has a much better and much more mature alternative.
As a web developer I would always pick PHP over Python. It has really mature frameworks like Symfony or Laravel which are using PSR standards, well documented and implemented common patterns, option for strict typing and probably most importantly tons of libraries for pretty much everything. For example I could find implementation of payment gate for even the smallest banks in our country, thus saving several days of implementing it myself. And PHP will always humiliate Python in performance. Yet, pretty much every comparison article of those two will state Python as better option for webdev, mostly because it is evident that the person who wrote the article never even tried to do a proper atleast midsized project in PHP, but has ton of experience in Django.
And what exactly is my point? There are two in fact:
1) You should always use the right tools for the job.
2) Even if you could do something doesn't mean you should do it.
In the end of the day I shouldn't really be bothered by people hyping Python, but those fanatics really made me hate the language, even if I would normally consider looking into it.6 - 
				    					
					
					Ok so was dating this girl who n has a 8 year old I was with her for 4 year her son calls me dad... Long fucked up shit story short. She cheated fucked me over all that cool I stayed for the kid... A few months later I catch her in my son's bed with another dude.. ya I know right my apartment my everything!!!! How could she right.... but as most men knows Once Upon and gets caught doing something they turn into something completely unrecognizable in ridiculous. If I do whatever she says and wants to still let me in her son's life!! And as soon as I left my apartment to her she moved some dude in with his two kids and stole everything that I had.. so I had to get coppers involved to try to get some stuff... I mean I was free balling to work with no socks .. no towels nothing... you can only imagine how badly I wanted to go into my apartment and destroy this dude.... But for my son's sake I bit my lip and took it... she got a hold of my spare car keys both spare key tab and keys... shortly after I left they run my truck of all my HVAC technician tools... Then to make it worse some months later she emptied out my truck again... and you can only imagine how upset I was about everything because I love that kid and I don't want him to have to go through anything.... Someway somehow her and her new boyfriend got some guys off GitHub I mean I'm getting torn up out here ... GPS trackers .. people following me... and everytime I leave my truck or leave anything that gets broken into and stolen... it was so bad that they even made me lose my job at three different stores that I was working not because of my performance but every time I would walk outside of work my truck wouldn't start or it would be completely ransacked. Someone plz HELPPPPP and yes that's like the 4th GPS tracker that I've taken out of my second vehicle now because of this crap it is literally almost ruined my life
				        
				        
				        
				        
				        6 - 
				    					
					
					Alright, let's talk about Scrum Masters. Honestly, I just can't wrap my head around why they're even a thing. It's like someone decided to invent a job title for a role that's already covered by other folks on the team.
I mean, think about it. Who's usually sorting out the team's issues, making sure everyone's on the same page, and keeping the project on track? That's right, it's the project manager or the lead dev. They're already in the trenches, dealing with the nitty-gritty, so why do we need this extra layer?
And don't even get me started on this "servant-leader" nonsense. It's like they're trying to be the team's buddy, but they've got no real power to make things happen. It's like being a king without a crown. Who's going to respect that?
Plus, having a Scrum Master often just leads to more red tape. Instead of getting stuff done, we're stuck in endless meetings, talking about process this and methodology that. It's like we're more focused on how we work instead of actually working.
The best teams I've seen don't need a Scrum Master to babysit them. They need a real leader, someone who's not afraid to make the tough calls and who can give them the tools they need to kick ass and take names.
So, in a nutshell, I think Scrum Masters are about as useful as a chocolate teapot. It's high time we ditched this outdated role and got back to doing what we do best: building awesome stuff.8 - 
				    					
					
					Shit bathed and stack smashing ass loads of fuck.
I wrote a virtual machine, and just to fuck myself harder, I make the decision of applying some fancy dumbass theories of mine. This translates to a piece of shit modular design that works exactly as intended, but constantly gives me vietnam flashbacks to the horrifying, multiple concurrent instances of my younger mind being incessantly turbo-raped by the dozen object-obsessed pedophiles that I initially studied under.
Now, were they *actual* pedophiles? No, of course not. But I have to make fun of the acronym somehow and that's what came to mind, leaking horse dung all over the walls, floor, curtains and carpets.
Anyway, I feel so smart after this traumatic experience I just have to keep doing it to relive the terror once again. Find me in the corner, laying down in the fetal position, sobbing until the tears build up and drown me in this well of despair, or rather this finely shit painted portrait of a toilet in a lonely and stinking unisex public bathroom stall.
But let me squeeze these fucking tits a little bit harder, because that's my actual day job. That's right. I get PAID for slapping around mammary glands, it's not much but it's an honest living.
So where was I? Ah, yes, absolute degeneration. I'm truly the Max Wright of programming, mostly for smoking crack and having unprotected sex with homeless people, but also for keeping alien life forms in my basement that go out at night to hunt for sweet feline delight.
But as I keep going, I decide I want a language for the machine so I don't have to punch bits by hand all fucking day like an idiot, so alright let's make a small assembler for this shit... oh, right, except it's not small, because gently suckle the bile out the lips of my fucking butthole.
I may redefine a load of shit two months down the line, so I have to make everything perfectly encapsulated and easily fucked with -- which in my licking vomit off the floor of a porn theater travesty of a case means I'm generating half the code and scrambling as hard as I can to glue everything together.
Does it work? Of course it works, I'm Max Wright bitch. I can redefine the ISA all I want, anytime I want without breaking anything because of my pristine crackhead encapsulation. And to credit the scrambled eggs I have for fucking brains, it's not even *that* complex.
The problem is I keep forgetting shit, not how it works, just that it's there. So I forget that I have a virtual machine, and I forget that I have an assembler, and so I spend an entire day trying to figure out how the fuck I'm going to handle a loop inside an unrelated interpreter.
By the time I manage to remind the drooling undead jackass that is this husk that my irredeemably demonic self inhabits, that we can easily solve this by using the tools we've already built, it's so late and we're so tired there's not much we can do. All this time, WASTED.
Which circles back to crack. Are you tired of blowing your babysitter for cash? Have you considered suicide by a thousand used trojan condoms? Is your roommate possesed by the forces of Avernum, and now seeking all-destructive vengeance against your rectum?
Try no other than Soul Excision, the treatment that will neuter your being and curse it to the TRUEST form of eternal damnation! Through Soul Excision, you will be CUT OFF from the very essence of the universe, and turned into an astral prostitute that offers their EVERY orifice to the BUTTLOADS of maggots that debour their mind and body, all for the pleasure of some rich and powerful wankers that *deeply* enjoy watching questionable erotic tapes from nightmarish outer dimensions!
Use my promo code SLUTSKANK for 20% OFF in your very LAST purchase on this earth! And once you surrender your BODILY holes to cosmic oblivion, remember: when it comes to your ASS, we're ALWAYS open for business!
Thanks to Soul Excision for sponsoring this DDDDDDDDDDDDDDDDDDDDD$$$$$"2402"$$?"="$0"?¿"=¿?40'0"$="¿¿=$¿"?=4¿?"$="?¿$="¿?$0¿?"=$¡'0$"¿?$=::::::
:~%4 - 
				    					
					
					emacs, git and a decent shell like bash with at least gnutools
emacs, because I was searching for the right editor for years
- multi-platform
- extensible
- ready to type (no fucking mode change for typing like vim)
- programming functions like auto indenting, syntax highlight, auto complete, etc.)
- multiple windows in any arrangement
Additionally
- it is completely programmable to do anything you want
- you can find a solution to most common development needs on the web
git, because
- it is usable from small personal projects to heavy duty development
- fast branching and checking out, switching between different workpaths within seconds
- basic version control offline, you only need to be online for remote consolidation
- you don't have to think much about structure from the beginning, if in doubt just commit and your work is saved, then arrange the result when you're ready
sh/bash-like shell with gnutools, because
- simple tools do their job and try not to be smarter than the user
- tools can be combined in any possible and impossible variants
- powerfull scripting (although sh-syntax is often annyoing)
- open as many shells as needed, no single-instance problem as with some GUI-tools
- extensible with gazillions of other tools
And best of all, all these tools are available on all widely used desktop OS. - 
				    					
					
					I'm a self-taught frontend developer with 1,5 - 2 years of experience in JavaScript / Vue.js development. Pretty cliche in 2023 and I can actually feel this now when it comes to the job market. It's brutal at the moment.I moved to Germany for a specific job but got laid off a few weeks ago due to a lack of projects and actual things to do. And here I am right now: tons of job applications, 4-5 interviews a week, zero success.
I'm thinking about getting some warehouse job or anything for the time being, and start freelancing in my spare time. Instead of this oversaturated JavaScript landscape, I would get into PHP (not as "hip" so less competition, backend, no new tools every 6 months), SQL, or hyper-specialize in CSS - something I like quite a bit but have seemingly zero value to employers.
I actually made a simple website for a small business when I was getting started with frontend, and he was super happy with the end result. I also did some language tutoring, that was quite rewarding as well. So freelancing is definitely fun, I enjoyed it much more than fearing layoffs or trying to force a fake-ambitious attitude on my 30th interview that most probably won't lead me anywhere. :D
Is the frontend job market really this oversaturated? (I know, I know... It's not difficult for competent, skilled, and experienced devs with CS degrees) Is being a CSS specialist, PHP-developer, or SQL-magician on fiverr/upwork/etc. a viable freelancing path? I've heard good and bad about these platforms, the competition there, etc. If not, where should I start?
What do you think? Any input is much appreciated. :)4 - 
				    					
					
					I hate all of the OS/langs circlejerks. I think anyone participating in them (in a serious manner) needs to fucking grow up and learn the concept of tools. TL;DR for any OS/lang discussion: Use the right tools for the right job.3
 - 
				    					
					
					Hey all, just wondering what it was like for you when starting out your career.
I'm a newish dev, been full time for about a year hired right after my internship. My role has a bunch of hats ranging from DevOps/sys admin to software engineering, sort of a weird mashup of skills so it's not pure software engineering. I mainly work with python, Ansible, and some terraform.
However I still just want to say I'm sorely disappointed in my undergrad classes.
I have a "concentration" in software engineering. I did struggle in classes as I was working full time to pay for classes without taking out loans, but I don't really remember learning a whole lot that was useful in industry.
Overall I just feel like just paid money for a degree that didn't teach me very much useful stuff. Maybe I'm just lacking experience? Maybe what I learned I just don't notice myself applying because it's subconscious?
My coworkers have taught me so much, and I'm very thankful they invested that time into me. I still get ripped to shreds during code reviews lmao (definitely not as much compared to when I first started but I'm also still learning and will always be)
Plus our company docs are pretty good so I can always read through them or search our codebase for examples on how to utilize in house tools etc.
I definitely hit the jackpot with this job, just feeling like I should have been prepared more.4 - 
				    					
					
					Tldr; Rust community could definitely be way less annoying, but it's way more annoying listening to everyone bitch about it all the fucking time.
rant()
Tired of the Rust hype? Too fucking bad. Quit complaining that people like well-designed languages more than shitty ones. Yeah, rust devs can be real fucking zealous, but at least the language is good. If you don't like listening to people say "why not rust?" ignore them or ask yourself the same fucking question ahead of time so you don't feel defensive when someone asks it later.
Read some shit about how "it doesn't matter what you build it with if the software is good, its all the same". Ever heard of "right tool for the right job"? Rust has applications all over the place, so people are going to talk about it a lot. Also, just no. Like, Python shouldn't be in the Linux kernel for a lot of reasons, so the tools you choose can constrain whether or not your software is actually "good."
Ever heard of "unsubstantiated trust"? Yeah, you might be good at writing C, but you can get that shit to compile with nasty fucking problems and C's a straight up foot gun in my hands. It's hard to write shitty functioning Rust that does what you say it does, which is less unsubstantiated trust.1 - 
				    					
					
					There is no fucking holy grail of programming. It's better to use the right tools for each task instead of wasting hours to make the wrong tool do a horrible job. But noooooo. Even since this co-worker got here, he bragged how good Drupal 7 is for everything, and he never even ised it once before! Now we have 2 fucking projects beyond schedule and a new one coming ing, each of which tries to use a fucking CMS as if it was a fucking framework. Fucking idiots who believe setting a couple of options via gui to generate random code means programming. Fucking bosses who believe using 3rd party community modules and hacking around them to have them do different stuff is better than coding what we need. I fucking gave up and started using raw php to be able to finish this fucking project, but my damn co-worker refuses to. He keeps swearing and punching the desk, saying it's our clients' fault for asking stupid features, and if you dare to mention how it may because we're using a cms like it was a framework, he just goes full bigot about Drupal. Bloody Hell, it would have taken lass than 3 weeks in Rails. I could just headbutt a kitten right now.1
 - 
				    					
					
					I had a discussion with my colleagues about my bachelor thesis.
Together we created within the last 18 month a REST-API where we use LDAP/LMDB as database (tree structured storage). Of course our data is relational and of course we have a high redundancy there. It's a 170 call API and I highly doubt that it's actually conforming REST.
Ensuring DB integrity is done in the backend and coding style there is "If we change it at one place, let's make sure to also change it everywhere else", so you get a good impression how much of spaghetti code we have there.
Now I proposed to code a solution in my bachelor thesis where we use a relational database (we even have an administrated Oracle DB with high availability) and have a write-only layer to also store the data in LDAP but my colleagues said that "it would add too much complexity to the system".
Instead I should write the relational layer myself and fetch the data somehow from the existing LDAP tree.
What the actual fuck, spaghetti code is what makes the system really unnecessarily complex so that no one will understand that code in 2 years.
Congratulations, you just created legacy code that went into production in 2018 while not accepting the opportunity to let that legacy code get eliminated.
Now good luck with running and maintaining that system and it's inconsistencies.1 - 
				    					
					
					Right know, the biggest challenges when taking a new task are not learning the tool or framework or language, no...
The biggest challenge is how to integrate it with the burocratic and undoccumented in-house software and tools of my company.
Is it the same for you?? Should I start my job hunting already??1 - 
				    					
					
					https://appleinsider.com/articles/...
Tl;Dr This guy thinks apple is poised to switch the Macs to a custom arm based chip over x86! He's now on my idiot list.
I paraphrase:
"They've made a custom GPU", great! That's as helpful as "The iPad is a computer now", and guess what Arm Mali GPUs exist! Just because they made their own GPU doesn't make it suitable for desktop graphics (or ML)!
"They released compilation tools right when they released their new platform, so developers could compile for it right away", who would be an idiot not too...
"Because Android apps run in so many platforms, it's not optimized for any. But apple can optimize their apps for a sepesific users device", what!? What did I miss? What do you optimize? Sure, you can optimize this, you can optimize that... But the reason why IOS software is "optimized", and runs better/smoother (only on the newest devices of course) is because it's a closed loop, proprietary system (quality control), and because they happen to have done a better job writing some of their code (yes Android desperately needs optimization in numerous places...).
I could go on... "WinTel's market share has lowly plataued", "tHeY iNtRoDuCeD a FiElD pRoGrAmMaBlE aRrAy"
For apple to switch Macs to arm would be a horrible idea, face it: arm is slower than x86, and was never meant to be faster, it was meant to be for mobile usage, a good power to Wh ratio favoring the Wh side.
Stupid idiot.19 - 
				    					
					
					Okay so there are a lot of things that are left by us students as "this would be taught to us on job, why bother now?" So i have many questions regarding this:
- is it a safe mentality? I mean University is teaching me, say a,b,c and the job is supposed to be like writing full letters, than am i stupid to stick to just a,b,c and not learning how to write letters beforehand?
- what is even "taught" on job? This is especially directed towards people in Big firms. I mean i can always blame that small ugly startup who treated me badly and not gave me any resources, but why do i feel its going to be same at every other company?
I guess no one is gonna teach me for 6 months on how to write classes with java, or make a ml engineer out of me when i don't know jack shit about ml.... That's the task for college, right?
I feel that when these companies say they "teach", you they mean how to follow instructions regarding agile meetings, how to survive office politics and how to learn quickly and produce an output quickly. I don't think that if i don't know how MVI works, then they are gonna teach me that, would they?i guess not unless they already have someone knowledgeable in that topic
- what about the things that are not taught in our colleges and we wanna make a career in it? Like say Android. From what i have experienced , choosing a career in a subject that's not taught you in grad school immediately takes away some kind of shield from you, as you are expected to know everything beforehand. So again, the same questions bfrom above
i did learned something from job life tho, and that too twice. Once it was when i first encountered an app sample for mvvm and once when i found out a very specific case of how video player is being used in a manner that handled a lot of bugs.
Why i didn't knew those approaches when i was not in job? Well, the first was a theoretical model whose practical implementation was difficult to find online that time and the second was a thing that i myself gave a lot of hours, yet failed to understand. However when i was in the company , i was partnered with a senior dev who himself had once spent 30 days with the source code to find a similar solution.
So again , both of above things could have been done by me had i spent more time trying to learn those "professional tools" and/or dwelve deeper into the tech. And i did felt pretty guilty not knowing about those...5 - 
				    					
					
					TL;DR I just recently started my apprenticeship, it's horrible so far, I want to quit, but don't know what to do next...
Okay, first of all, hey there! My name is Cave and I haven't been on here for a while, so I hope the majority of you is doing rather okay. I'm programming for 6 years now, have some work experience already, since I used to volunteer for a company for half a year, in which I discovered my love for integrations and stuff. These background information will probably be necessary to understand my agony in full extend.
So, okay, this is about my apprenticeship. Generally speaking, I was expecting to work, and to learn something, gaining experience. So far, it only involved me, reading through horrible code, fixing and replacing stuff for them, I didn't learn a thing yet, and we are already a month in.
When I said the code is horrible, well, it is the worst I have ever seen since I started programming. Little documentation - if any -, everywhere you look there is deprecated code, which may or may not been commented out, often loops or simply methods seem to be foreign for them, as the code is cluttered with copy paste code everywhere and on top of that all, the code is slow as heck, like wtf.
I spent my past month with reading their code, trying to understand what most of this nonsense is for, and then just deleting and rewriting it entirely. My code suddenly is only 5% or their size and about 1000 times faster. Did I mention I am new to this programming language yet? That I have absolutely no experience in that programming language? Because well I am new and don't have any experience, yet, I have little to no struggle doing it better.
Okay, so, imagine, you started programming like 20 years ago, you were able to found your own business, you are getting paid a decent amount of money, sounds alright, right? Here comes the twist: you have been neglecting every advancement made in developing software for the past 20 years, yup, that's what it feels like to work here.
At this point I don't even know, like is this normal? Did git, VSCode and co. spoil me? Am I supposed to use ancient software with ancient programming languages to make my life hell? Is programming supposed to be like this? I have no clue, you tell me, I always thought I was doing stuff right.
Well, this company is not using git, infact, they have every of their project in a single folder and deleting it by accident is not that hard, I almost did once, that was scary. I started out working locally, just copying files, so shit like that won't happen, they told me to work directly in the source. They said it's fine, that's why you can see 20 copies of the folder, in the same folder... Yes, right, whatever.
I work using a remote desktop, the server I work on is Windows server 2008, you want to make icons using gimp? Too bad, Gimp doesn't support windows server 2008, I don't think anything does anymore, at least I haven't found anything, lol.
They asked me to integrate Google Maps into their projects, I thought it is gonna be fun, well, turns out their software uses internet explorer 9.. and Google maps api does not support internet explorer 9... I ended up somehow installing CEF3 on that shit and wrote an API for it in JS. Writing the API was actually kind of fun, but integrating it in their software sucked and they told me I will never integrate stuff ever again, since they usually don't do that. I mean, they don't have a Backend as far as I can tell, it looks like stuff directly connects with their database, so I believe them, but you know... I love integrating stuff..
So at this point you might be thinking, then why don't you just quit? Well I would, definitely. I'm lucky that till December I can quit without prior notice, just need a resignation as far as I can tell, but when I quit, what do I do next? Like, I volunteered for a company for half a year and I'd argue I did a good job, but with this apprenticeship it only adds up to about 7 months of actual work experience. Would anybody hire somebody with this much actual work experience? I also consider doing freelancing, making a living out of just integrating stuff, but would people pay for that? And then again, would they hire somebody with this much experience? I don't want to quit without a plan on what to do next, but I have no clue.
Am I just spoiled, is programming really just like that, using ancient tools and stuff? Let me know. Advice is welcomed as well, because I'm at a loss. Thanks for reading.10 - 
				    					
					
					I had to import some resources into infrastructure-as-code ( IaC ) for a new project. I found the right tool for the job and started working on it.
But I had a lot of resources to import. I decided to use the API of the source provider and transform them into the configuration format required for the IaC tool.
After spending a good half of a day scripting with a combination of `jq` and `yq` and another bunch of tools, I finally completed the import yesterday.
Today, I had to refer to the documentation of the IaC tool for something else and I found that there was a built-in command for pulling resources from the target to the source ( basically what I did with my script ). 🤦
( I hope my manager doesn't find out that I 'wasted' half a day when I could have completed the job within around an hour )
Lesson learnt the hard way ( again ) : READ THE F**KING MANUAL even if it may seem trivial.
*thought to self* : YTF won't you learn this simple thing after so many incidents? RTFM! - 
				    					
					
					I just got hired at a small MSP and I’m just utterly fucking frustrated by the shitty tools and complete lack of client documentation. I want to implement tons of FOSS tools for these newbhats but they seem to like spending money on tools that only work half-assedly at best... looking at you LogMeIn!
I’ve setup Apache Guacamole a few times before and want to get each client a guac-srv setup for client’s server mgmt. or PowerShell Web Access for clients.
I want to build AWS infrastructure for clients cause we can use cloudformation or terraform to build infrastructure. But these skunk-taint licking dipsticks would rather support physical 2003 servers. If I didn’t need this job to pay my bills right now I’d be fucking gone.
But... they are very nice people.
Just technologically speaking, they eat lead paint chips for breakfast and like to piss on electric fences for the funsies. - 
				    					
					
					Hey, internet! Does chrome/FF have any plugins enabling any tab to become a monitoring dashboard? I have too many monitoring tools to keep an eye on at the same time... Opening multiple chrome windows and tiling them on the screen is one way, but tile 6 windows and the desktop gets cluttered by taskbars/arrdessbars/other stuff. Doing it all in one tab would save space.
Soo.. anyone knows the right tool for the job? TIA1 - 
				    					
					
					What the hell am I!? I wonder if you guys can help me...
I've been programming most of my life but I've never actually been a developer by title or job role. I thought maybe if I list what I do and have done someone here could help? I'm sure there are more of you in a similar boat.
- C# and VB dev for some quick DBMS projects to help me understand and mine databases and create a nice simple view for project teams to show findings from the data to help make certain decisions.
- Automating a lot of my colleagues work with Python and if very restricted then just VBA macros in Excel and MSP. This did also include creating tools to gather data during workshops and converting the data for input into other systems.
- Brought Linux to the office with most team members now moving over to Linux with the peace of mind to know that though they do need to try solve their own problems, I can help if need be.
- Had to learn AWS and then implement an autoscaling and load balanced data center installation of a few Atlassian toolsets.
- Creating the architecture diagrams documentation needed for things like the above point.
- Having said that, also have ended up setting up all the Jira/Confluence etc. servers we use and have implemented so far whether cloud (Azure/AWS) or on prem and set up scripts to automate where possible.
- Implemented an automated workflow view in SharePoint based on SP list data and though in an ASPX page, primarily built in JS.
- Building test systems in PHP/JS with Laravel and Angular to help manage integration between systems. Having quite a time right looking into how to build middleware to connect between SOAP and REST API's, the trouble caused more by the systems and their reliance on frameworks we're trying to cut out of the picture.
- Working on BI and MI and training a team to help on the report creation so that I can do the fun creative stuff and then set them to work on the detail :)
Actually it seems safe to say that it seems that though I've finally moved into a dev office (beforehand being the only developer around) I seem to be the one they go to when a strategic solution is needed ASAP and the normal processes can't be followed (fun for someone with a CompSci degree and a number of project management courses under the belt... though I honestly do enjoy the challenges)
But I always end up Jack of all but master of, well hopefully some at least. let's not even get started on the tech related hobbies from circuit design and IoT to Andoid / iOS and game dev and enjoying a bit of pen testing to make sure we're all safe at work and at home.
As much as I don't like boxes, I'm interested to know if there is in fact a box for me? By the way, the above is just a snapshot of my last two years minus the project management work...2 - 
				    					
					
					How can a novel emerging challenger software (written in Rust) take me 4 hours to install (still ongoing)?
Today I have decided to give Pijul a go. Pijul describes itself as a theory-sound alternative to Git, which I have wanted to get away from for a while now, due to various reasons -- many of which I saw Pijul advertise to have solved on design level.
So I set away a day to learn Pijul, today. Well, 4 hours after I sat down -- after a number of hilariously wonky failures of "Rust ecosystem" to do the right thing as I had to install Rust with some shell one-liners those insane wizards recommend for installation process (all in the name of "stability but not stagnation") -- Pijul has now been installing with the blasted `cargo` for an hour now (that's after 3 hours of getting to the point where `cargo install pijul` stopped exploding in my face) -- telling me I only have 40 crates more to install. Are they throttling me, perhaps? I don't care -- I should have been installing Pijul from a repository in accordance with my Linux distribution, or -- at worst -- download a BLOODY COMPILED PROGRAM IMAGE.
What is it with the hipster developers today? Everything they get of tools, they subsume and churn out intricate complexities the likes of which we hadn't seen yesterday. Tell me fellow developers who think installation of your software has to require three and a half novel "installation solutions" to which I can't be arsed to be made privy -- do you think your life today is easier than, I don't know -- wrangling with a Makefile and a C compiler (which today thankfully can do rather good job of standards compliance)?
I mean I wouldn't mind Pijul being written in Rust -- but it turns out Rust's advertised elegancy in practice is wrapped in so much "giftwrap" I feel like what desire I had to learn Rust myself, I'll stear well clear.
Here's an advice for developers in general -- an advice continiously ignored for decades -- stop blowing your original scope of delivery in auxilary packages you think you need to reinvent just because you can or because your mom is out of town! For programming languages like Rust this most certainly entails NOT writing your own package manager, with its own package delivery mechanism that has its own configuration file format and virtual machine to configure dependency resolution or what have you!
You wanted to write a programming language that has novel features you think we need? Fine -- write one and stop there. Watch it grow, and watch people who are busy working on other parts (scopes) of software to integrate your offer.
What a shitshow. Stop smuggling alternative package managers, installers, and discombulators with your actual product -- I only want the latter, I don't want the rest of your damn piping, walls, roof and a cathedral on top of it!
Don't be that guy starting with a pin, and ending up with a fucking diorama miniature of a pig farm in Netherlands. Jesus.7 - 
				    					
					
					Need advice about switching to contracting.
TL;DR;
So I had 2 years of exp as an android dev, then I had a 1.5 year gap from doing android and now for the past 6 months Ive been doing android again fulltime. Im thinking of switching to contracting due to my debts and boring project and life crushing slow corporate processes in my current fulltime job, so I need tips and advices as to where should I start looking for new contracting gigs and in general what should I pay attention to. If it helps, I am based in EU, but am open to any EU/US gigs.
Now the full story:
Initially when I joined my current fulltime job after a break I had zero confidence, lowered my and employers expectations, joined as a junior but quickly picked up the latest standards and crushed it. Im doing better than half devs in my scrum team right now and would consider myself to be a mid level right now.
Asked for a 50% bump, manager kinda okayed it but the HQ overseas is taking a very long time to give me the actual bump. I have been waiting for 10 weeks already (lots of people in the decision chain were on and off vacations due to summer, also I guess manager sent this request to HQ too late, go figure). Anyways its becoming unnaceptable and I feel like its time for a change.
Now since I have mortgage and bills to pay, even with the bump that I requested that would leave me with like maximum 700-800 bucks a month after all expenses. I have debts of around 20k and paying them back at this rate would take 3 years at least and sounds like a not viable plan at all.
Also it does not help that the project Im working on is full of legacy and Im not learning anything new here. Corporate life seems to be very slow, lots of red tape kills creativity and so on. I remember in startups I was cooking features left and right each sprint, in here deploying a simple popup feature sometimes takes weeks due to incompetence in the chain. I miss the times where I worked in startups, did my job learned nre skills and after 6 months could jump on another exciting gig. Im not growing here anymore.
So because my ADD brain seems to be suited much better for working in startups, and also I need to make more money quick and I dont see a future in current company, I am thinking of going back to contracting. All I need right now is to build a few side apps, get them reviewed by seniors and fill my knowledge gaps. Then I plan of starting interviewing as a mid level or even a senior for that matter, since I worked with actual seniors and to be honest I dont think getting up to their level would be rocket science.
Only difference between mid and senior devs that I see atleast in my current company is that seniors are taking on responsibility more often, and they also take care of our tools, such as CD/CI, pipeline scripts, linters and etc. Usually seniors are the ones who do the research/investigations and then come up with actual tasks/stories for mids/juniors. Also seniors introduce new dependencies and update our stack, solve some performance issues and address bottlenecks and technical debt. I dont think its rocket science, also Ive been the sole dev responsible for apps in the past and always did decent work. Turns out all I needed was to test myself in an environment full of other devs, thats it. My only bottleneck was the imposter syndrome because I was a self taught dev who worked most of my career alone.
Anyways I posted here asking for some tips and advices on how to begin my search for new contract opportunities. I am living in EU, can you give me some decent sites where I could just start applying? Also I would appreciate any other tips opinions and feedback. Thanks!3 - 
				    					
					
					Perfect Pressure Pros: Your Trusted Experts for Window Cleaning, Pool Deck Cleaning, Soft Washing, and Roof Washing in North Carolina
At Perfect Pressure Pros, we specialize in providing top-quality exterior cleaning services for homes and businesses across Huntersville, NC, Charlotte, NC, and Concord, NC. Whether you're in need of window cleaning, pool deck cleaning, soft washing services, or roof washing, our team has the experience and tools to get the job done right. Serving you from our base at 7818 June Ln, Wildwood, FL, we proudly bring professional exterior cleaning to the Charlotte and surrounding areas.
Window Cleaning in Huntersville, NC – Make Your Windows Sparkle
Dirty windows can impact the look of your home or business and even reduce the amount of natural light that enters your space. If you’re in search of window cleaning in Huntersville, NC, Perfect Pressure Pros is here to help. Our expert window cleaning service removes dirt, streaks, and grime, leaving your windows looking crystal clear. We use advanced cleaning solutions and techniques that ensure a spotless finish, whether you need interior or exterior window cleaning. Let us enhance the curb appeal of your property with our professional window cleaning services.
Pool Deck Cleaning in Charlotte, NC – Keep Your Pool Area Beautiful and Safe
Your pool deck is exposed to the elements, meaning it can quickly accumulate dirt, algae, and other contaminants. Regular pool deck cleaning in Charlotte, NC is essential to maintaining a safe, clean, and attractive outdoor space. At Perfect Pressure Pros, we specialize in pressure washing and cleaning pool decks of all types, including concrete, stone, and pavers. We remove dirt, mold, mildew, and slippery algae, providing you with a clean and safe environment to enjoy your pool. With our pool deck cleaning services, you can relax and enjoy your outdoor area without worrying about safety hazards or unsightly stains.
Soft Washing Services in Charlotte, NC – Safe and Effective Cleaning
For delicate surfaces like roofs, siding, and windows, soft washing services in Charlotte, NC is the ideal solution. Unlike traditional pressure washing, soft washing uses low-pressure water and special eco-friendly cleaning solutions to gently and effectively clean surfaces without causing any damage. At Perfect Pressure Pros, we use soft washing to safely remove algae, mold, mildew, and other contaminants from your home’s exterior. Whether it's your roof, siding, or deck, our soft washing services are an effective and safe way to maintain your property’s appearance while protecting delicate surfaces.
Roof Washing Company in Concord, NC – Protect and Clean Your Roof
Your roof is an essential part of your home’s structure and deserves proper care to ensure its longevity. Over time, algae, moss, and debris can accumulate on your roof, causing damage and diminishing its curb appeal. As a leading roof washing company in Concord, NC, Perfect Pressure Pros provides safe and effective roof cleaning services. We use specialized soft washing techniques to remove harmful growths and contaminants without damaging your shingles. Regular roof washing not only improves the look of your home but also helps prevent costly repairs by extending the lifespan of your roof.
Why Choose Perfect Pressure Pros?
Experienced and Professional Team: Our technicians are highly trained and experienced in all aspects of exterior cleaning, ensuring top-quality results every time.
Advanced Equipment: We use the latest pressure washing and soft washing technology to deliver the best results for your property.
Affordable and Transparent Pricing: We offer competitive pricing and free estimates, so you can get the services you need without breaking the bank.
Customer Satisfaction: We prioritize customer satisfaction and are committed to exceeding your expectations with every service we provide.
Contact Perfect Pressure Pros Today
If you're looking for window cleaning in Huntersville, NC, pool deck cleaning in Charlotte, NC, soft washing services in Charlotte, NC, or a roof washing company in Concord, NC, contact Perfect Pressure Pros today! Our professional team is ready to help restore the beauty and safety of your property. Call us at +1 (561) 907-7201 to schedule an appointment or get a free estimate.
Let Perfect Pressure Pros handle all your exterior cleaning needs. We are your go-to service provider for top-quality pressure washing and soft washing solutions in Huntersville, Charlotte, and Concord, NC!2 - 
				    					
					
					Boss Power Wash LLC: Professional Paver Cleaning and Drive-Thru Cleaning in Orlando
At Boss Power Wash LLC, we specialize in providing high-quality paver cleaning and drive-thru cleaning services to homeowners and businesses in Orlando, FL, and the surrounding areas. Our expert team is dedicated to restoring the appearance and functionality of your exterior surfaces, ensuring your property looks pristine and inviting. Whether you need to revitalize your driveway, patio, or commercial drive-thru lanes, we have the tools, expertise, and experience to get the job done right.
Located at 1619 Rivers Edge Dr, Orlando, FL 32825, we are proud to serve Orlando with top-tier pressure washing and cleaning solutions that meet the unique needs of our customers. From residential driveways to commercial properties, we offer customized services to make your surfaces shine.
The Importance of Paver Cleaning in Orlando
Pavers are a popular choice for driveways, patios, walkways, and other outdoor spaces due to their durability, versatility, and aesthetic appeal. However, over time, pavers can accumulate dirt, algae, moss, and stains that detract from their appearance. Regular paver cleaning is essential to maintain their beauty and longevity.
At Boss Power Wash LLC, we use specialized equipment and eco-friendly cleaning solutions to effectively clean and restore your pavers. Here’s why paver cleaning in Orlando is so important:
Restores Aesthetic Appeal: Pavers can become dull and discolored due to dirt and debris buildup. Our expert paver cleaning service removes grime and stains, restoring the vibrant colors and texture of your pavers and enhancing the overall look of your outdoor space.
Prevents Damage: Over time, dirt, moss, and algae can break down the surface of your pavers, leading to cracks and unevenness. Regular cleaning helps prevent this damage, ensuring your pavers remain in excellent condition for years to come.
Improves Safety: Algae and moss can make your pavers slippery, creating a safety hazard. By removing these slippery substances, our paver cleaning services improve traction, reducing the risk of slips and falls.
Increases Property Value: Clean, well-maintained pavers can significantly boost the curb appeal of your property. Whether you’re preparing to sell your home or just want to improve the look of your outdoor spaces, paver cleaning is a great investment.
Our Paver Cleaning Process at Boss Power Wash LLC
We use a combination of high-pressure washing and eco-friendly cleaning agents to remove dirt, stains, and contaminants from your pavers. Our process includes:
Inspection and Assessment: We begin by evaluating the condition of your pavers to determine the best cleaning method. We identify any stains or buildup that may require special attention.
Pre-Treatment: For stubborn stains or algae buildup, we apply a pre-treatment solution to loosen dirt and grime, making the cleaning process more effective.
High-Pressure Cleaning: Using powerful pressure washing equipment, we clean your pavers without damaging them. Our team adjusts the pressure to ensure a thorough cleaning while protecting the surface.
Sealing (Optional): After cleaning, we can apply a protective sealant to your pavers to help prevent future staining and keep them looking new longer.
Drive-Thru Cleaning in Orlando: Maintaining a Clean, Professional Look for Your Business
As a business owner, you understand the importance of maintaining a clean and inviting exterior. A clean drive-thru area not only improves the appearance of your establishment but also creates a safer and more pleasant experience for your customers.
Boss Power Wash LLC offers comprehensive drive-thru cleaning services for businesses in Orlando, including restaurants, banks, and other establishments with drive-thru lanes. We use specialized pressure washing techniques to remove grease, oil stains, dirt, and debris that can accumulate in high-traffic areas like drive-thru lanes. Here’s why drive-thru cleaning is essential for your business:
Enhances Curb Appeal: The exterior of your business, including your drive-thru, is the first impression customers have of your establishment. A clean, well-maintained drive-thru area signals to customers that you care about their experience, creating a welcoming environment.
Improves Safety: Drive-thru lanes can become slippery due to oil spills, grease buildup, and wet debris. Regular cleaning eliminates these hazards, improving safety for both your customers and employees.
Prevents Long-Term Damage: Without regular cleaning, oil and grease can damage the surface of your drive-thru lane, causing discoloration and deterioration. Pressure washing removes these substances before they cause lasting damage, helping to extend the lifespan of your pavement.
				        
				        
				        
				        
				        5 - 
				    					
					
					US Comfort Building Services: Premier Electrician and Plumbing Services in Los Angeles
At US Comfort Building Services, we are dedicated to delivering high-quality service for both electrical and plumbing needs throughout the Los Angeles area. Whether you're dealing with an electrical issue or in need of a plumbing repair, we are the trusted name in the industry. Our expert team is here to ensure your home or business remains safe, functional, and comfortable at all times.
Located at 5455 Wilshire Blvd, 21st floor #118, Los Angeles, CA 90036, we are proud to offer our top-notch services to all of Los Angeles. Whether you're looking for a reliable electrician in Los Angeles or need professional plumbing service repair Los Angeles, we have you covered.
Electrician in Los Angeles: Professional Electrical Services You Can Trust
At US Comfort Building Services, our team of electricians in Los Angeles is committed to providing safe and effective electrical solutions for both residential and commercial properties. Whether you're in need of minor electrical repairs or major upgrades, our certified and experienced electricians can handle all of your electrical needs.
We understand the importance of having a fully functional electrical system, and our team is dedicated to ensuring your home or business operates smoothly without any electrical disruptions. Our services include circuit breaker repairs, lighting installation, electrical panel upgrades, and much more. If you’re looking for a reliable electrician in Los Angeles, look no further than US Comfort Building Services.
Plumbing Service Repair in Los Angeles: Expert Plumbing Solutions
When it comes to plumbing, US Comfort Building Services is your go-to provider for plumbing service repair in Los Angeles. Our team of professional plumbers in Los Angeles is ready to tackle any plumbing problem, whether it's a leaky faucet, clogged drain, or a more complex issue like pipe damage or water heater failure.
We understand the inconvenience and stress plumbing issues can cause, which is why we work quickly and efficiently to resolve problems and restore your plumbing systems to full working order. Whether you're dealing with a minor repair or need an emergency plumbing service, our team is available to help you at any time.
Drain Cleaning in Los Angeles: Keep Your Drains Flowing Smoothly
Blocked or slow drains are a common issue that homeowners and business owners face. That’s where drain cleaning in Los Angeles from US Comfort Building Services comes in. Our expert team offers thorough and professional drain cleaning service in Los Angeles to ensure your drains remain free of clogs and your plumbing system stays in top shape.
If you're experiencing slow drainage, unpleasant odors, or frequent blockages, it’s time to schedule a drain cleaning service. We use the latest techniques and tools, such as hydro jetting, to clear out even the most stubborn blockages and ensure your drains are working properly.
Why Choose US Comfort Building Services?
Experienced Professionals: Our electricians in Los Angeles and plumbers in Los Angeles are highly trained and experienced in handling all kinds of electrical and plumbing issues.
Fast and Reliable Service: We understand that electrical and plumbing issues can't wait. That's why we offer quick, reliable services to ensure your problems are solved as soon as possible.
Affordable Pricing: We offer competitive rates for our services, ensuring that you get exceptional value for your money without compromising on quality.
Licensed and Insured: We are a fully licensed and insured service provider, giving you peace of mind knowing your property is in good hands.
Contact Us Today for All Your Electrical and Plumbing Needs
For the best electricians in Los Angeles and expert plumbing service repair Los Angeles, drain cleaning Los Angeles, and more, US Comfort Building Services is your trusted provider. We are committed to ensuring your property stays comfortable, functional, and safe year-round.
Call us today at +1 800-738-4160 to schedule an appointment or to learn more about our comprehensive services. Whether you're dealing with electrical issues, plumbing problems, or clogged drains, we have the experience and expertise to get the job done right!
Let us take care of all your electrical and plumbing needs so you can focus on what matters most.3 - 
				    					
					
					FamLee Pressure Washing Services: Best Pressure Washing Services Near Fulton, MO & Affordable House Washing in Mexico, MO
At FamLee Pressure Washing Services, we take pride in providing the best pressure washing services near Fulton, MO and affordable house washing in Mexico, MO. Whether you need to clean your home’s exterior, remove grime from your driveway, or restore the look of your deck, we offer expert cleaning solutions that are designed to deliver outstanding results. Our team of professionals uses the latest pressure washing technology to ensure your property is spotless, protected, and well-maintained.
Why Choose FamLee Pressure Washing Services?
When it comes to pressure washing near Fulton, MO, and house washing in Mexico, MO, FamLee Pressure Washing Services is the trusted name for residents and business owners alike. Here’s why our customers choose us for their pressure washing needs:
Experienced and Professional Team Our skilled technicians are trained to handle a wide range of pressure washing tasks, ensuring that your home and property are treated with the utmost care. We understand the specifics of different surfaces, and we tailor our services to suit each project.
Affordable Pricing We believe that quality pressure washing services should be accessible to everyone. Whether you're looking for house washing in Mexico, MO, or pressure washing near Fulton, MO, we offer competitive pricing that doesn’t break the bank. We also provide free estimates, so you know exactly what to expect.
Comprehensive Services At FamLee Pressure Washing Services, we offer a variety of services to meet your specific needs, including:
House washing
Driveway cleaning
Deck and patio cleaning
Roof and gutter cleaning
Commercial and residential pressure washing
Eco-Friendly Cleaning Solutions We use eco-friendly cleaning agents that are safe for your property and the environment. You can trust us to provide a thorough cleaning without causing harm to the surrounding landscape or ecosystem.
Top-Quality Equipment We use state-of-the-art pressure washing equipment to deliver superior results. Whether it’s a residential property or a larger commercial project, we have the right tools to get the job done efficiently.
Customer Satisfaction Guarantee We are committed to delivering exceptional results on every project. Our goal is to exceed your expectations, and we’ll work hard to ensure you're completely satisfied with our services.
Best Pressure Washing Services Near Fulton, MO
If you’re looking for the best pressure washing services near Fulton, MO, look no further than FamLee Pressure Washing Services. We specialize in providing top-notch pressure washing services to homeowners and businesses in Fulton and surrounding areas. Our services include:
Exterior House Cleaning: We offer comprehensive house washing services to remove dirt, mildew, mold, and other contaminants from your home’s exterior. This not only enhances curb appeal but also helps protect your property from potential damage caused by these elements.
Driveway and Walkway Cleaning: Over time, driveways and walkways can accumulate stains from oil, dirt, and other debris. Our pressure washing techniques restore these surfaces to their original condition, giving your home a fresh look.
Deck and Patio Washing: Your deck or patio is an outdoor space that deserves attention. Whether it’s covered with dirt, algae, or grime, we can clean and revitalize it, making it a great place to relax again.
Roof and Gutter Cleaning: Regular roof and gutter maintenance is essential to keeping your home protected. Our pressure washing service will safely remove debris, leaves, and moss, helping to avoid costly repairs down the road.
Affordable House Washing in Mexico, MO
Is your home in need of a thorough cleaning? At FamLee Pressure Washing Services, we provide affordable house washing in Mexico, MO, to help keep your home looking beautiful and well-maintained. Regular pressure washing is an important part of home upkeep, and our affordable services ensure that your home gets the attention it deserves.
Why is House Washing Important?
Improved Curb Appeal: The exterior of your home is the first thing people notice, and a clean home can significantly improve its overall appearance. Whether you're preparing to sell or just want to enjoy a fresh, clean look, house washing is a simple solution to boost curb appeal.
Prevent Damage: Dirt, mold, mildew, and algae can build up on the exterior of your home, which can lead to long-term damage. Regular house washing prevents these contaminants from eating away at your siding, walls, and foundation.
				        
				        
				        
				        
				        1 - 
				    					
					
					Pure Pressure Wash Co LLC: Professional Gutter Cleaning Services in Thousand Oaks, CA
At Pure Pressure Wash Co LLC, we understand the importance of maintaining the health and integrity of your home or business, and one key aspect of property maintenance that’s often overlooked is gutter cleaning. Gutters are designed to protect your property by channeling rainwater away from your roof, walls, and foundation, but over time, they can become clogged with leaves, twigs, dirt, and other debris. When this happens, your gutters can no longer do their job effectively, leading to potential damage to your roof, walls, and even your foundation. That's where we come in.
Serving Thousand Oaks, California, and the surrounding areas, Pure Pressure Wash Co LLC offers professional gutter cleaning services to keep your property safe and protected. Our team uses the latest tools and techniques to ensure your gutters are clear, functioning properly, and free of debris, so you can avoid costly repairs down the road.
Why Gutter Cleaning is Essential
Your gutters play a critical role in maintaining the structural integrity of your property. When they are clogged or damaged, it can lead to a number of issues, including:
Water Damage to the Roof
When gutters are clogged, water can back up onto your roof. Over time, this can cause roof leaks, rotting shingles, and mold growth, which can compromise the entire roofing structure. Regular gutter cleaning prevents water from accumulating on your roof and causing expensive damage.
Foundation Problems
Gutters that are full of debris can cause rainwater to spill over the edges and pool around the foundation of your home. This excess water can seep into the ground, leading to soil erosion and cracks in your foundation, which can be costly to repair.
Landscape Damage
Overflowing gutters can also damage your landscaping by directing water to areas where it shouldn’t be. Erosion, over-watering, and soil displacement can harm your plants, garden beds, and lawn.
Mold and Mildew Growth
When water is trapped in clogged gutters, it can create a perfect breeding ground for mold and mildew. Over time, this can spread to other parts of your home, causing health issues and further property damage.
Pest Infestations
Clogged gutters are also a haven for pests, including mosquitoes, ants, rodents, and even birds. Standing water in gutters provides a place for mosquitoes to breed, while leaves and debris attract rodents looking for shelter. Gutter cleaning ensures that these unwanted guests don’t make your gutters their home.
Why Choose Pure Pressure Wash Co LLC for Gutter Cleaning?
At Pure Pressure Wash Co LLC, we pride ourselves on providing top-notch gutter cleaning services that ensure your property stays in great shape year-round. Here’s why homeowners and businesses in Thousand Oaks trust us for all their gutter cleaning needs:
Experienced Technicians: Our team of professionals is highly trained in gutter cleaning, ensuring that we remove debris thoroughly and safely. We use the best tools and techniques to get the job done right the first time, whether your gutters are hard to reach or heavily clogged.
Thorough Inspection: We don’t just clean your gutters—we also inspect them for any damage, such as cracks, leaks, or loose hangers. If we find any issues, we’ll notify you so you can address them before they become bigger problems.
Safe and Efficient: Gutter cleaning can be dangerous, especially if your gutters are high up or hard to access. Our team is equipped with the proper safety gear and tools to safely clean your gutters, ensuring a job well done without risking injury.
Eco-Friendly Practices: We’re committed to protecting the environment, which is why we use eco-friendly cleaning products and methods. We also dispose of debris in a responsible manner, ensuring that nothing goes to waste.
Affordable Pricing: We believe that gutter cleaning should be affordable, and we offer competitive, transparent pricing with no hidden fees. You’ll receive a free estimate before we start the job, so you know exactly what to expect.
Comprehensive Services: In addition to gutter cleaning, we also offer gutter maintenance and repair services. If your gutters need minor repairs or adjustments, we can handle it while we’re on-site, ensuring that your gutters function optimally year-round.
Our Gutter Cleaning Process
We follow a systematic approach to ensure that your gutters are thoroughly cleaned and working efficiently. Here’s what you can expect when you hire Pure Pressure Wash Co LLC for gutter cleaning:
Initial Inspection
We start by inspecting your gutters to assess the level of cleaning required. We check for blockages, damage, and potential problem areas, ensuring that we address any issues as part of the service.
				        
				        
				        
				        
				        5 - 
				    					
					
					Shine On: Pressure Washing, Landscaping, & More! – Expert Driveway Cleaning, Driveway Washing, and Fence Cleaning Services in Williamsville, NY
At Shine On: Pressure Washing, Landscaping, & More!, we specialize in providing top-quality exterior cleaning services for both residential and commercial properties throughout Williamsville, NY, and the greater Buffalo area. Whether it’s driveway cleaning, driveway washing, or fence cleaning, our expert team is here to help restore the beauty and cleanliness of your outdoor spaces with professional, reliable services.
Driveway Cleaning: Restore the Beauty of Your Driveway
Your driveway is one of the first things people notice about your property, and over time, it can accumulate dirt, stains, oil, grease, and grime. Driveway cleaning is the most effective way to keep your driveway looking fresh and welcoming. At Shine On, we use high-powered pressure washing equipment and eco-friendly cleaning solutions to remove dirt, oil spots, and other contaminants from your driveway surfaces. Whether you have a concrete, asphalt, or brick driveway, we have the right tools and expertise to get it clean without causing any damage.
Benefits of Driveway Cleaning:
Remove Stubborn Stains: Oil, grease, and tire marks can stain your driveway. Our driveway cleaning services effectively remove these tough stains and restore your driveway’s appearance.
Enhance Curb Appeal: A clean driveway boosts the overall look of your property, making it more inviting and appealing to visitors and potential buyers.
Prevent Long-Term Damage: Regular cleaning helps prevent the buildup of dirt, grime, and moss that can degrade your driveway over time.
Increase Safety: A clean driveway eliminates the slippery buildup of algae and moss, reducing the risk of slips and falls.
Driveway Washing: A Fresh, Clean Start for Your Driveway
Driveway washing is the best way to ensure your driveway stays clean and free of contaminants that can cause long-term damage. Our driveway washing services involve using high-pressure water to remove stubborn dirt, stains, and debris. Whether it’s a concrete driveway that’s become discolored or an asphalt driveway covered in dirt and grime, Shine On has the equipment and experience needed to bring it back to life.
Why You Need Driveway Washing:
Restore the Surface: Regular washing helps restore your driveway’s color and texture, giving it a clean, refreshed appearance.
Extend the Life of Your Driveway: By keeping your driveway clean and free of damaging contaminants, you help extend its lifespan and prevent costly repairs.
Increase Property Value: A well-maintained driveway can significantly increase the curb appeal and value of your property.
Fence Cleaning: Bring Back the Natural Beauty of Your Fence
Fences are a key element of your property’s exterior, providing both security and aesthetic appeal. However, over time, dirt, algae, mold, and mildew can build up on your fence, making it look dull and weathered. Fence cleaning is essential to restore the original beauty of your fence and protect it from damage.
At Shine On, we provide professional fence cleaning services that remove dirt, stains, mold, and mildew from all types of fences, including wood, vinyl, and metal. Our team uses safe, eco-friendly cleaning solutions combined with high-pressure washing to ensure that your fence is thoroughly cleaned without causing any damage to the material.
Why Fence Cleaning is Essential:
Restore Aesthetic Appeal: A clean fence enhances the overall look of your property, making it more attractive and inviting.
Prevent Long-Term Damage: Regular fence cleaning helps prevent the growth of mold, mildew, and algae, which can cause wood to rot and metal to rust.
Protect Your Investment: Cleaning your fence regularly helps preserve its condition and extends its life, saving you money on costly repairs or replacements.
Healthier Environment: Removing mold and mildew from your fence helps improve outdoor air quality and prevents the spread of allergens.
Why Choose Shine On for Driveway Cleaning, Driveway Washing, and Fence Cleaning?
Experienced Professionals: Our team has years of experience in driveway cleaning, driveway washing, and fence cleaning, ensuring a high-quality clean for every job.1 - 
				    					
					
					Foundation Contractors in San Antonio: The Best Choice for Your Foundation Repair Needs
When your home or business starts showing signs of foundation issues, it’s crucial to seek out a reliable and experienced foundation contractor. Whether you're dealing with cracks in your walls, uneven floors, or doors and windows that no longer close properly, these issues can indicate serious foundation problems. At San Antonio Foundation Repair, we are proud to be one of the leading foundation contractors in San Antonio, offering expert solutions to keep your property stable, secure, and protected.
Why Choose Us as Your Foundation Contractors in San Antonio?
Choosing the right contractor for foundation repairs is no small decision. At San Antonio Foundation Repair, we have built a reputation for delivering the best foundation repair in San Antonio, thanks to our years of experience, expert team, and commitment to customer satisfaction.
We specialize in diagnosing and fixing all types of foundation issues, and we use only the latest tools and techniques to ensure durable, long-lasting repairs. Whether it's a simple crack or a more complex problem, we have the knowledge and expertise to handle it.
Our Comprehensive Foundation Repair Services
As the most trusted foundation contractors in San Antonio, we offer a wide range of foundation repair services to suit your needs. From residential to commercial properties, our team has the experience and skills to fix a variety of foundation problems. Our services include:
Slab Foundation Repair: We can address shifting, sinking, or settling slab foundations using advanced repair methods, restoring your foundation’s stability with minimal disruption.
Pier and Beam Foundation Repair: If your home has a pier and beam foundation, our team can replace or reinforce the supports to restore the level and structural integrity of your property.
Crack Repair: Cracks in your foundation are a serious concern that can lead to moisture intrusion and further damage. We provide expert crack repair services to prevent these issues from escalating.
Leveling and Stabilization: Whether your foundation is sinking or lifting, we can accurately level and stabilize it using the latest technology and techniques, ensuring a solid foundation for years to come.
Drainage Solutions: Proper drainage is essential to prevent soil movement beneath your foundation. We offer grading services and French drains to help protect your property from water damage and foundation issues.
Why We Are the Best Foundation Repair in San Antonio
At San Antonio Foundation Repair, we believe that quality, customer satisfaction, and expertise are the keys to being the best. We pride ourselves on providing thorough, honest, and reliable foundation repair services. Here’s why we are considered the best foundation repair in San Antonio:
Experienced Technicians: Our team of certified and trained technicians has extensive experience in foundation repair, ensuring that every job is completed to the highest standards.
Comprehensive Assessments: We offer detailed foundation inspections to assess the root causes of your foundation issues, providing you with the most effective and cost-efficient solutions.
Cutting-Edge Techniques: We use the latest technology and methods in the foundation repair industry, ensuring long-lasting, stable results.
Affordable Solutions: We understand the importance of budgeting for repairs, which is why we offer competitive pricing without compromising on quality.
Excellent Customer Service: We take pride in our commitment to outstanding customer service. From the first consultation to the final repair, we guide you every step of the way.
Get the Best Foundation Repair in San Antonio Today
If you're in need of foundation contractors in San Antonio, look no further than San Antonio Foundation Repair. We’re here to help you with all of your foundation repair needs, providing you with peace of mind and a stable foundation for years to come.
Don’t wait for foundation problems to get worse. Call us today at +1 210-405-3117 to schedule an inspection and receive a free, no-obligation estimate. Let us show you why we’re the best foundation repair in San Antonio.2 - 
				    					
					
					Wild Tree Solutions: Your Trusted Tree Care Provider in Tigard, Oregon
At Wild Tree Solutions, we specialize in providing expert tree services to residents and businesses in Tigard, Oregon. Whether you need tree cutting, emergency tree removal, or ongoing tree maintenance, our team of certified arborists is here to ensure your trees stay healthy, safe, and beautiful. Based in Hillsboro, we are proud to serve the greater Tigard area with high-quality, affordable tree services tailored to meet the unique needs of each client.
Tree Cutting Tigard: Precision and Safety
If you have a tree that needs to be removed or trimmed, tree cutting in Tigard should always be done by professionals. Cutting down or trimming trees requires skill, proper equipment, and an understanding of how to do the job safely. Whether you need to remove a hazardous tree, clear space for construction, or simply want to shape your trees for aesthetic purposes, Wild Tree Solutions provides expert tree cutting services in Tigard. Our team uses advanced tools and techniques to ensure the job is done efficiently, safely, and with minimal disruption to your landscape.
Arborist Services Tigard: Expert Tree Care by Certified Arborists
When it comes to the health of your trees, it’s important to work with a certified arborist. At Wild Tree Solutions, our team of professional arborists provides top-notch arborist services in Tigard. We assess the condition of your trees, provide expert advice on the best care practices, and offer solutions to keep your trees healthy. Whether you need guidance on tree planting, disease treatment, or overall tree maintenance, our certified arborists are here to help. We’re committed to providing personalized care for your trees to ensure their long-term health and beauty.
Emergency Tree Removal Tigard: Quick and Safe Solutions
Unexpected events such as storms, high winds, or other environmental factors can sometimes cause trees to become dangerous or pose a risk to your property. If you find yourself in need of emergency tree removal in Tigard, Wild Tree Solutions is available to assist you quickly and efficiently. Our team is equipped to handle urgent situations, ensuring the safe removal of fallen or damaged trees that could otherwise cause harm to your home or yard. We’re dedicated to responding swiftly to your emergency and taking the necessary precautions to avoid further damage.
Tree Health Services Tigard: Promoting Strong, Healthy Trees
At Wild Tree Solutions, we believe that healthy trees are the foundation of a thriving landscape. Our tree health services in Tigard are designed to prevent and treat a variety of tree health issues, from pest infestations to disease outbreaks. Whether your tree is showing signs of stress, or you just want to maintain its vitality, our team will conduct a thorough assessment to identify any potential issues. We offer tree disease treatment, fertilization, and other health-focused services that promote the longevity and beauty of your trees.
Tree Planting Tigard: Adding New Life to Your Landscape
Adding new trees to your property can enhance both its beauty and value. If you're considering tree planting in Tigard, Wild Tree Solutions is here to help you choose the best tree species for your yard and ensure proper planting techniques. We understand that tree planting goes beyond just putting a sapling in the ground—it’s about ensuring your new tree has the best chance to grow healthy and strong. Our team will assess your soil, climate, and space to select the right type of tree and plant it properly to encourage optimal growth.
Tree Maintenance Tigard: Keeping Your Trees in Top Condition
Maintaining your trees is essential to ensure they continue to grow strong, healthy, and beautiful for years to come. Our tree maintenance services in Tigard include everything from regular trimming to disease prevention and soil care. Routine maintenance can help prevent future issues, including overgrowth, disease, and pest infestations. Whether you need periodic tree pruning, tree trimming, or general care to improve the health of your trees, we have the expertise to keep your landscape in excellent condition.
Affordable Tree Services Tigard: Quality Care Within Your Budget
At Wild Tree Solutions, we understand the importance of providing affordable tree services in Tigard without sacrificing quality. Whether you need tree removal, trimming, or maintenance, we offer competitive pricing to ensure that tree care is accessible to all. Our team will provide a free estimate and work with you to find solutions that meet both your needs and your budget. We believe that professional tree care should be both effective and affordable, and we strive to make that a reality for every customer.1 - 
				    					
					
					When you’re in need of reliable, fast, and professional locksmith services in Fort Lauderdale, Local Locksmiths is your go to provider. With years of experience serving the Fort Lauderdale area, we understand the importance of security and ensuring that your property, whether it's your home, office, or vehicle, is safe and secure. Our team is committed to offering top notch locksmith services at affordable prices, making us the most trusted locksmith in Fort Lauderdale.
Why Choose Local Locksmiths?
At Local Locksmiths, we pride ourselves on our customer first approach. Here’s why we stand out from other locksmith services:
Fast Response Time: Lockouts and security issues can happen at any time. Our expert locksmiths are always ready to respond quickly to any emergency. Whether it’s a car lockout or a home lock problem, we are here to help with a fast, reliable solution.
Comprehensive Services: We offer a wide range of locksmith services to meet your needs. From residential to commercial and automotive locksmith services, we handle it all. Whether you need a lock replacement, rekeying services, or a key duplication, we have the expertise to get the job done right.
Expert Technicians: Our team of licensed and trained locksmiths has the skills and knowledge to solve any lock related issue. They are equipped with the latest tools and techniques to provide efficient and effective solutions.
Affordable Pricing: We understand that security services can be an unexpected expense, which is why we offer competitive and transparent pricing. You can count on Local Locksmiths to deliver high quality services without breaking the bank.
Emergency Locksmith Services: Locked out of your car or home? We offer 24/7 emergency locksmith services in Fort Lauderdale. Day or night, our locksmiths are always available to assist you with your urgent lock and key needs.
Our Services
Residential Locksmith: From installing new locks to rekeying your home, we ensure your property is protected with the best security measures.
Commercial Locksmith: We provide a variety of services for businesses, including master key systems, access control systems, and high security lock installation.
Automotive Locksmith: Locked out of your car or lost your keys? Our automotive locksmith services cover all makes and models, helping you get back on the road quickly.
Emergency Services: When you’re in a pinch, you can rely on us for 24/7 emergency lockout services and other urgent locksmith needs.
Serving Fort Lauderdale and Beyond
While our business is based at 1000 NE 12th Ave, Hallandale Beach, FL, we proudly serve Fort Lauderdale and the surrounding areas. Our proximity to Fort Lauderdale ensures we can respond to your locksmith needs quickly and efficiently. We’re just a call away at +17545511841, ready to provide you with fast, professional service.
Contact Local Locksmiths Today
Don’t let lock issues cause you unnecessary stress. Whether you need a simple key replacement or emergency locksmith services, Local Locksmiths is here to help. With our expertise, commitment to customer satisfaction, and affordable pricing, we’re your trusted locksmiths in Fort Lauderdale. Contact us now at +17545511841 for all your locksmith needs.
For reliable, fast, and professional locksmith services, choose Local Locksmiths your trusted partner in Fort Lauderdale.2 - 
				    					
					
					Needing some career advice.
Hey guys I'm 21 years old and currently on my third year studying Information Systems. For the past two I've been working either on internships or freelancing, at this time I've worked on around 10 projects, some for big companies. During that time I managed to get experience on many languages and tools and although I'm no expert on any, I've gained confidence to approach problems better, analyze them and project solutions.
Right now I'm thinking about searching for a remote job, as I live in Brazil and salaries here are not good.
Any advice on getting a job?1 - 
				    					
					
					Titan Carpet Cleaning Service: Your Trusted Local Experts for Carpet and Rug Cleaning in Victoria, BC
When it comes to maintaining clean, healthy carpets and rugs, Titan Carpet Cleaning Service is your go-to solution in Victoria, BC. As local professionals with years of experience, we specialize in carpet steam cleaning Victoria, affordable rug cleaning Victoria BC, and comprehensive carpet care Victoria BC. Whether you’re looking for residential cleaning or expert rug care, we provide a range of services that will leave your home or office looking spotless and smelling fresh.
Carpet Steam Cleaning Victoria: Deep Clean Your Carpets Like Never Before
If you're looking for the best way to keep your carpets fresh, clean, and hygienic, carpet steam cleaning Victoria is the answer. Steam cleaning is one of the most effective ways to eliminate dirt, allergens, stains, and bacteria from deep within your carpets. At Titan Carpet Cleaning Service, we use advanced steam cleaning technology to penetrate deep into the fibers of your carpet, lifting dirt and contaminants while preserving the integrity of the fabric.
Our carpet steam cleaning Victoria service is safe, effective, and eco-friendly. We use only non-toxic and biodegradable cleaning products, ensuring your carpets are not only clean but also free from harsh chemicals.
Local Victoria BC Carpet Cleaners: Expertise You Can Trust
As local Victoria BC carpet cleaners, we are deeply invested in our community and take pride in offering exceptional service to our neighbors. When you choose Titan Carpet Cleaning Service, you are supporting a local business that understands the unique needs of Victoria residents. Our team is committed to providing reliable, top-quality service that’s tailored to your specific cleaning needs.
We understand that each carpet is different, which is why we take the time to assess your carpets before recommending the best cleaning method. Whether it's a delicate wool carpet or a high-traffic area rug, our professionals know how to treat each fabric type with the care it deserves.
Best Rug Cleaning Victoria BC: Caring for Your Precious Rugs
Your rugs are an important part of your home’s décor, and they deserve the best care. When it comes to the best rug cleaning Victoria BC, Titan Carpet Cleaning Service is here to provide professional care for all types of rugs. From Persian and oriental rugs to modern area rugs, we have the expertise to clean them thoroughly and restore their beauty.
Our rug cleaning process involves gentle, yet effective methods that remove dirt, stains, and odors without damaging delicate fibers. We treat each rug individually, ensuring it receives the attention it needs to look its best. If you're looking for the best rug cleaning Victoria BC, look no further than Titan Carpet Cleaning Service.
Carpet Cleaning for Homes Victoria BC: Keep Your Home Fresh and Healthy
Your home deserves the best when it comes to carpet cleaning for homes Victoria BC. At Titan Carpet Cleaning Service, we offer tailored carpet cleaning solutions designed to keep your home clean, fresh, and free from allergens. Whether you need a one-time deep clean, routine maintenance, or a thorough stain removal service, we have the tools and expertise to get the job done right.
Our services are ideal for homes with pets, children, or high foot traffic, as we focus on removing dirt, stains, and allergens that can affect your family’s health. We also offer fast, same-day carpet cleaning Victoria services for when you need a quick and efficient solution to unexpected messes.
Carpet Care Victoria BC: Protect Your Investment
Your carpets are an investment in your home, and proper carpet care Victoria BC is essential to prolonging their lifespan. Regular cleaning and maintenance can help prevent wear and tear, reduce the buildup of dirt and allergens, and keep your carpets looking vibrant for years.
At Titan Carpet Cleaning Service, we offer professional carpet care solutions that help protect your carpets from damage. We also provide advice on proper carpet maintenance, including tips for preventing stains and extending the life of your carpets. Whether you’re looking for deep cleaning or simple upkeep, we’re here to help you preserve the quality and appearance of your carpets.
Affordable Rug Cleaning Victoria BC: Quality Service at a Price You Can Afford
At Titan Carpet Cleaning Service, we believe that high-quality cleaning should be affordable. That’s why we offer affordable rug cleaning Victoria BC without compromising on the quality of service. Whether you need a single rug cleaned or a whole room of rugs and carpets, our pricing is transparent and competitive, giving you excellent value for your money.
				        
				        
				        
				        
				        1 - 
				    					
					
					How to Create Beautiful and Durable Pie Boxes
Whether you are looking for a unique gift to give, or you are looking to protect the delicate items you hold, there are many ways to do so with the right pie boxes. By using a custom designed box, you can capture the essence of the delicacies you are storing and protect them for a longer period of time.
Protect delicate items
Using pie boxes is a good way to protect delicate items such as pies, cakes and desserts. However, you need to be sure that the box is the right size and shape to ensure that your item is safely packed. If you don't pack your delicate products properly, they could suffer from moisture and change in temperature.
Before you begin packing your goods, consider whether you should use bubble wrap or paper. While bubble wrap provides an extra layer of protection, it can also leave your product vulnerable to scratching. Choose paper to wrap your items, as it will prevent scratches and will keep them from shifting during transport.
When wrapping fragile items, you need to use a lot of packing tape to secure your package. You should also fill any empty space in the box. You can do this by using bubble wrap, or by adding extra padding. Make sure to mark your box as fragile and to place a label with your name and delivery address on all sides of the box.
Once you've completed the packaging process, you need to seal the box and place it in the shipping box. Besides bubble wrap, you may also want to include ice packs to add extra protection. A cushioned ice pack is another option for additional protection.
You should also use quality packing tape, and make sure to cover all the openings of your box. You can also use zip-up bags to help you keep your things in place.
It is important to know the best way to protect delicate items, so you can prevent them from damage during the shipping process. There are many ways to do this, but you should use the right tools for the job. Purchasing a box that is the right size and shape for your items is the most effective way to do it.
When you use custom pie boxes, you can rest assured that your pies, chocolate pies and other edibles will be safe. They're manufactured with modern equipment and environmentally friendly printing techniques.
Make a gift
Whether you are giving a pie for a birthday, wedding, or as a thank you gift, you can make pie boxes that are beautiful and durable. Several pie box designs are available online, but you can also create your own. Here are some simple instructions to make a simple, yet elegant box.
The first step is to print out a template of a pie box. You can use a piece of scrap paper or decorative paper for your design. If you are using decorative paper, cut out a rectangle the size of your box. If you are using colored cardstock, you will need to cut out a pie filling layer. Once you have a pie filling layer, copy it for several boxes. You can also add other designs or embellishments to your boxes.
Next, place your colored cardstock on your cutting mat. With your x-acto knife, cut out a rectangle that is as large as your box. You will need to fold it on the dotted line. If you are using an x-acto knife, it will be easier to fold the box. Alternatively, you can use a scoring stylus. If you have a Cricut, you can score the cardstock to make a scalloped box top. You can also use burlap ribbon or twine to wrap your box.
Once you have the box finished, you can decorate it with other decorations or embellishments. You can even use calligraphy or other techniques to make the box more special. To close the box, you will need a sticker or piece of tape. You can decorate the lid with patterned paper and a clear plastic screen. This will allow you to see the contents of your pie. You can also use embellishments such as ribbon, glitter, or other materials to make the box more fun.
If you are giving a pie for a holiday or party, you can decorate your box with a festive theme. For example, you can have a holiday tree on the front of your box. Or, you can dress it up for a tailgate party.2 - 
				    					
					
					Rapid Tyre Rescue: Expert Tyre Assistance When You Need It the Most
At Rapid Tyre Rescue, we understand the frustration of dealing with a tyre blowout or a flat tyre at the most inconvenient times. Whether you’re on the side of the road, in your driveway, or stuck at work, we offer a full range of services to get you back on the road in no time. Serving Slough and the surrounding areas, we provide reliable, fast, and efficient tyre blowout assistance, flat tyre repair service, mobile tyre replacement, and mobile tyre repair services.
Tyre Blowout Assistance: Fast Response When You’re Stranded
A tyre blowout can happen at the most unexpected moments, often leaving you stranded and unsure of what to do next. Fortunately, Rapid Tyre Rescue offers tyre blowout assistance at any hour of the day or night. Our team is available to quickly respond and help you safely manage the situation. With our mobile units and professional technicians, we’ll come to your location and provide you with expert assistance, ensuring you're back on the road safely and as quickly as possible.
Flat Tyre Repair Service: Quick and Professional
If you’re facing the inconvenience of a flat tyre, Rapid Tyre Rescue has got you covered. Our flat tyre repair service is designed to save you time and hassle. Whether you’re at home, work, or on the road, our mobile service will come to your location and repair the tyre on the spot. We carry a variety of tools and equipment to handle punctures and other common flat tyre issues. In cases where a repair isn't possible, we can offer a swift tyre replacement to get you moving again.
Mobile Tyre Replacement: On-the-Spot Solutions
Don’t want to deal with the hassle of driving to a garage for a tyre replacement? With our mobile tyre replacement service, we bring the tyre shop to you! Whether you’re stuck at home, in a parking lot, or on the side of the road, Rapid Tyre Rescue can replace your tyres without you having to leave your location. We carry a wide selection of tyres in various sizes and brands to suit your vehicle's needs. Our team will arrive fully equipped to complete the job quickly and efficiently, so you can get back on your journey without delay.
Mobile Tyre Repair: Fast Solutions at Your Doorstep
Dealing with tyre damage when you're not near a garage can be incredibly frustrating. But with our mobile tyre repair service, we take the stress out of the situation. Our skilled technicians can assess the damage to your tyre and provide effective repairs right at your location. Whether it’s a simple puncture or a more complex issue, we’ll bring the tools and expertise to handle it all. Plus, if the tyre is beyond repair, we can replace it on the spot with minimal disruption to your day.
Why Choose Rapid Tyre Rescue?
Convenience: Our mobile tyre services mean you don’t have to go to a garage – we come to you!
Expert Technicians: All of our team members are highly trained and experienced in handling tyre blowouts, flat tyres, and other issues.
Speedy Service: We understand that time is of the essence. That’s why we aim to respond quickly and get you back on the road fast.
Affordable: We offer competitive rates for all of our services, ensuring that you get the best value without compromising on quality.
24/7 Availability: Our services are available around the clock, so you can rely on us for assistance, no matter the time.
Get in Touch with Rapid Tyre Rescue
When you need tyre blowout assistance, flat tyre repair service, mobile tyre replacement, or mobile tyre repair, don’t hesitate to reach out to Rapid Tyre Rescue. We’re committed to providing you with fast, reliable, and professional service. You can contact us at +44 7482 742906 or visit our business address at 94 Farnham Rd, Slough SL1 3FQ, United Kingdom. Let us help you get back on the road quickly and safely!11 - 
				    					
					
					A1 Auto Spa: Your Top Choice for Car Detailing Near Me in Brampton
At A1 Auto Spa we understand the search for “car detailing near me” means you want convenient, professional service close to home. Located on Parity Rd, Brampton, ON L6X 5M5, Canada, our facility offers comprehensive car detailing solutions designed to restore your vehicle’s appearance, protect its finish, and exceed your expectations—all within minutes of your neighborhood.
Complete Exterior and Interior Detailing
Our car detailing near me services include a full suite of exterior and interior treatments tailored to your needs. Exterior detailing begins with a hand wash and decontamination using pH-balanced shampoos and clay-bar treatment to remove pollutants. Paint correction and polishing eliminate swirl marks and light scratches before applying a protective wax or sealant. Wheels and tires receive specialized cleaners and dressings to enhance curb appeal. Interior detailing covers vacuuming, steam extraction, and fabric shampooing to remove dirt, stains, and allergens. Leather surfaces are cleaned and conditioned, and dashboards, consoles, and trim are treated with UV-resistant protectants. Every service is performed by certified technicians following a multi-step protocol for consistent, high-quality results.
Mobile and On-Site Convenience
Searching for “car detailing near me” often means you need flexibility in location and timing. A1 Auto Spa offers both in-shop and mobile car detailing near me options. Our fully equipped service vans travel throughout Brampton to deliver the same premium detailing packages at your home or workplace. All water, power, and eco-friendly products are carried on board, ensuring no compromise in quality or environmental responsibility.
Transparent Pricing and Custom Packages
We know that finding “car detailing near me” should not mean hidden fees or surprises. A1 Auto Spa provides clear, competitive pricing and customizable packages. Choose from individual services—such as exterior wash, interior deep clean, paint correction, or ceramic coating—or select a complete detail package for full interior and exterior rejuvenation. Our staff will explain each option and recommend the ideal combination to fit your budget and vehicle condition.
Local Expertise and Quality Assurance
When you search “car detailing near me” you deserve a team that knows Brampton roads, weather, and environmental factors. Our technicians understand local conditions—from winter road salt to summer pollen—and select products and methods optimized for lasting protection. Every detail job undergoes a 20-point quality inspection to ensure polish, clarity, and cleanliness meet our rigorous standards.
Why Choose A1 Auto Spa
Local Convenience and Reliability
Our Brampton facility and mobile service vans make “car detailing near me” a seamless experience.
Certified Technicians and Premium Products
We use industry-leading tools, eco-friendly cleaners, and advanced coatings for salon-quality results.
Customized Detailing Packages
Pick only the services you need or choose a comprehensive package for full restoration and protection.
Eco-Responsible Practices
Biodegradable solutions and water-efficient techniques demonstrate our commitment to the environment.
100% Satisfaction Guarantee
If any aspect of your detail does not meet your expectations, we’ll return at no extra charge to make it right.
Contact Us
To book the best “car detailing near me” experience in Brampton call A1 Auto Spa at +1 249-594-1313 or visit us at Parity Rd, Brampton, ON L6X 5M5, Canada. Our team will help you select the perfect detailing package and schedule a convenient appointment—whether at our shop or your driveway. Trust A1 Auto Spa for professional car detailing near you that leaves your vehicle looking its absolute best.334 - 
				    					
					
					Hire A Cryptocurrency Fraud Recovery Hacker Service Online: VISIT CERTIFIED RECOVERY SERVICES
It started with optimism. A serendipitous encounter with an old college friend in Miami’s bustling airport led to a conversation about financial growth. He spoke glowingly of Dollar fx net, a platform he insisted had doubled his investments. Trusting his enthusiasm, I deposited 10,000 USD a substantial chunk of my job savings only to face a shocking roadblock weeks later. The platform demanded an additional 5,000 “verification fee” to unlock withdrawals. My stomach dropped; this wasn’t a hiccup it was a trap. Stress pushed me into research mode. Scouring cybersecurity forums, I uncovered countless stories mirroring mine: unregulated platforms exploiting trust, draining accounts under false pretenses. Then, a lifeline a Reddit thread praising CERTIFIED RECOVERY SERVICES for their no-nonsense approach to fund retrieval. Skeptical but out of options, I submitted a case file through their portal, hoping for a miracle. The response from CERTIFIED RECOVERY SERVICES was swift and reassuring. They outlined a comprehensive strategy: trace the digital trail of my 10,000 USD, they apply pressure on the platform through legal backchannels. Their transparency struck me while they couldn’t guarantee success, their expertise was evident. Over the next week, CERTIFIED RECOVERY SERVICES became my digital sherpa, guiding me through the murky waters of online fraud recovery. Their team meticulously decoded Dollar fx net’s obfuscated transaction logs, revealing that my funds had been funneled into offshore wallets, far from any regulatory oversight. Armed with this information, their legal team issued takedown notices to payment processors linked to the platform, effectively putting them on notice. The pressure worked: on day 10, I received a cryptic email from Dollar fx net claiming my account was “under review. "By week two, the impossible happened my original 10,000 USD reappeared in my bank account, sans the fabricated fees. CERTIFIED RECOVERY SERVICES later explained how their threat of exposing the platform’s infrastructure to regulators had forced their hand. Their relentless pursuit of justice to recover my funds and also highlighted the importance of holding fraudulent platforms accountable. This ordeal taught me two harsh truths: not all opportunities are as they seem, and due diligence is non-negotiable. Yet it also revealed heroes like CERTIFIED RECOVERY SERVICES ethical hackers who use their skills to fight back against fraud. I now understand that vigilance and the right support can turn the tide against deceit. In a world where fraudsters thrive on silence, speaking out and seeking help can be the most powerful tools in reclaiming what is rightfully yours.
Here's Their Info Below:
WhatsApp: (+1(740)258‑1417 )2 - 
				    					
					
					Cryptic Trace Technologies: The Legit Recovery Experts
Losing my Bitcoin to a scam was a nightmare I never thought I would experience. I had always been careful with my transactions, double-checking wallets and verifying sources, but the scammers were sophisticated. Within seconds, my cryptocurrency was gone, and I was left staring at my empty wallet, feeling powerless. I tried everything—contacting the exchange, reporting to authorities—but I was repeatedly told that crypto transactions were irreversible. Just when I was about to give up, I came across Cryptic Trace Technologies, a company specializing in crypto recovery. I had my doubts, but with nothing left to lose, I reached out to them. From the first interaction, Cryptic Trace Technologies proved they were different. Their team was incredibly professional, listening to every detail of my case and explaining exactly how they could help. They immediately got to work, analyzing blockchain records, tracking wallet movements, and identifying patterns that linked the scammers to known fraud networks. Their deep understanding of crypto transactions and forensic tracing techniques gave me confidence that I had finally found the right people for the job. For the first time since my funds were stolen, I felt a glimmer of hope. The process wasn’t easy, but the team at Cryptic Trace Technologies never wavered. They meticulously followed the stolen Bitcoin’s digital trail, even as the scammers attempted to hide their tracks through multiple wallets and exchanges. Their expertise in blockchain analysis and ethical hacking allowed them to pinpoint the exact location of my stolen funds. The moment they informed me that a significant portion of my Bitcoin was recoverable, I was overwhelmed with relief. Within days, they successfully restored my funds back to my wallet—a result I had never thought possible. If you have lost cryptocurrency to fraudsters, don’t assume it’s gone forever. Cryptic Trace Technologies is the lifeline you need. Their expertise, persistence, and cutting-edge tools make them the best in the business. Not only did they recover my stolen Bitcoin, but they also educated me on how to better protect my assets in the future. They truly care about their clients, and I wholeheartedly recommend them to anyone facing the same nightmare I once did. Reach them via: emails: cryptictrace @ technologist. Com
Cryptictracetechnologies @ zohomail . Com
Website: cryptictracetechnologies . Com1 - 
				    					
					
					So this is my first company as a developer — and honestly, I’m starting to wonder if all the stories about toxic tech culture are actually understatements.
The rules here are straight-up painful. First off, if you introduce a bug — even in the development environment — you're immediately pulled into a one-hour lecture. Not a discussion, not helpful debugging — an actual verbal beating like you crashed the production server during Black Friday. It’s development. Mistakes literally come with the job. Apparently not here.
But wait, it gets better.
You're only allowed one commit per day. Just one. Doesn’t matter if you’ve done 10 things. Doesn’t matter if they’re unrelated. It’s all got to go into a single, glorious mega-commit. Because hey, why use Git properly when you can treat it like a dusty USB stick?
Merge requests? Those are another exercise in corporate gymnastics. You have to assign the reviewer’s name in both the "assignee" and "reviewer" fields — because clearly, assigning someone once just doesn’t drive the point home.
Oh, and commit messages must ONLY be the branch name. No description. No hint at what changed. If you want to understand what happened, better roll up your sleeves and start reading raw code. Context is for the weak.
And then there’s the AI hypocrisy.
Since our work is mostly CRUD, I figured it’d be smart to boost productivity with a GitHub Copilot subscription — paid out of my own pocket. I actually got it finalized. Felt like I was finally arming myself with the right tools.
Then the Shopify internal memo about AI leaked and made waves online. And suddenly — surprise! — my company is now super into AI. Out of nowhere, they’re encouraging everyone to “leverage AI tools” and “accelerate with generative intelligence.”
But here's the twist:
We're only allowed to use the free versions. No budget, no support, no actual tooling strategy. Just “use AI” because it’s trendy, but don't you dare expense anything that works well.
So here I am, in my very first job, trying to grow as a dev — while navigating rules that feel like they were designed by someone who read half a blog post about software engineering and called it a day. It’s like Git but with handcuffs. And blindfolds. On a unicycle.
Is this normal? Do all first jobs come with a side of chaos and irony, or did I win some kind of cursed lottery?
Would love to hear if anyone else had a first gig this absurd. Or maybe I just unlocked hard mode early.3 - 
				    					
					
					Revive Pressure Wash Pro: The Best Pressure Washing Company in Upland, CA
At Revive Pressure Wash Pro, we take pride in being recognized as the best pressure washing company in Upland, CA. Whether you're a homeowner, business owner, or property manager, our team is dedicated to delivering high-quality, reliable, and eco-friendly cleaning services. From deionized water window cleaning to spot-free solar panel cleaning, we provide the most advanced cleaning solutions to meet your needs.
We specialize in full-service exterior cleaning, offering a comprehensive range of services that will leave your property looking pristine. At Revive Pressure Wash Pro, our team uses cutting-edge equipment and environmentally safe cleaning products to restore and maintain the beauty of your property, ensuring the best possible results.
Our Range of Expert Services
As a leading full-service exterior cleaning company, we offer a wide variety of specialized services to meet the needs of our residential and commercial clients:
Deionized Water Window Cleaning
For sparkling clean windows without streaks or residue, we offer deionized water window cleaning. This process uses purified water that is free of minerals and contaminants, ensuring that your windows are left spotless. By using this advanced cleaning technique, we provide a streak-free finish that enhances the clarity and appearance of your windows, improving both the aesthetic and energy efficiency of your home or business.
Spot-Free Solar Panel Cleaning
Solar panels can accumulate dirt, dust, and debris, which can significantly reduce their efficiency. Our spot-free solar panel cleaning service uses the same deionized water cleaning method to ensure that your panels are left spotless, maximizing their energy output. Our gentle, non-abrasive cleaning technique protects your investment while helping to boost the performance of your solar system.
Residential and Commercial Pressure Washing
Our residential and commercial pressure washing services are designed to remove dirt, grime, and contaminants from a variety of surfaces. Whether it's cleaning your driveway, siding, deck, or storefront, we use high-powered equipment and eco-friendly detergents to restore the beauty of your property.
Roof and Gutter Cleaning
Keeping your roof and gutters clean is essential for maintaining the integrity of your home or building. We specialize in removing debris, algae, and moss from roofs, as well as clearing gutters to ensure proper water flow and prevent damage. Our team uses the right tools and techniques to clean these areas safely without causing harm to your property.
Deck and Patio Cleaning
Decks and patios often take a beating from the elements. Our team can revitalize your outdoor spaces by removing dirt, mold, and stains from wood, concrete, and stone surfaces, restoring their original beauty and extending their lifespan.
Why Choose Revive Pressure Wash Pro?
The Best Pressure Washing Company: We are committed to delivering exceptional results with every job. Our attention to detail, professionalism, and customer satisfaction have made us the best pressure washing company in Upland, CA.
Eco-Friendly Cleaning Solutions: We prioritize the environment by using non-toxic, biodegradable cleaning products that are safe for your family, pets, and the planet.
Experienced and Skilled Technicians: Our team of trained experts is equipped with the latest pressure washing technology and techniques, ensuring your property is cleaned safely and effectively.
Comprehensive Services: As a full-service exterior cleaning company, we provide a wide range of services to maintain and enhance your property’s exterior. From deionized water window cleaning to spot-free solar panel cleaning, we have the tools and experience to tackle any job.
Contact Revive Pressure Wash Pro Today!
If you're looking for a full-service exterior cleaning company that offers professional, high-quality services, Revive Pressure Wash Pro is the one to trust. Whether you need deionized water window cleaning, spot-free solar panel cleaning, or general pressure washing, our team is here to provide the best cleaning services in Upland, CA.
Call us today at +1 (909) 701-3022 to schedule your service or request a free estimate. You can also visit us at 1732 Wilson Ave, Upland, CA 91784 to learn more about how we can help improve the cleanliness and appearance of your property.
Experience the difference with Revive Pressure Wash Pro — your trusted partner for all your exterior cleaning needs.5 - 
				    					
					
					Rank Business Institute: Leading the Way for Digital Marketing in Vashi
In today’s rapidly evolving business environment, the importance of Digital Marketing cannot be overstated. As more businesses go digital, mastering digital marketing is a critical skill for staying ahead in the competitive market. If you're in Vashi or the surrounding Navi Mumbai area and looking to enhance your digital marketing knowledge or kickstart your career, Rank Business Institute is your go-to destination for top-notch training and education.
Located at First Floor, Haware Fantasia Business Park, Corporate Wing, F-188, Sector 30A, Vashi, Navi Mumbai, Maharashtra 400705, Rank Business Institute offers a comprehensive range of digital marketing courses designed to equip you with the skills needed to succeed in the digital world.
Why Choose Digital Marketing in Vashi?
Vashi, one of the most prominent areas of Navi Mumbai, has rapidly transformed into a hub for business and technology. With a growing number of businesses, startups, and entrepreneurs setting up in this region, Digital Marketing in Vashi has become essential for companies to connect with their audience effectively.
As businesses continue to shift their marketing strategies to digital platforms, there is a constant demand for skilled professionals who can manage online marketing campaigns, SEO, social media, paid advertising, and more. Whether you are a business owner looking to grow your brand or an individual aiming to start a career in digital marketing, Rank Business Institute in Vashi offers the right learning solutions.
Why Rank Business Institute is the Best Place for Digital Marketing in Vashi
1. Comprehensive Digital Marketing Courses
Our Digital Marketing curriculum covers everything from the basics to advanced strategies, giving you the tools to create and execute successful online marketing campaigns. The courses we offer include:
Search Engine Optimization (SEO)
Social Media Marketing (SMM)
Pay-Per-Click (PPC) Advertising
Content Marketing
Email Marketing
Web Analytics and Reporting
Affiliate Marketing
E-commerce Marketing
Each course is designed to ensure you have the theoretical knowledge as well as practical skills to apply in real-world situations.
2. Industry-Experienced Trainers
At Rank Business Institute, we understand that learning from experts is key to mastering any field. Our trainers are experienced digital marketing professionals with years of practical industry experience. They not only teach you the fundamentals but also share real-world insights and current trends in digital marketing.
3. Hands-On Training and Live Projects
Theory is important, but hands-on practice is crucial when it comes to digital marketing. We offer live projects and practical assignments that allow you to work on actual digital marketing campaigns, giving you a deep understanding of tools, strategies, and techniques used in the industry.
4. Affordable and Flexible Learning
We believe that quality education should be accessible to everyone. Rank Business Institute provides affordable training programs without compromising on quality. Our flexible learning schedules—weekday and weekend batches—make it easier for working professionals and students to balance their learning with other commitments.
5. Placement Assistance and Career Support
One of the unique features of Rank Business Institute is our commitment to your career growth. We offer placement assistance to students completing the course, helping them connect with potential employers in Vashi, Navi Mumbai, and beyond. Our career support team helps with resume building, interview preparation, and provides guidance on job opportunities in the digital marketing field.
The Growing Need for Digital Marketing in Vashi
As Vashi continues to evolve into a business hotspot, the need for digital marketing professionals has skyrocketed. Companies in various industries are recognizing the importance of establishing a solid online presence. Whether it’s for driving traffic to a website, improving brand visibility on social media, or running paid advertising campaigns, businesses need skilled professionals to manage their digital marketing efforts.
By enrolling in a Digital Marketing course at Rank Business Institute, you are not just learning the theory but also gaining the practical skills needed to meet the growing demand for digital marketing expertise. With the knowledge and experience you gain, you’ll be ready to take on roles such as:
Digital Marketing Manager
SEO Specialist
Social Media Manager
Content Marketing Strategist
PPC Specialist
Web Analytics Expert
Why Vashi Is the Perfect Location for Digital Marketing Education
Visit us today at First Floor, Haware Fantasia Business Park, Corporate Wing, F-188, Sector 30A, Vashi, Navi Mumbai, Maharashtra 400705, or call us at +09082234835 to learn more about our courses, schedule, and enrollment details.
				        
				        
				        
				        
				        1 
