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 - "value flow"
		- 
				    					
					
					Life as a homeless developer.
 
 I'm a lil brainsick but homelessness makes you that way.
 I started writing software as a hedge against an old injury i had from my teen years. I have a unique condition leaving me with limited use of my hand as such any jobs like cashier call center and they like are of limits to me, i can't hold change because my hands don't bend flat, and to much typing is excruciating. Therefore being adev should get the most bang for the buck that I have left. Ive been doing this for 12 years. Well it's all bullshit and unicorns. I can't get a job to save my life. All i get is calls from recruiters wanting a full stack retard. I'm an erlang developer for about 5 years, c# php no i can't do Photoshop or frontend gay as colors because it's a different skillet. Oh but trumpy says we're at the lowest unemployment ever, ya because we're all homeless and companies are still looking for unicorns, they don't exist just like the fake jobs which is the real fake news. In reality if a company wants you its because their dev left and you are to fix their broken shit, which never worked in the first place thus cannot be fixed besides I'm not a plumber. In my opinion many companies nowadays are run by liberal sjw children who don't value your time but want the product now, spoilt. Recruiters are the worst, gimme money because i touched your resume. I'd rather just kill myself than try to appease some fucking retarded children. Its so awesome to live in a tunnel while my skills entropy while i have 160 self published github repos, know many programming languages and be told your have no value. its those same children that dont understand the flow of money or value loyalty, claim we have all these jobs but no skillid employees, so they can bring in more visa overstayers, underpay them and claim record profits, the more you pay forieners my countries money the less there is to go around in the society leading to disenfranchised people like me, and you wonder why there's so many shootings in il. How long can i endure homelessness before i start becoming a criminal? Soon i will have no other option. You employers had a choice but I'm going out with a bang.25
- 
				    					
					
					Might be more of a self-rant.. We’re developing an application with token-based authentication.
 It’s a big an complex authentication model and flow, which we wrapped up a month ago. All of us very proud of it.
 
 All of a sudden none of it worked.
 We debugged for days, there were no errors or anything to trace what was happening.
 
 Today we realized that we set the expiration of the token to 20 years.
 Aaaand the expiration time is later on converted to epoch.
 
 Guess what happens when you try to use a value > 2 147 483 647 in C#? Stuff blows up, cuz that’s the limit of an int32.
 
 So yeah, feels good having prepared for the Y2K38 bug already, even though we’ll be replaced by AI writing better software than my dumb ass by then.
 
 (To be fair, it was hidden in Microsoft Owin, which could use some error handling and/or proper messages..)
- 
				    					
					
					so... not really a rant because i'm happy to be in the long-term zenlike state where i don't really give a fuck about anything anymore, but...
 
 so today's my birthday (thanks in advance for all the semi-mandatory "cheers" reactions and such)
 
 the agency i do temp jobs through sends money weekly (for the one week back) (which is the main and only reason i use them). they arrive at friday 12:25, so that's when i know to go "check" by withdrawing it, and it's also awesome because it's the best time to provide funds to reward myself (by booze/weed) at the end of the week.
 
 last week, nothing came in. i called them and learned it was due to the contact person in the company i did job in being too late on sending the agency list of people who showed up at the work, i was told it's gonna arrive one week later together with the proper payment for the week-1,so effectively i was one week without any money (literally), but on the next week double was going to arrive, which is nice.
 
 that next week of double was now. i found out that no double arrived, only single-value payment. i called them to ask why.
 i was told that what arrived was the late payment, and the dude in company was again late with sending the presence list, so the other payment, for the proper week's work, will be a week late again.
 
 so... that kinda ruined my financial planning tor tge week that's going to happen.
 
 i guess my point (if i have any) is... funny how when someone fucks up, there's nobody for me to be angry at and hold responsible in any way, but when i have delays in my work due to delays upstream, nobody gives a shit about my excuses and it's my fault and i should have compensated, it was my responsibility and duty, and me not doing it (to my own detriment, for someone else) is me failing.
 
 funny how the subjective dynamics of the world always somehow works out in a way where everyone else fucks up and i either have to suck it up and be okay with it otherwise i'm a selfish unreliable entitled asshole, or suck it up and extinguish their fire for them, otherwise i'm a selfish unreliable entitled asshole XD
 
 anyone else noticed this in their life?
 how does it work? what is the factor that decides whether you're in the "suck it up" class or the "fuck it, someone else will suck it up" class?
 
 doesn't seem to (just) be the money(flow), i've seen this thing happen even in situations where the money/client dynamics were flowing the opposite way to what would be natural for the shit fall direction.4
- 
				    					
					
					Never call a variable 'r' while debugging in python console.
 I was trying to fix my code but for some reason the program didn't follow the code flow. I hate it when it happens because you can't pinpoint the source of the problem. I restarted the kernel, nothing, then I rebooted the IDE, nothing. The code behaved weirdly, the only thing I was doing was assigning a value to a temp variable called 'r' and then displaying it. The console kept telling me "--Return--", I didn't understand... Why, my old friend, are you telling me you're returning? Then I changed the variable name to old 'tmp' and it all worked. I finally realized that 'r' is a pdb command... I was angry at the console for obeying my own order... I'm sorry console1
