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 - "futuristic"
-
Work in a company where Github, StackOverflow, Slack is Blocked by a Firewall and Develop code which they think are futuristic but of Stone age :-(8
-
The riskiest dev choice...
How about "The riskiest thing you've done as a dev"? I have a great entry for that. and I suppose it was my choice to build the feature afterall.
I was working on an instance of a small MMO at a game company I worked for. The MMO boasted multiple servers, each of them a vastly different take on the base game. We could use, extend, or outright replace anything we wanted to, leading to everything from Zelda to pokemon to an RP haven to a top-down futuristic counterstrike. The server in this particular instance was a fantasy RPG, and I was building it a new leveling and experience system with most of the trimmings. (Talents, feats/perks, etc. were in a future update.)
A bit of background, first: the game's dev setup did not have the now-standard dev/staging/prod servers; everything ran on prod, devs worked on prod, players connected and played on prod, etc. Worse yet, there was no backup system implemented -- or not really. The CTO was really the only person with sufficient access. The techy CEO did as well, but he rarely dealt with anything technical except server hardware, occasionally. And usually just to troll/punish us devs (as in "Oops ! I pulled the cat5 ! ;)"). Neither of them were the most reliable of people, either. The CTO would occasionally remote in and make backups of each server -- we assumed whenever he happened to think of it -- and would also occasionally do it when asked, but it could take him a week, sometimes even up to a month to get around to it. So the backups were only really useful for retreiving lost code and assets, not so much for player data.
The lack of reliable backups and the lack of proper testing grounds (among the plethora of other issues at the company) made for an absolutely terrible dev setup, but that's just how it was, and that's what we dealt with. We were game devs, afterall. Terrible or not, we got to make games! What more could you ask for!? It was amazing and terrible and wonderful and the worst thing ever, all at the same time. (and no, I'm not sharing the company name, but it isn't EA or Nexon, surprisingly 😅)
Anyway, back to the story! My new leveling system also needed to migrate players' existing data, so... you can see where this is going.
I did as much testing and inspection of my code as I could, copied it from a personal dev script to the server's xp system, ... and debated if I really wanted to click [Apply]. Every time I considered it, I went back to check another part or do yet more testing. I ended up taking like 40 minutes to finally click it.
And when I did... that was the scariest button press of my life. And the scariest three seconds' wait afterwards. That one click could have ruined every single player's account, permanently lost us players ...
After applying it, I immediately checked my character to see if she was broken, checked the account data for corruption or botched flags, checked for broken interactions with the other systems....
Everything ended up working out perfectly, and the players loved all of the new features. They had no idea what went into building them, and certainly had no idea of what went into applying them, or what could have gone wrong -- which is probably a good thing.
Looking back, that entire environment was so fragile, it's a wonder things didn't go horribly wrong all the time. Really, they almost never did. Apocalypses did happen, but were exceedingly rare, and were ususally fixed quickly. I guess we were all super careful simply because everything was so fragile? or the decent devs were, at least. We never trusted the lessers with access 😅 at least on the main servers where it mattered. Some of the smaller servers... well, we never really cared about those.
But I'm honestly more surprised to realize I've never had nightmares of that button click. It was certainly terrifying enough.
But yay! Complete system overhaul and migration of stored and realtime player data! on prod! With no issues! And lots of happy players! Woooooo!
Thinking back on it makes me happy 😊rant deploying straight to prod prod prod prod dev server? dev on prod you chicken migration on prod wk149 git? who's a git? you're a git! scariest deploy ever game development1 -
❤️ Swift ❤️
for (i = 0; i < polygon.count; i++) {
// some print statement
} **
This highly advanced and futuristic piece of code made the Swift compiler eat 14+ GB of RAM while trying to syntax-highlight, before crashing my 8 GB-equipped Macbook.
** yeah, "C-style 'for' loopz syntaxx deprecated since Swift 3 blah blah". Let's reinvent an industry-standard for no goddam reason, because Swift is the FUTURE, oh, and because fuck you by the way.2 -
We should buy an island, build futuristic building/homes/everything, and then combine our coding power to create a bunch of crazy awesome stuff10
-
Nearly same time as the "don't be evil" got removed from google pages, an old internal video leaked about some futuristic concept, where the AI would try to gather as much data as possible from a user and if not possible, suggest devices with discount (e.g. a scale), that can return that data to the AI or if there's no fitting product, just print or make it based on the previously collected data (favorite color, ..) and suggest that to the user to buy, all since google duplex, anything mentioning google has been outscoring the previous idea 😶
src: https://youtu.be/iqUCX5rPQug
2 -
so I started a side project a while ago.
the only thing it could do was to create some files with desired names and extensions. so this was basically a pretty simple editor.
I left this project with no future plans for a month or so until I started working on it again this week. I added comments to the editor, a console user interface.
the ui isn't futuristic. the program runs in the console. it just lists all the files and folders where the program is currently located in. in the beginning it could take user input and that input was the location where the files created in the editor would be saved. then I thought: it would be more interesting if I created a folder in which I saved the files from the editor. so I did this thing.
then I thought, again: hey, this console is pretty boring and stuff. why should I add some special commands? and so I did.
now you can create an empty folder, before you created a folder and saved at the same time the files created in the editor. now you can open another folder in which you can do the same stuff as before. you can get the current location of the folder you are currently in, so you don't get lost in your fancy computer. you can delete a folder completely, set color, reset color.
but one thing that I lost almost ONE FREAKING HOUR ON IT TO MAKE THE USER EXPERIENCE BETTER was the following: when creating a folder, either empty or with the files from the editor, the program automatically opens the folder, not in the console(hey, I didn't thought of that) but in the file explorer from the os. now it only works for windows and windows explorer because I used system(const char*). I know it's not portable or efficient but I just wanted things to work, I will optimise it later.
the thing that made me lose that one hour debugging was figuring out how to open that file.
ok, so I used windows api with GetCurrentDirectory, I knew how to use system, I knew how to form the path that would match up with the folder, I almost knew how to open the folder with system().
the problem was that I had the path complete, but if the folder had white spaces system() wouldn't recognise the freaking command!
so the string with the path would also contain the command used in system() and I would just .c_str() the string so it could work. as an example my wrong way to make the path was this:
"start C:\\path"
can you figure out what is the problem?
you don't?
it's just so trivial.
how cannot you figure it out?
of course you NEED to put "explorer" between the start command and the actual path!
pffft, you idiot! so easy to figure it out.
so yeah, the right way to open a folder is like this:
"start explorer C:\\path to heLL!!"
p.s.: I still don't understand why putting explorer works and without it doesn't. without explorer it just just says that path with the first word before the white space doesn't exist. -
I'm binge watching Person of Interest right now and I would like to know the community feels about it.
I feel that it is still futuristic and we aren't there yet. What do you think?1 -
It seems he is trying to replace HTML with svg and canvas when basic html and css can be used to make beautiful dashboards.
Like i anticipated it is gonna be a ux cluster fuck, where most of the website is an ugly bootstrap contraception and some parts gonna look like futuristic. -
1. Languages will evolve to make as short as possible in terms of lines of code. Shorter syntaxes all the way.
2. Each platform/part of architecture will have only 1-2 languages to code in. There will be convergence of languages. This is more to do with industry usage. Underground new languages will still continue to flourish.
3. Focus will be more on natural language. Both as research item for understanding humann languages better and possible movement of coding languages in the direction of natural languages. Natural syntax as much as possible.
4. Softwares will be self learning. Every interaction will result in the software to evolve as per your usage. That would mean the same software will behave differently for every user. This will be basis user's interaction.
5. Less physical interaction. More to do with what the user thinks. Intuitive.rant wk127 languages interaction coding coding in future software development ai to overtake humanity soon futuristic future future is now1 -
Web designers should seriously stop using this ultra-slim Monsterrat font.
If you need a modern/futuristic-looking font for your web site, consider using Futura or Noto Sans / Open Sans, or Proxima Nova. If you really, really want Monsterrat, don't make it so slim that it becomes barely readable for the sake of trying to look wannabe-"modern". You are just humiliating yourself.4 -
Soo apparently , UGGGGRHHHH, edge the soo futuristic browser won't fucking render avif, the fuck why , someone explain why?
Client uses edge so now he can't see any images , sth that works soo well everywhere18 -
I have observed too many times that I have the ability to be futuristic about technology, like software, gadgets, etc..and somehow few years or months later..they get rolled out....is that a gift or am missing something I should be doing right now? Advice pls..4
-
Ordered something techy from the US and A, because it looked like what I wanted, smelled like what I wanted, and I thought it'll taste like what I wanted.
It arrived today and ooooohhh boy was I wrong.
It's kind of like if you won a car.
But you have no drivers license.
And it is so futuristic, it runs on unicorn piss.
Good luck getting that anywhere.
Another tech-brick on the wall.
Well i could write some tech publications to give them a chance to cover it in depth first, since everyone else will be gaged by NDAS until like q2 2019.
Naaaa, I probably wouldn't even respond to myself if I wrote.
"Nice try kiddo, did hell freeze over?"rant someone could get sued someone could loose a job someone fucked up tech brick brick someone fucked up big time haha to new to be supported i didn't sign any nda did hell freeze over? fuck2 -
Explore one of Dubai’s most immersive and futuristic attractions with your AYA Universe Dubai tickets. Located in Wafi City Mall, AYA Universe is an otherworldly experience that blends art, technology, and storytelling across 12 stunning zones filled with interactive light shows, soundscapes, and motion-tracking environments.
Perfect for all ages, AYA Universe Dubai offers a journey through galaxies, gardens, and glowing landscapes – ideal for Instagram-worthy photos and unforgettable memories. Tickets are affordably priced and available for online booking with special deals and combo offers.
Book your AYA Universe Dubai tickets today and dive into a magical digital universe like no other in the heart of Dubai!5 -
Crypto Asset Recovery with Captain WebGenesis Crypto Recovery Center
With the rise of Bitcoin and other digital currencies, many of us have invested significant amounts of money into this futuristic financial system. However, the risks are real, and the unfortunate can happen. I recently faced this nightmare by losing a hooping $198,000, but thanks to CAPTAIN WEBGENESIS CRYPTO RECOVERY CENTER, my lost crypto was miraculously recovered. He took the time to understand my situation and explained the recovery process in detail. His confidence and knowledge alleviated my fears, and I felt reassured that I was in capable hands. It was clear CAPTAIN WEBGENESIS CRYPTO RECOVERY CENTER had a deep understanding of blockchain technology, wallet structures, and the nuances involved in cryptocurrency recovery.
(Captainwebgenesis@ hackermail. com)
Call or Whatsapp +1(501)436-9362)
Visit website: captainwebgenesis. com1 -
In a time when truth is often buried behind screens and secrets, these cyberpunk programmers are true digital vigilantes. I reached out with deep suspicions about my partner’s late-night texts and constant phone guarding. Within days, they exposed everything — from hidden messages to secret apps I never knew existed. They used advanced phone cloning techniques and remote access tools to show me exactly what was going on. It wasn’t just about catching a cheater; it was about reclaiming my peace of mind.
Beyond personal investigations, their skills extend into parental control and child safety.
These programmers operate with professionalism, efficiency, and a futuristic edge. It felt like something out of a sci-fi film — but real, and incredibly effective. They're not just tech experts; they’re digital detectives with a mission to uncover truth and protect clients.
Highly recommend if you’re dealing with cheating suspicions, phone security breaches, or simply want to ensure your loved ones are safe. Discreet, reliable, and incredibly effective. Just reach them at cyberpunkprogrammersDOTcom2 -
Ravi Smart City Lahore Location: A Game-Changer in Urban Development
Lahore, the heart of Punjab and one of Pakistan's most vibrant cities, is evolving rapidly with new urban development projects. Among them, Ravi Smart City stands out as a landmark initiative. Backed by the government and designed to be a sustainable, tech-integrated, and eco-friendly urban center, one of the most frequently asked questions is:
“Where is Ravi Smart City Lahore located?”
Let’s dive deep into the Ravi Smart City Lahore Location, and why it holds massive potential for residents, businesses, and investors.
Where is Ravi Smart City Located?
Ravi Smart City Lahore Location is on the northwestern side of Lahore, beautifully planned along the Ravi River. This futuristic city is strategically positioned near Kala Shah Kaku and is close to several major access points such as:
M-2 Motorway (Lahore-Islamabad)
Lahore Ring Road (Eastern Loop)
GT Road (N-5)
Shahdara Interchange
LDA City and Lahore Smart City proximity
This premium location of Ravi Smart City Lahore ensures excellent connectivity and places it at the center of major trade, residential, and commercial activity.
Why the Ravi Smart City Lahore Location Matters
1. Proximity to Central Lahore
The Ravi Smart City Lahore location guarantees quick access to Lahore’s main urban and business centers. Residents will be just 20–30 minutes away from areas like Gulberg, DHA, and Airport Road, making it ideal for daily commuters.
2. Strategic Positioning Near Infrastructure
Situated close to both the Motorway and the Ring Road, this location makes intercity travel efficient and hassle-free. The Ravi Smart City Lahore Location is ideal for logistics, business setups, and urban migration.
3. Eco-Friendly and Sustainable Environment
Thanks to its riverside setting, the project is designed with sustainability at its core. The location of Ravi Smart City Lahore supports green living, smart waste management, and environmentally conscious development.
4. Growth Corridor for Future Investment
The Ravi Smart City Lahore Location lies within a major urban growth corridor under the Ravi Riverfront Urban Development Project (RRUDP). With IT parks, medical cities, education zones, and commercial centers planned, this area is set to become a powerhouse of economic growth.
Nearby Landmarks and Connectivity
Some of the key nearby landmarks that add value to the Ravi Smart City Lahore Location include:
University of Engineering & Technology (UET)
Allama Iqbal International Airport (approx. 40 min drive)
Shahdara Town and Railway Station
Orange Line Metro Station (future extension potential)
Ferozwala and Sheikhupura Industrial Zones
These well-connected landmarks make the location of Ravi Smart City Lahore ideal for both living and investment purposes.
Is Ravi Smart City a Good Investment?
Absolutely. The Ravi Smart City Lahore Location, with its central positioning, infrastructure access, and future-forward planning, makes it a high-yield investment opportunity. Whether you want to build a dream home or secure long-term returns, this is the location to watch.
Final Thoughts
The Ravi Smart City Lahore Location is more than just a spot on the map—it represents the future of smart urban living in Pakistan. From sustainability and tech integration to economic development and accessibility, it has everything modern city life demands.
If you're looking to invest in Lahore's next big real estate opportunity, start by exploring the Ravi Smart City Lahore Location—the heart of a smart and sustainable tomorrow.
1