- 
				    					
					
					So, it's been a while since I've been working on my current project and I've never had the "luck" to touch the legacy project wrote in PHP, until this week when I got my first issue.
 
 And damn, this goddamn issue. It was a bug, a very strange bug, that only happens in production and that nobody has any idea what was happening, so yeah, I didn't have anyone to ask and I got less time than usual ( because Thanksgiving ).
 
 And thus, I have no starting point, no previous knowledge on PHP and less time! I expected a very fun week 😀 and it was beyond my expectations.
 
 First I tried to understand what might be causing the issue, but there wasn't any real clue to star with, so no choice, time to read the flow on the code and see what are they're doing and using ( 1k line files, yay, legacy ). Luckily I got some clues, we're using a cookie and a php session variable for the session, ok, let's star with the session variable. Where it's that been initialize ? Well, spoiler alert, I shouldn't start with that, because my search end up in the login method of the API that set a that variable and for some reason in the front end app it was always false and that lead me to think that some of the new backend functions were failing, but after checking the logs I got no luck.
 
 Ok, maybe the cookie it's the issue, I should try open the previous website on the brow...redirect to new project login, What? Why ? I ask around and it's a new feature push on Monday, ok I got Chrome Dev tools I can see which value of the cookie it's been set and THERE IT WAS it has a wrong domain! After 2 days ( I resume a lot of my pain ) I got what I've been looking for, so now I should be able to fix the bug. Then where is the cookie initialized ? In the first file the server hits whenever you tried to enter any page of the app, ok, I found the method, but it's using a function that process the domain and sets it correctly? wtf ? Then how in heaven do I get the incorrect domain ? Hello? Ok, relax, you still have one more day to fix this, let's take it easy.
 
 Then, at the end of the Wednesday, nope I still have no clue how this is happening. I talked with the Devops guy and he explain me how this redirection happens and with what it depends on, I followed the PHP code through and nothing, everything should works fine, sigh. Ok I still have 2 days, because I'm not from US and I'm not in US, so I still have time, but the Sprint is messed up already, so whatever I'm gonna had done this bug anyhow.
 
 Thursday ! I got sick, yay, what else could happen this week. Somehow I managed to work a little and star thinking in what external issue could affect the processing, maybe the redirection was bringing a wrong direction, let's talk with the Devops guy again, and he answer me that the redirection it was being made by PHP code, IN A FILE THAT DOESN'T EXIST IN THE REPOSITORY, amazing, it's just amazing. Then he explained me why this file might be missing and how it's the deployment of this app ( btw the Devops guy it's really cool and I will invite him a beer ) . After that I checked the file and I see a random session_star in the first line of the code, without any configuration, eureka ! There was the cause and I only need to ask someone If that line it's necessary anymore, but oh they're on holiday, damn, well I'll wait till Monday to ask them. But once and for all that bug was done for ! 🎉
 
 What do I learn ? PHP and that I don't want any more tickets of PHP 😆.
- 
				    					
					
					CircleCI:
 - Ensuring work has meaning: "Let's make yet an other dashboard webapp that going to replace all of our dashboard webapps which we made to replace all of our dashboard webapps"
 
 -Solving interesting problems: "Let's make this with java 15 instead of java 14!!!! Also add graphql to ADD interesting problems nobody had since the nineties!"
 
 - Gain meaningful value from talent: 'Bitbucket and the whole pipeline died fourth time this week, I'm going to drink a coffee or two..."
 
 - Developers in flow: "Joe went to have a lunch around 11:00, you probably should not look for him until 14:30."
 
 - Bring buying decisions closer to the engineering team: "The boss tried to bring up the pros and cons between aws and azure... The police eventually had to break the ensuing fight in the meeting room. The survivors reported things got truly out of hand when someone mentioned line-endings"
 
 - Bring leadership closer to the engineering team: "There was yet an other agile coached hired, when she asked how should we measure velocity one of the lead devs managed to actually wake up and told her that the wifi is still pretty fucking slow"
- 
				    					
					
					After a week of working days of testing and development, the new feature finally finished. But my boss wasn't satisfied with the flow so he sent a revision.
 
 After finished with revision, he still not satisfied with it and then sent another revision. This happened 3 times in a week after completing task before any revision and this week comes the fourth with some vague businesses flow. I feel like I don't have value anymore in this company.1
- 
				    					
					
					In my country there is a huge economy deflation.
 Like 1 year ago 1USD used to be 1500 pounds.
 Nowadays 1USD is more like 7800 pounds.
 
 Wait a second let me explain more into details the whole flow.
 
 There are 3 to 4 prices we are being dealing with:
 * Official Bank price that refuse to change the base price: 1500 pounds
 * Bank ATM machines that exchange your dollars on a 3900 pounds per usd
 * Black market: 7800 pounds managed by random mobile apps that spread rumors
 * Foreigners currency: the only way to grab your reach dollars.
 
 Long story short:
 Whenever you want to win extra cash, you ask any of your relatives to lend you money from any bank in the world ( foreigners currency), try to ask in black market who is willing to exchange, you meet, you check on any mobile app what's the current price and you do the exchange.
 
 So in order buy USD dollars on a low price, devs build 2 mobile apps one that send a POST request to change the amount in DB and a second one fo retrieve this value.
 So whenever he want to buy dollars he change the value to the lowest. And whenever you want to sell the dev raise the amount slowly. So far the government has no regulations over developers why? Because the one behind the forensic are at least 60 to 70 years old more like their informations are dead.
 
 So we struggle.11
- 
				    					
					
					Harari said of the idea of Data-ism:
 
 ---
 
 In its extreme form, proponents of the Dataist worldview perceive the entire universe as a flow of data, see organisms as little more than biochemical algorithms and believe that humanity’s cosmic vocation is to create an all-encompassing data-processing system — and then merge into it.
 
 We are already becoming tiny chips inside a giant system that nobody really understands. Every day I absorb countless data bits through emails, phone calls and articles; process the data; and transmit back new bits through more emails, phone calls and articles. I don’t really know where I fit into the great scheme of things, and how my bits of data connect with the bits produced by billions of other humans and computers. I don’t have time to find out, because I am too busy answering emails.
 
 ---
 
 I was initially entertained by the punchline, but that was soon followed by the rather depressing realisation that my only value to greater society is essentially as a data processing unit7
- 
				    					
					
					I recently went through a very detailed and well-explained Python-based project/lesson by Karpathy which is called micrograd. This is a tiny scalar-valued autograd engine and a neural net on top of it.
 
 The project above is, as expected, built on Python. For learning purposes, I wanted to see how such a network may be implemented in TypeScript and came up with a 🤖 micrograd-ts - https://github.com/trekhleb/... repository (and also with a demo - https://trekhleb.dev/micrograd-ts/ of how the network may be trained).
 
 Trying to build anything on your own very often gives you a much better understanding of a topic. So, this was a good exercise, especially taking into account that the whole code is just ~200 lines of TS code with no external dependencies.
 
 The micrograd-ts repository might be useful for those who want to get a basic understanding of how neural networks work, using a TypeScript environment for experimentation.
 
 With that being said, let me give you some more information about the project.
 
 ## Project structure
 
 - [micrograd/](https://github.com/trekhleb/...) — this folder is the core/purpose of the repo
 - [engine.ts](https://github.com/trekhleb/...) — the scalar `Value` class that supports basic math operations like `add`, `sub`, `div`, `mul`, `pow`, `exp`, `tanh` and has a `backward()` method that calculates a derivative of the expression, which is required for back-propagation flow.
 - [nn.ts](https://github.com/trekhleb/...) — the `Neuron`, `Layer`, and `MLP` (multi-layer perceptron) classes that implement a neural network on top of the differentiable scalar `Values`.
 - [demo/](https://github.com/trekhleb/...) - demo React application to experiment with the micrograd code
 - [src/demos/](https://github.com/trekhleb/...) - several playgrounds where you can experiment with the `Neuron`, `Layer`, and `MLP` classes.
 
 Demo (online)
 ---------------------
 
 To see the online demo/playground, check the following link:
 
 🔗 https://trekhleb.dev/micrograd-ts 3 3
- 
				    					
					
					Been debugging a sp in oracle from 2 days a fucking sp of 2000 lines to see why it was not not giving desirable result. Turns out a fucking variable had a null value which was always satisfying the greater than condition an fucking up the flow. The fucking sp is being used since ages and nobody fucking noticed i mean what the actual fuck. And also the fucking indentation of the code how the fuck are u supposed to know which if ends where i mean come on put some fucking comments to your fucking code if u are gonna make it like it is gonna be the ultimate fucking sp which is being used god only know how many places.
- 
				    					
					
					Friend and me from the university need to write a program to parse Value-Change-Dumps from different files, and merge them together in a new file to easily compare them. This project last for the whole semester. The program was for one of the professors and we need to meet with him and give him an introduction how to use the program (was cli & gui based)
 
 Long story short: enter office, give him the link to git repo. He clones it. Clicks on it and boom. Python error. Some Tkinter Error. OK ok after a few minutes we solved the issue by installing some additional packages and our program starts. But it doesn't work. About 80% of the buttons did nothing. WTF!??
 
 Oh. We used git flow for fun and haven't moved the development branch to master and he cloned outdated code. We need nearly 30 minutes to solve this. 🤔And I'm just happy that this professor was just a calm guy . He was also happy because now he does not need to run multiple instances of GtkWave to compare his simulation results.
- 
				    					
					
					Did someone already thought about how color highlight can be better? It's been 4-5 years now that I'm coding on a virtual console that run on iPad with a monochrome code editor. Despite the fact that's remind me the old days when I was 8 years old, that doesn't stop me for coding with it.
 
 I mean, is it really important to know that strings are red and numbers are yellow? How does that help me? They are both literal and behave to the user-content categories.
 
 I was talking with my friend, and he says he likes to know if something is a keyword or an identifier. In C++, a lot of common keywords to define stuff and control the flow are often the first word and easy to spot.
 
 A couple of months ago, I tried Flutter, and the editor can highlight ident blocks and give them different colors, but with Flutter, it's easy to get 10 or more ident levels, Does the color help? Splitting the code does.
 
 I think, there is so much stuff that is more important than coloring the grammar of a language. For instance: knowing if an identifier belongs to which Rust Crate because, It's easy to stack 10 or more dependencies in one file that as better chances of names collisions.
 
 Knowing if an identifier was recognized, if it used, if it's a local, a member, a global, a compiled value or a macro seems more important.
 
 I would like to color block of code that is important or sensible. That will help my coworker about the severity of a particular place in the code.
 
 What do you think?1
- 
				    					
					
					Wash Pros LLC: Premier Exterior Cleaning Services in East Providence
 
 At Wash Pros LLC, we specialize in top-tier exterior cleaning services designed to keep your property looking its best all year round. Whether it's gutter cleaning, solar panel cleaning, or driveway cleaning, our team uses the latest tools and techniques to ensure your home or business is spotless and well-maintained. Serving East Providence and surrounding areas, we are committed to delivering outstanding results that help enhance curb appeal, protect your investment, and improve the longevity of your property.
 
 Exterior Cleaning: Transform the Look of Your Property
 The exterior of your home or business is the first thing people see. Keeping it clean not only boosts the aesthetic appeal but also protects the structure from weather damage and deterioration. Our comprehensive exterior cleaning services cover a range of areas around your property, including the siding, windows, fences, and patios.
 
 At Wash Pros LLC, we understand that different surfaces require different cleaning techniques. That's why we offer customized solutions, from gentle soft washing for delicate surfaces to more powerful pressure washing for tougher materials. No matter the scope or complexity of the job, we’ll leave your property looking fresh and well-maintained.
 
 Gutter Cleaning: Protect Your Home from Water Damage
 Your gutters play a crucial role in protecting your home from water damage by directing rainwater away from the roof and foundation. Over time, gutters can accumulate leaves, twigs, dirt, and debris, which can obstruct the flow of water. This buildup can lead to water overflow, which may cause significant damage to your roof, siding, and even your home’s foundation.
 
 At Wash Pros LLC, our gutter cleaning service ensures that your gutters are clear, free of debris, and functioning properly. We use specialized tools to safely remove all debris and ensure that your gutters are flowing freely. Regular gutter cleaning helps prevent costly repairs down the line and keeps your home protected from the elements.
 
 Solar Panel Cleaning: Maximize Your Solar Efficiency
 Your solar panels are an investment in both your home’s energy efficiency and the environment. To ensure they work at their peak performance, it’s important to keep them clean and free of dirt, dust, and debris. Dirty panels can significantly reduce the amount of sunlight absorbed, ultimately decreasing their energy production.
 
 At Wash Pros LLC, we offer professional solar panel cleaning services to help you maximize the efficiency of your solar system. Our team uses specialized cleaning techniques that are gentle on your panels but effective in removing dirt, grime, and other buildup. We ensure that your solar panels remain in excellent condition, providing you with optimal energy savings.
 
 Driveway Cleaning: Enhance the First Impression
 Your driveway is one of the most visible parts of your property, and over time, it can become stained and dirty from oil spills, tire marks, dirt, and weather exposure. Driveway cleaning is an essential service that restores the look of your driveway and boosts the overall appearance of your property.
 
 At Wash Pros LLC, we use powerful pressure washing equipment to remove dirt, stains, and buildup from concrete, asphalt, and other driveway materials. Our experts know how to tackle tough stains while preserving the integrity of your driveway. A clean driveway not only adds curb appeal but also extends the life of the surface, helping you avoid costly repairs.
 
 Why Choose Wash Pros LLC?
 Expert Technicians: Our team is highly trained in the latest exterior cleaning techniques and equipped with advanced tools to handle any job.
 
 Eco-Friendly Solutions: We prioritize the use of environmentally safe cleaning solutions that protect both your property and the planet.
 
 Affordable Rates: We offer competitive pricing for all our services, ensuring that you get the best value for your investment.
 
 Customer Satisfaction: We take pride in delivering exceptional customer service and top-notch results with every project.
 
 Reliable & Efficient: We work quickly and efficiently to get the job done, allowing you to enjoy a clean and well-maintained property without any hassle.
 
 Get in Touch with Wash Pros LLC Today!
 If you’re looking for reliable exterior cleaning services in East Providence, look no further than Wash Pros LLC. Whether you need gutter cleaning, solar panel cleaning, driveway cleaning, or a comprehensive exterior cleaning, our team is here to provide top-quality service that exceeds your expectations.
 
 For more information or to schedule a service, contact us at +1 (401) 340-9811 or visit us at 39 Unity Avenue, East Providence, RI 02914. Let us help you keep your property looking its best with our expert cleaning services!1
- 
				    					
					
					Losing $200,000 worth of Bitcoin to scammers was one of the most devastating experiences of my life. As someone who had invested years of savings into cryptocurrency, the thought of losing it all to a fraudulent scheme was paralyzing. I felt helpless, angry, and overwhelmed. That’s when I discovered *Coin-Caper Recovery*, a professional cryptocurrency recovery service that specializes in helping victims of scams reclaim their lost funds. Here’s how they turned my nightmare into a story of hope and recovery. It all started with what seemed like a legitimate investment opportunity. I was approached by a group claiming to be a reputable crypto trading platform, promising high returns on my Bitcoin investment. They had a professional-looking website, convincing testimonials, and even a "support team" that answered all my questions. Trusting their credibility, I transferred $200,000 worth of Bitcoin to their wallet. Within days, the platform disappeared. Emails bounced back, phone numbers were disconnected, and my funds were gone. I realized I had fallen victim to a sophisticated scam. Desperate, I began searching for ways to recover my lost Bitcoin, but most options seemed futile—until I found Coin-Caper Recovery. From the moment I contacted Coin-Caper Recovery, I felt a glimmer of hope. Their team of experts was empathetic, professional, and transparent about the recovery process. Here’s how they helped me: Coin-Caper Recovery began by thoroughly reviewing my case. They asked for all relevant details, including transaction records, communication with the scammers, and any other evidence I could provide. Their team explained the complexities of blockchain technology and how they could trace my funds. Using advanced blockchain analysis tools, Coin-Caper Recovery traced the movement of my Bitcoin. They identified the wallets the scammers used and monitored the flow of funds across the blockchain. This step was crucial in understanding where my money had gone and how to recover it. Coin-Caper Recovery collaborated with legal experts and law enforcement agencies to take action against the scammers. They filed reports, gathered evidence, and worked tirelessly to freeze the scammers’ accounts. Their global network of professionals ensured that no stone was left unturned. After weeks of relentless effort, Coin-Caper Recovery successfully recovered a significant portion of my lost Bitcoin. While not all funds were retrievable due to the nature of cryptocurrency transactions, the $200,000 I thought was gone forever was partially restored. Their team kept me informed at every step, providing updates and reassurance throughout the process. Thanks to Coin-Caper Recovery, I was able to reclaim a portion of my lost Bitcoin and regain my faith in the cryptocurrency space. While the experience was traumatic, it taught me the importance of due diligence and the value of having experts like Coin-Caper Recovery on your side when things go wrong. If you’ve fallen victim to a cryptocurrency scam, don’t lose hope. Reach out to Coin-Caper Recovery—they are the lifeline you need to turn your situation around. Their expertise and dedication can make all the difference in recovering what’s rightfully yours. Always exercise caution when investing in cryptocurrency and verify the legitimacy of platforms and services. If you suspect fraud, act quickly and seek professional help from reputable recovery services like Coin-Caper Recovery.
 Contact Coin-Caper Recovery via: Whatsapp +1 (747) 360‑9248 1 1
- 
				    					
					
					Triplex: A Smart Real Estate Investment for Property Owners and Developers
 
 In today’s competitive real estate market, property owners and investors are always looking for ways to increase their income and maximize the potential of their properties. One of the most profitable strategies is converting or building a triplex—a residential property containing three separate units, each with its own entrance and living space.
 
 At AgileBuilds Ltd, located at 47 Whitfield Ave, North York, ON M9L 1G4, Canada, we specialize in triplex conversions and custom-built triplex properties. Whether you're looking to generate more rental income or enhance the value of your investment, we provide expert solutions that make the process smooth and efficient.
 
 What is a Triplex?
 A triplex is a multi-family residential property that contains three distinct living units. Each unit typically includes its own entrance, kitchen, bathroom, and living space. A triplex can either be a newly constructed building or the result of converting an existing property, such as a single-family home, into three separate units.
 
 At AgileBuilds Ltd, we have extensive experience in both designing new triplex properties and converting existing homes into profitable triplex units. This type of property offers a number of financial and practical benefits for both investors and homeowners.
 
 Why Invest in a Triplex?
 1. Higher Rental Income
 One of the most obvious advantages of a triplex is the potential for higher rental income. With three separate units, you can generate revenue from multiple tenants, increasing the overall rental income compared to a single-family home. This makes it a great investment for property owners looking to increase cash flow.
 
 2. Diversified Income Stream
 Having three separate rental units in one property means that if one unit becomes vacant, the other two units can continue to generate income. This diversification of rental income reduces financial risk and ensures a more stable cash flow.
 
 3. Lower Operating Costs
 Operating a triplex can be more cost-effective compared to managing multiple single-family homes. Since all the units are within the same building, expenses like property maintenance, insurance, and taxes are often lower. This makes a triplex an efficient way to manage multiple rental properties with less overhead.
 
 4. Increased Property Value
 When you convert a single-family home into a triplex or build a new one, you are likely to see a significant increase in property value. Multi-family properties, like triplexes, tend to be valued higher than single-family homes because of the added rental potential. This can provide a solid return on investment, whether you choose to hold the property long-term or sell it.
 
 5. Flexibility for Homeowners and Investors
 For homeowners, a triplex offers the opportunity to live in one of the units while renting out the others. This can help cover mortgage costs, and in some cases, even provide additional income. For developers and investors, a triplex provides flexibility in terms of tenant demographics, allowing you to cater to students, families, or professionals.
 
 How AgileBuilds Ltd Can Help You with Your Triplex Project
 At AgileBuilds Ltd, we offer expert services to guide you through the process of developing or converting your property into a triplex. From the initial design phase to the final construction, our experienced team is here to ensure your project meets local building codes, regulations, and your personal investment goals.
 
 The Process of Building or Converting a Triplex
 Consultation and Property Assessment
 We begin by meeting with you to assess your property’s potential for conversion into a triplex or discuss plans for a custom-built triplex. We will evaluate zoning laws, building codes, and local regulations to ensure the project is feasible.
 
 Design and Planning
 Once the property is assessed, our design team works closely with you to develop a layout that maximizes space and functionality for all three units. We focus on creating an efficient, comfortable living environment that appeals to potential tenants.
 
 Permitting and Approvals
 AgileBuilds Ltd handles all the necessary paperwork for permits and approvals. We ensure that your triplex project complies with all local zoning laws and building codes, making the approval process as smooth as possible.
 
 Construction and Renovation
 Our team of skilled professionals will manage the renovation or new construction of your triplex. We prioritize quality craftsmanship, safety, and efficiency throughout the building process to ensure the finished property meets your expectations.2
- 
				    					
					
					The emergence of cryptocurrencies has completely changed the way we think about money in the constantly changing field of digital finance. Bitcoin, a decentralized currency that has captivated the interest of both investors and enthusiasts, is one of the most well-known of these digital assets. But the very characteristics of this virtual money, like its intricate blockchain technology and requirement for safe storage, have also brought with them a special set of difficulties. One such challenge is the issue of lost or stolen Bitcoins. As the value of this cryptocurrency has skyrocketed over the years, the stakes have become increasingly high, leaving many individuals and businesses vulnerable to the devastating consequences. Enter Salvage Asset Recovery, a team of highly skilled and dedicated professionals who have made it their mission to help individuals and businesses recover their lost or stolen Bitcoins. With their expertise in blockchain technology, cryptography, and digital forensics, they have developed a comprehensive and innovative approach to tackling this pressing issue. The story begins with a young entrepreneur, Sarah, who had been an early adopter of Bitcoin. She had invested a significant portion of her savings into the cryptocurrency, believing in its potential to transform the financial landscape. However, her excitement quickly turned to despair when she discovered that her digital wallet had been hacked, and her Bitcoins had been stolen. Devastated and unsure of where to turn, Sarah stumbled upon the Salvage Asset Recovery website while searching for a solution. Intrigued by their claims of successful Bitcoin recovery, she decided to reach out and seek their assistance. The Salvage Asset Recovery team, led by the enigmatic and brilliant individuals immediately sprang into action. They listened intently to Sarah's story, analyzing the details of the theft and the specific circumstances surrounding the loss of her Bitcoins. The Salvage Asset Recovery team started by carrying out a comprehensive investigation, exploring the blockchain in great detail and tracking the flow of the pilfered Bitcoins. They used sophisticated data analysis methods, drawing on their knowledge of digital forensics and cryptography to find patterns and hints that would point them in the direction of the criminal. As the investigation progressed, the Salvage Asset Recovery team discovered that the hacker had attempted to launder the stolen Bitcoins through a complex network of digital wallets and exchanges. Undeterred, they worked tirelessly, collaborating with law enforcement agencies and other industry experts to piece together the puzzle. Through their meticulous efforts, the team was able to identify the location of the stolen Bitcoins and devise a strategic plan to recover them. This involved a delicate dance of legal maneuvering, technological wizardry, and diplomatic negotiations with the various parties involved. Sarah marveled at how skillfully and precisely the Salvage Asset Recovery team carried out their plan. They outwitted the hacker and reclaimed the stolen Bitcoins by navigating the complex web of blockchain transactions and using their in-depth knowledge of the technology. As word of their success spread, the Salvage Asset Recovery team found themselves inundated with requests for assistance. They rose to the challenge, assembling a talented and dedicated team of blockchain experts, cryptographers, and digital forensics specialists to handle the growing demand. Send a DM to Salvage Asset Recovery via below contact details.
 WhatsApp-----.+ 1 8 4 7 6 5 4 7 0 9 6
 Telegram-----@SalvageAsset 1 1
- 
				    					
					
					HOW TO SUCCESSFULLY RECOVER SCAMMED BTC AND ETH WITH THE HELP OF SALVAGE ASSET RECOVERY
 
 A clip titled “Joe Rogan Reveals Secret Ethereum Fork” autopay on YouTube, featuring Rogan’s unmistakable voice praising a supposed “ETH 2.0 upgrade” that promised early investors up to 10x returns. Everything about the video seemed authentic, Rogan's casual tone, the familiar podcast studio, and even commentary from a so-called “blockchain expert.” Skeptical but curious, I clicked the link in the video’s description, which led to a sleek, professional-looking website promoting a limited-time ETH fork token presale. The sense of urgency was palpable. The site displayed endorsements from prominent crypto influencers I already followed, blockchain analytics claiming legitimacy, and a countdown timer steadily ticking toward zero. My fear of missing out overrode my usual caution. Convinced I was getting in on something exclusive, I transferred 50 ETH worth nearly $150,000 at the time to the provided wallet address. In return, I received newly minted “ETH2” tokens. For the next 48 hours, I celebrated what I believed was a smart, early-access investment. Then it all unraveled. The ETH2 tokens suddenly plummeted to zero value. The website vanished without a trace. Soon after, the YouTube video was flagged and removed; it had been a deepfake. Panic set in. I immediately reached out to SALVAGE ASSET RECOVERY, a cryptocurrency forensics firm I’d seen mentioned in security forums. Within hours, their team began tracing the scam. They explained the mechanics: the scammers used a “rug pull” strategy. A convincing deepfake drew in victims, fake tokens were issued, and the moment investments peaked, the thieves drained all liquidity. Using on-chain analysis, SALVAGE ASSET RECOVERY identified the scammers’ wallet addresses and tracked the flow of my ETH through various exchanges. They worked quickly with centralized platforms to freeze the stolen assets, leveraging anti-money laundering protocols. They also filed emergency legal requests, backed by blockchain evidence, to prove the funds were mine. After three tense weeks, they recovered 47.5 ETH, a 95% success rate. The remaining 2.5 ETH had been funneled to anonymous wallets and was unrecoverable. This taught me hard lessons. Deep Fakes are terrifyingly convincing. Urgency is a red flag. And in crypto, acting quickly after a scam is crucial. Now, I double-check everything and I share my story to protect others. Crypto is powerful, but so are its predators. If scammed, don’t give up. With experts like SALVAGE ASSET RECOVERY, recovery is possible.
 CONTACT INFO--
 TELEGRAM---@Salvageasset
 
 WhatsApp+ 1 8 4 7 6 5 4 7 0 9 62
- 
				    					
					
					Transform Your Bathroom with Custom Showers from D&H Home Surfaces in Hallsville, TX
 
 Are you dreaming of a luxurious, modern shower that fits perfectly in your bathroom? At D&H Home Surfaces, we specialize in designing and installing custom showers that elevate the look and functionality of your space. Whether you're remodeling your bathroom or building a new home, our custom shower solutions are tailored to your unique needs and style preferences.
 
 Why Choose Custom Showers from D&H Home Surfaces?
 A custom shower is the perfect way to personalize your bathroom and create a space that suits your lifestyle. At D&H Home Surfaces, we pride ourselves on offering high-quality, expertly crafted custom showers in Hallsville, TX, and the surrounding areas. Here’s why you should trust us to bring your vision to life:
 
 Personalized Designs: We work closely with you to design a shower that fits your space, style, and budget. From the layout to the materials, everything is customizable.
 Premium Materials: We use only the best materials, including elegant tiles, durable glass, high-quality fixtures, and premium stone, to create custom showers that stand the test of time.
 Expert Craftsmanship: Our team of professionals has years of experience designing and installing custom showers. We pay attention to every detail to ensure flawless results.
 Increased Home Value: A beautiful, custom shower not only enhances your bathroom but can also increase the overall value of your home, making it a smart investment.
 Our Custom Shower Process
 When you choose D&H Home Surfaces for your custom shower installation, we ensure a seamless and stress-free process from start to finish. Here’s what you can expect:
 
 Consultation & Design: We begin by discussing your needs, preferences, and the available space. Our design team will help you select the right materials, shower style, and layout to create the perfect shower for your bathroom.
 Customized Layout: Whether you're envisioning a sleek, modern walk-in shower, a luxurious steam shower, or a traditional bathtub-shower combo, we’ll design a layout that maximizes your space and meets your needs.
 Material Selection: From ceramic and porcelain tiles to glass enclosures and natural stone, you’ll choose from a wide range of high-quality materials to create a custom shower that reflects your style.
 Expert Installation: Our skilled technicians will handle every step of the installation with precision, ensuring that your custom shower is built to the highest standards of quality and craftsmanship.
 Finishing Touches: Once the installation is complete, we will ensure that every detail, from grout lines to caulking, is perfect. Your new custom shower will be ready for use in no time.
 Types of Custom Showers We Offer
 At D&H Home Surfaces, we offer a variety of custom shower designs to suit every style and preference:
 
 Walk-In Showers: Ideal for modern bathrooms, walk-in showers offer a sleek, open look with no doors or barriers. They can be customized with luxurious features like rainfall showerheads, built-in benches, and custom tile work.
 Shower and Tub Combos: For those who want the flexibility of both a shower and a bathtub, we can create custom combinations that make the most of your space.
 Steam Showers: For a truly spa-like experience, we offer steam showers, which provide therapeutic steam that can help relax muscles and improve circulation.
 Frameless Glass Showers: Frameless glass enclosures offer a clean, modern aesthetic and are perfect for showcasing your beautiful tile work.
 Curbless Showers: A curbless shower design provides an ultra-modern, barrier-free look while enhancing accessibility for all users.
 Custom Shower Features
 A custom shower is more than just a place to shower; it’s a retreat where you can unwind and relax. Some popular custom shower features we offer include:
 
 Rainfall Showerheads: Add a touch of luxury with a rainfall showerhead that provides a soothing, even flow of water.
 Built-In Benches: Perfect for relaxation or practicality, built-in benches provide a comfortable place to sit while showering.
 Shower Niches: Add storage to your custom shower with a built-in niche for soap, shampoo, and other essentials.
 Heated Floors: Keep your feet warm during the colder months with heated flooring in your shower area.
 Multi-Jet Systems: Experience a spa-like atmosphere with a multi-jet shower system that targets different areas of your body for a complete therapeutic experience.
 Why Custom Showers are a Great Investment
 Custom showers not only provide a higher level of comfort and luxury, but they also offer long-term value to your home. Here's why a custom shower is a great investment:1
- 
				    					
					
					Denver Retaining Wall Experts provides crucial services for maintaining both the functionality and beauty of your property in Denver, CO. Our offerings, which include decorative retaining walls, natural stone retaining walls, and concrete retaining walls, are designed to address various landscaping and structural needs. Retaining walls play a vital role in stabilizing slopes, preventing erosion, and managing water flow, which can otherwise lead to costly damage and maintenance issues.
 
 Our expertise ensures that your retaining wall not only serves its practical purpose but also enhances the aesthetic value of your space. By choosing from a variety of materials and designs, you can customize your retaining wall to fit seamlessly into your landscape. Whether you prefer the timeless appeal of natural stone or the durability of concrete, Denver Retaining Wall Experts delivers high-quality craftsmanship that ensures long-lasting performance and visual appeal. Trust us to provide solutions that protect and beautify your property with precision and care.
 
 Denver Retaining Wall Experts
 305 W 5th Ave Denver CO 80204
 Phone: 720-408-3420  
- 
				    					
					
					App Developer: Create Powerful Mobile Solutions with Miami Web Design & SEO Services
 
 In today’s fast-paced digital world, having a mobile app for your business is no longer a luxury—it’s a necessity. Whether you’re aiming to enhance customer engagement, streamline business processes, or create a new revenue stream, a custom mobile app can elevate your business. If you're searching for a professional App Developer in Miami, Miami Web Design & SEO Services is your trusted partner.
 
 Located at 1900 Tyler St Suite 502, Hollywood, FL 33020, we specialize in building innovative, user-friendly mobile applications that drive results for businesses of all sizes. Our team of experienced app developers combines technical expertise with a creative approach to help you bring your app ideas to life.
 
 Why Choose Miami Web Design & SEO Services for App Development?
 At Miami Web Design & SEO Services, we understand that each business has unique goals and challenges. Whether you’re looking to build an iOS or Android app, we work closely with you to ensure your app meets the specific needs of your customers and enhances your brand presence.
 
 Expert App Development
 As a leading App Developer in Miami, we specialize in developing custom mobile applications that are not only feature-rich but also intuitive and easy to use. Our team has experience in creating apps across various industries, including retail, healthcare, education, finance, entertainment, and more. We take the time to understand your business requirements and customer pain points to design a solution that provides real value.
 
 Our services include:
 
 Custom Mobile App Development: From concept to launch, we create apps tailored to your business goals. Whether you need a mobile app to streamline your operations or to engage your customers, we’ve got you covered.
 Cross-Platform App Development: We build apps that work seamlessly across both iOS and Android platforms, helping you reach a broader audience while reducing development costs.
 App Design & User Experience (UX): A great app isn’t just about functionality; it’s also about the experience. We prioritize UX/UI design to ensure your app is not only powerful but also easy and enjoyable to use.
 Cutting-Edge Technologies for Mobile App Development
 As your trusted App Developer in Miami, we stay on the cutting edge of technology and mobile app development trends. Our developers are proficient in the latest programming languages, frameworks, and tools to build apps that are fast, secure, and scalable.
 
 We work with a variety of technologies, including:
 
 Swift and Objective-C for iOS app development.
 Java and Kotlin for Android app development.
 React Native and Flutter for cross-platform app development.
 Backend Integration: Our team can integrate your app with existing back-end systems, cloud platforms, and APIs to ensure smooth functionality and data flow.
 Mobile App Marketing and SEO Optimization
 Having a great app is only half the battle—getting it into the hands of your target audience is equally important. As part of our mobile app development services, we also offer App Store Optimization (ASO) to help your app rank higher in the app stores, increasing visibility and downloads.
 
 We use strategies such as:
 
 Keyword Optimization: Identifying and integrating relevant keywords into your app’s title, description, and metadata to improve search rankings.
 High-Quality App Descriptions & Screenshots: Writing compelling descriptions and creating visually appealing screenshots that entice users to download.
 Ratings & Reviews Management: Encouraging positive reviews and managing feedback to improve the app’s reputation.
 Additionally, we assist with app marketing campaigns to promote your app through various channels, including social media, email marketing, and paid advertising. We ensure your app is positioned for success right from the start.
 
 Why Miami Businesses Choose Us for App Development
 Miami is a dynamic city with a vibrant tech scene and a diverse range of businesses. At Miami Web Design & SEO Services, we understand the local market and the specific needs of businesses in Miami. We know how to create apps that not only meet global standards but also cater to the preferences of Miami residents and visitors.
 
 We pride ourselves on delivering high-quality apps that help local businesses thrive. Whether you're a small startup or a large corporation, we bring the same level of dedication and expertise to every project, ensuring your mobile app serves as a valuable tool for your business.
 
 Get Started with Your Mobile App Development Today
 If you’re ready to bring your app idea to life, Miami Web Design & SEO Services is here to help. Our team of expert App Developers is committed to providing end-to-end mobile app development services, from planning and design to development and marketing.2












