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 - "8 spaces"
-
Anyone looking for something interesting to do???
Step 1) understand how basic circuitry works on a bread board nothing too fancy. ( Implement NAND, AND, ADDER, SUBTRACTOR)
Step 2) learn about microprocessors and how OS works
Step 3) learn assembly
Step 4)write a basic assembler and understand how loaders and linkers works !
Step 5) write a kernel with very basic features like memory management and process management and some drivers for IO
Step 5) write an emulator for some simple systems .! ex chip-8.
Step 6) read about compiler theory and automata
Step 7) write a basic Python interpreter that compiles (not interpreter) to native assembly.
Step 8) implement TCP stack .
Step 9) learn as much as u can about complexity measurement ), data structures and algorithms using C or C++ it's very important ( familiarity with pointers and thus computer memory )
Step 10) learn any high level language of choice like Python or Ruby.
Step 11) stop debating over tabs vs spaces , emacs vs vim , angular vs vue, php vs Python , OOps vs procedular vs functional ( just know about all of them and when to use but don't fucking debate over which one is superior )..
Step 12) live happily and be healthy.30 -
As most of you already know, I'm a writer. I've noticed the similarities between writing and programming:
1. Tabs vs spaces.
2. Both typically spend all their time with a single project.
3. Coffee... (Unless you're a tea lover like me.)
4. Both typically have no life.
5. Debugging is hell for programmers and editing/revising is hell for writers.
6. Strict clients for programming and strict editors for writing.
7. Semicolons... They're useful but everyone despises them.
8: Emotions. Programmers are angry at their code. (Why won't you work?) and writers feel depressed about their writing. (Why did you die?)
9. War of the programs. For programmers: Vim vs VScode vs Atom vs Sublime and etc. For writers: MS word vs Google docs vs Libre office and etc.
10. Online forums. Stack overflow and Writer's digest.
11. Typing... Typing... All day long.
These are only a few similarities. I've noticed a lot more than this.16 -
aslkfjasf. i've spent 12 hours today (and lots more over the past two days) trying to reproduce a bug that my [sort of] coworker insists is present. I haven't seen any proof of it anywhere, let alone steps to reproduce it.
I've poured through the code, following all of its tangled noodles of madness from start to fuck-this-shit. I've read and reread the pile of demon excrement so many times i can still read the code when i close my eyes. so. not. kidding.
anyway, the coworker person is getting mad because i haven't fixed the bug after days, and haven't even reproduced it yet. This feature is already taking way too fucking long so I totally don't blame him. but urghh it's like trying to unwind a string someone tied into a tight little ball of knots because they were bored.
but i just figured out why I haven't been able to reproduce it.
the stupid fucking unreliable dipshit ex-"i'm a rockstar and my code rocks"-CTO buffoon (aka API Guy, aka the `a=b if a!=b`loody pointless waste of mixed spaces and tabs) that wrote the original APIs ... 'kay, i need to stop for breath.
The dumbfuck wrote the APIs (which I based the new ones on mostly wholesale because wtf messy?), but he never implemented a very fucking important feature for a specific merchant type. It works for literally every type except the (soon-to-be) most common one. and it just so happens that i need that very specific feature to reproduce this bug.
Why is that one specific merchant type handled so differently? No fucking idea.
But exactly how they're handled differently is why I'm so fking pissed off. It's his error checking. (Some) of his functions return different object types (hash, database object, string, nullable bool, ...) depending on what happened. like, when creating a new gift, it (eventually...) either returns a new Gift object or a string error basically saying "ahhh everything's broken again!" -- which is never displayed, compared against, or recorded anywhere, ofc. Here, the API expects a Hash. That particular function call *always* returns a Hash, no matter what happens in the myriad, twisting, and interwoven branches the code could take. So the check is completely pointless.
EXCEPT. if an object associated with another object associated with the passed object (yep) has a type of 8. in which case, one of the methods in the chain returns a PrintQueue that gets passed back up the call stack. implicitly, and nested three levels in. ofc.
And if the API doesn't get its precious Hash, it exclaims that the merchant itself is broken, and tells the user to contact support. despite, you know, the PrintQueue showing that everything worked perfectly. In fact, that merchant's printer will be happily printing away in the background.
All because type checking is this guy's preferred method of detecting errors. (Raise? what's that? OOP? Nah, let's do diverging splintered-monolithic with some Ruby objects thrown in.)
just.
what the crap.
people should keep their mental diarrhea away from their keyboards.
Anyway. the summary of this long-winded, exhaustion-fueled tirade is that our second-most-loved feature doesn't work on our second-most-common merchant type.
and ofc that was the type of merchant i've been testing on. for days. while having both a [semi] coworker and my boss growing increasingly angry at me for my lack of progress.
It's also a huge feature, and the boss doesn't understand that. (can't or won't, idk)
So.
yep.
that's been my week.
...... WHAT A FUCKING BUFFOON!rant sheogorath's spaghetti erroneous error management vomit on her sweater already your face is an anti-pattern dipshit api guy two types bad four types good root swears oh my3 -
I'm editing the sidebar on one of our websites, and shuffling some entries. It involves moving some entries in/out of a dropdown and contextual sidebars, in/out of submenus, etc. It sounds a little tedious but overall pretty trivial, right?
This is day three.
I learned React+Redux from scratch (and rebuilt the latter for fun) in twice that long.
In my defense, I've been working on other tasks (see: Alerts), but mostly because I'd rather gouge my freaking eyes out than continue on this one.
Everything that could be wrong about this is. Everything that could be over-engineered is. Everything that could be written worse... can't, actually; it's awful.
Major grievances:
1) The sidebars (yes, there are several) are spread across a ridiculous number of folders. I stopped counting at 20.
2) Instead of icon fonts, this uses multiple images for entry states.
3) The image filenames don't match the menu entry names. at all. ("sb_gifts.png" -> orders); active filenames are e.g. "sb_giftsactive.png"
4) The actions don't match the menu entry names.
5) Menu state is handled within the root application controller, and doesn't use bools, but strings. (and these state flags never seem to get reset anywhere...)
6) These strings are used to construct the image filenames within the sidebar views/partials.
7) Sometimes access restrictions (employee, manager, etc.) are around the individual menu entries, sometimes they're around a partial include, meaning it's extremely difficult to determine which menu entries/sections/subsections are permission-locked without digging through everything.
8) Within different conditionals there are duplicate blocks markup, with duplicate includes, that end up render different partials/markup due to different state.
9) There are parent tags outside of includes, such as `<ul>#{render 'horrific-eye-stabbing'}</ul>`
10) The markup differs per location: sometimes it's a huge blob of non-semantic filthiness, sometimes it's a simple div+span. Example filth: section->p->a->(img,span) ... per menu entry.
11) In some places, the markup is broken, e.g. `<li><u>...</li></u>`
12) In other places, markup is used for layout adjustments, such as an single nested within several divs adorned with lots of styles/classes.
13) Per-device layouts are handled, not within separate views, but by conditionally enabling/disabling swaths of markup, e.g. (if is_cordova_session?).
14) `is_cordova_session` in particular is stored within a cookie that does not expire, and within your user session. disabling it is annoying and very non-obvious. It can get set whether or not you're using cordova.
15) There are virtually no stylesheets; almost everything is inline (but of course not actually everything), which makes for fun layout debugging.
16) Some of the markup (with inline styling, no less) is generated within a goddamn controller.
17) The markup does use css classes, but it's predominately not for actual styling: they're used to pick out elements within unit tests. An example class name: "hide-for-medium-down"; and no, I can't figure out what it means, even when looking at the tests that use it. There are no styles attached to that particular class.
18) The tests have not been updated for three years, and that last update was an rspec version bump.
19) Mixed tabs and spaces, with mixed indentation level (given spaces, it's sometimes 2, 4, 4, 5, or 6, and sometimes one of those levels consistently, plus an extra space thereafter.)
20) Intentional assignment within conditionals (`if var=possibly_nil_return_value()`)
21) hardcoded (and occasionally incorrect) values/urls.
... and last but not least:
22) Adding a new "menu sections unit" (I still haven't determined what the crap that means) requires changing two constants and writing a goddamn database migration.
I'm not even including minor annoyances like non-enclosed ternaries, poor naming conventions, commented out code, highly inefficient code, a 512-character regex (at least it's even, right?), etc.
just.
what the _fuck_
Who knew a sidebar could be so utterly convoluted?6 -
In my uni course "Algorithms and Data structures" we use Java. Fine. Definitely not my preferred language but it's not like I have a choice.
Anyway, our teacher uploads code files for us to use as reference/examples. The problem is, they look like this. Not only does she not indent the code, she also uses a charset that is not utf-8.
In the rare cases where she does indent the code, she uses THREE, yes THREE spaces...
23 -
Tl;dr stupid password requirements
Begin quote
Password must not contain any non-alphanumeric characters.
Your Password change was not accepted. Enter your current Password correctly following the rules for New Passwords. Please try again.
Passwords must be between 8 and 12 characters in length and MUST contain each of the following:
At least 1 lower case character (a-z)
At least 1 upper case character (A-Z)
At least 1 numeric digit (0-9)
But, MUST NOT contain:
more than five repeating characters in a row (e.g. 111111356 would not be valid, but 112233445 would be valid)
spaces or other special characters
NOTE: Your new password cannot be the same as any of your 10 previous passwords.
End quote
Are you fucking kidding me? Only (26+26+10)^8 through
(26+26+10)^12 different passwords to go through? It's like the oxygen wasters that built this website give zero fucks about security.
Why? This is the site that manages money and investments. Just allow passwords up to 64 characters, allow any ascii character and just fucking encod the characters to prevent any Injunction.4 -
Ohh man i fucked up bad. 5 days as intern, and i fuck up really bad with my ego and ignorance.
I love my this company. A great environment, lots of people to learn from , i am given reasonable tasks and i feel happy to complete them. But what happened today was weird and fucked up.
I have never worked at a place with seniors designers tech leads and more people with positions. I have also worked with a lot of competitive people who are always in a race to be first.
And how do we come first? Have a lot of knowledge, hear the smallest of detail and sprint towards goal (because the combination your knowledge, assumptions and speed is enough to make you reach to the top). You don't ask for specific details, because they are obvious. And that's me in short.
Today i fucked up.
Mistake #1 ) first i was given a small task by my senior. It was a 20 mins task max if i had done it the normal noobie way . But i am a pro in mind , i have to do it with all the architecture , even if i don't understand why. So i asked for 50 mins. They gave it and did not had a problem with my time, but with the way i wrote my code.
He was like "who told you to make it like this ? Why did you made it like this?" And was visibly irritated. And i was like super chill saying "i don't know the why, but i know its correct way of using it" , pissing him even more. In my eyes he's just a super friendly sr, more like a bro and wouldn't mind some cheeky answers. And he didnt show any
consequences for that time.
Mistake #2 this is super fucked up. Our office is going under some renovation & interns were asked to sit in the co-working spaces (outside of the office). It was already very disturbing and i had to go to office every few minutes.
So after lunch this happens : We are working on a new module that already has a tonne of screens and logics. I have made a small part which is from the middle and now we can go both in the forward or in the backward direction.(Also, its quite a new module whose idea was recently discussed and decided. And weirdly i am also being treated like a core member as the ceo once himself asked what would he my flow for doing things in this. i am in direct contact and under direction of backend , designers , ceo and My senior and many ppl are giving me tasks ) And... Aagh fuck it. .. its a long story and i don't feel like repeating it but
inshort :
got a task,
didn't understood it completely and thought its my task to figure it out, took a long time figuring it my self ,
techlead/designer somehow changed my and my sr. direction of flow even tho we were taking a different approach
I sit in a noisy and irritating place
Techlead/designer comes during the time when i am figuring out the solution(already overtime the one in point #2) nags for result.
I get in an argument with him, justifying for my time and arguing that it's difficult to think technical logics for that design
( truth be told, it WAS a difficult logic which he thought was too easy. It consisted of 3 variables and 8 states we were doing different works for 4 of them and rejecting 2 and ... I don't know, i had got that wrong . But that shouldn't had been my problem to solve. I should have gone to my senior and didn't get into argument with tech lead ). It think i might have offended him too.
After he left, i am so angry on him that after sometime my senior comes and i misbehave with him. He just asks to meet me before i go, and i do so. During the meeting we discuss this whole fuck up and how many times i showed him my ego and indiscipline. And then i realise what a fuckup i did due to my ego and lack of asking, blindly following my own over confidence and blindly following or arguing with others.
Fuck fuck fuck6 -
Regarding the never ending tabs vs spaces debate; who on earth over at GitHub thought 8 spaces was a good default value for tabs in code?4
-
I know this topic is tired and this isn't supposed to be a pure "REEEE SPACES BAD" kinda rant but I still don't understand why people would ever use spaces over tabs for indentation. I'm genuinely curious so please give me your arguments in favor of spaces because I just don't understand
So here's my position:
Tabs are objectively better than spaces in every single way
(I know that IDEs also do some of these for spaces, more on that later)
1. They are typed with one key press
2. They can be removed with one keypress
3. They allow for individually configurable width (some people prefer 2 and some 4 width)
4. They take up less memory (kinda irrelevant, but still)
5. You can properly navigate your code using the arrow keys which is much faster than using the mouse while typing
6. You don't have problems with accidentially having one too much or one too little
7. You don't have problems when copy pasting or moving code around (e.g. refactoring)
8. Code is much easier to select with the mouse, and
9. it's much easier clicking the right spot with the mouse where you want to continue typing, which is often at the start of a line
Apart from specific alignment, where spaces are fine (but which also almost never comes up), I just can't see a single thing where spaces are better at. So much so that most IDEs have to *pretend* that they're tabs when typing and removing them. It's so ironic yet people still defend it and big companies still use them.
I feel like I'm going mad 😨53 -
Do you too have 8 space tab character in Windows 10?
It's in notepad, cmd and other stuff.
It's fucking wide af.
13 -
LLMs will FIX the internet, not ruin it; an argument:
Sam Altman recently acknowledged the large presence of LLMs on twitter and stated that he was finally starting to believe in dead internet theory.
And I couldn't agree more nor be any happier.
I had a sudden realization that social media has slowly crept from being "connect to your friends" to "try not to commit suicide as you climb the infinite social ladder amongst people who are not your peers"
... and I think it deserves to die. Furthermore, I think the only thing that could kill it is the greed that we're seeing finally strangle social media today.
People will never quit social media just because it's *bad for them*. It's too exciting, too interesting.
People will only quit social media if it itself becomes *bad*.
And when it becomes overbearingly full of corporate "brand personalities", LLM slop accounts churning out 500 posts a day to gain $4 in ad revenue, and 100 different AI bot accounts that add nothing to the conversation...
... that's when it's gonna be *bad* enough for people to reduce their usage of it. It will once again encourage the spaces we had before greed took a strangle-hold. Private areas for just you and your real-life friends. To be safe from the corporate slop bots, the LLMs, the 8-second videos of kittens performing impossible tasks... just you and your buds keeping up with each other.
This is the self-healing that nature is so good at. It's incredible how it always happens.12 -
I haven't chimed in on this spaces vs tabs war at all on this platform, mostly because I personally don't care and adapt to my work's/project's conventions, but I just have to put this out there now.
I am honestly so confused about the entire thing since seeing a lot of recent rants on the topic. I was originally conditioned to believe that the majority of devs in the world were FOR spaces over tabs. Thus, whenever I start a project, I default to spaces.
Contrary to that, it seems most devs here (or at least those who enjoy instigating some banter) actually prefer tabs. Now, I recently binged Silicon Valley and can't help but wonder if people around here are simply jumping on that band wagon for the sake of the joke.
Side note: I also thought Vim was more widely used over Emacs but Richard Hendricks asserts otherwise there too.
I know the main arguments for both sides - spaces yield code that looks the same in all editors while tabs produce smaller code. Anybody who argues that spaces are less efficient because you need to physically press the space bar 2/4/8/etc times is just retarded. If soft tabs weren't a thing, I don't think anybody would be on the side of spaces and for that reason I believe that episode in Silicon Valley was just trying to be overdramatized and push peoples' buttons.
All of that being said, I wonder if it's just a generational/field of development thing. Would it be wrong to propose that more older devs in the field of embedded and OS development (using C and the like) are in the spaces party while younger devs perhaps more into application and web dev (Javascript, C#, and shit) are all about tabs? I'm actually fresh out of university, but like I said my preference is spaces, though I don't really care.
I'm actually interested to find out what kind of environments breed these opposing mindsets so what do you guys think?2 -
Am I the only madman writing C++ with 8 spaces per tab? (Converted to spaces, to be sure. What are we, savages?!)
-
The project that I'm assigned to was developed in haste because of some competition with other vendors.
The Devs who worked on the original code didn't really follow each others spacing conventions. So now there are files which differ in spacing. A lot. And I'm used to the standard 8 spaces=1 tab convention.
Every frikkin time I have to even look at the code, I have to refactor it (but not save it) and then undo the refactoring because when I try to check in the refactored code, every line shows a conflict.
Every line.
So if I have to work with code which was written by more than one person, my life's a living hell.
Ctrl+Shift+F people! Use it or lose it!6 -
Option to add on profile, tabs or spaces.
Windows, Mac, or Linux
Same line { or next line
4 space tab or 8 space...
Also, I think it would be cool to introduce polls. Simple "Should I take a) a job with x or b) a job with y" and people could click a or b in addition to comments.1 -
My most consistent enemy at work is this fucking system I have to work in, holy shit. Not only is there no default support for shit you would really think there should be, no real control over the interfaces with the UI, and the far too complicated method they use to magically make said interfaces, but we also have to use their build environment to build this shitty thing. So builds take anywhere from 4 to 12 minutes a pop and ridiculous style guide will stop the build, no questions asked, for dumb violations like spaces between if and (. And it doesn't catch these, sometimes, until 7 or 8 minutes in. I have wasted so much time on this. And seeing as we work in 2 week sprints that are really 7 to 10 day sprints based on whatever hair goes up my bosses ass and have to deliver feature complete in those two weeks, I can't really afford all this nonsense. I used to joke about having an alcohol problem, but I think I actually may be developing one at this point.
-
It's time to reconcile the religious war with a compromise: How about we use spaces for lines with indent <= 8 chars and tabs for deeper indents?
Or maybe tabs in all functions returning strings and spaces in all other functions?2 -
so.
i had a stupid idea that'd let me do a project i had planned and abandoned a while back after getting experience with the new project.
problem: detect and manage empty space in a massive file, allow adding data to those empty spaces from files, and fill in a table in a designated empty space with where dynamically-loaded things are. In Python.
I tried JUST detecting empty space, and Python would break out of loops for no reason at all just at random. "run bottom to top through this file until a non-00h byte is found" would either break out of the loop way earlier than should be possible (8 or 9 bytes into a 32KB empty file) or run way into non-zerofill areas before breaking the loop.
Am I just retarded? Is this more Python conditional fuckery? i'm so lost that it's just on hold for now (and i think i lost that script too) -
We-Gotchu Logistics: Premium White Glove Delivery Services in Austin, TX
At We-Gotchu Logistics, we specialize in providing the highest quality white glove delivery services to ensure your valuable and delicate items are transported with care and precision. Whether you're moving furniture, appliances, luxury items, or even large-scale spa and hot tub deliveries, our team is trained to handle every aspect of the delivery process with professionalism and attention to detail. Based in Austin, TX, we take pride in offering a wide range of white glove delivery services designed to meet the unique needs of our clients.
Why Choose We-Gotchu Logistics for Your White Glove Delivery Needs?
1. Furniture White Glove Delivery
When it comes to delivering furniture, especially high-end or fragile pieces, you need a team that understands the importance of careful handling. Our furniture white glove delivery service ensures that your items arrive at their destination in perfect condition. We take care of everything, from the moment we pick up your furniture to placing it exactly where you want it in your home. Our team uses specialized equipment and techniques to protect your furniture, ensuring it’s delivered with care, even in tight spaces.
2. Appliance White Glove Delivery
Large appliances, such as refrigerators, washing machines, and ovens, require special attention when being transported. We-Gotchu Logistics offers appliance white glove delivery services that go above and beyond basic transportation. We handle your appliances with extreme care, ensuring they are securely packaged, transported, and placed in their designated location. Our professional team also ensures proper installation, so your appliances are ready to use as soon as they arrive.
3. Luxury Item Delivery Service
When it comes to delivering luxury items, you can't afford to take chances. We-Gotchu Logistics provides a luxury item delivery service designed to meet the unique needs of high-value and delicate items. Whether you’re transporting fine art, designer furniture, or expensive electronics, our team uses specialized techniques to ensure the safe and secure transport of your precious items. We offer a fully tailored service to ensure your luxury items are handled with the utmost care from start to finish.
4. Fragile Item Transport with Care
For items that are delicate or easily damaged, such as glassware, antiques, or electronics, We-Gotchu Logistics offers fragile item transport with care. We understand the importance of careful packing, secure handling, and timely delivery. Our team is trained in the best practices for protecting fragile items during transit, ensuring they arrive at their destination in pristine condition. From the moment we load your items onto our trucks to the final placement, you can trust us to handle them with the utmost care.
5. White Glove Setup and Installation
Many items, such as furniture, appliances, and electronics, require setup and installation upon delivery. We-Gotchu Logistics offers a white glove setup and installation service to ensure that your items are not only delivered but also properly set up and ready for use. Whether it’s assembling furniture, installing appliances, or setting up electronics, our team has the skills and knowledge to handle any setup job, ensuring everything works perfectly before we leave.
6. Professional White Glove Movers
At We-Gotchu Logistics, our team consists of professional white glove movers who are trained to handle even the most complex and high-value deliveries. Whether you're moving a few pieces of furniture or an entire home, we provide the same level of care and attention to detail. Our movers are experienced in navigating tight spaces, ensuring that your items are carefully transported without damage. When you choose We-Gotchu Logistics, you can expect a smooth, hassle-free moving experience.
7. Spa and Hot Tub White Glove Delivery
Delivering spas and hot tubs requires specialized equipment and handling to ensure everything arrives safely. At We-Gotchu Logistics, we provide spa and hot tub white glove delivery services that are tailored to the unique needs of these large, delicate items. From safe transportation to expert placement in your home, we handle every detail with precision. Our team ensures that your spa or hot tub is delivered, installed, and ready to be used, with no stress or hassle on your part.
8. White Glove Service for Cold Plunge
Cold plunge tubs are an investment in health and wellness, and they require careful handling during transport and delivery. We-Gotchu Logistics provides a white glove service for cold plunge delivery, ensuring that your tub is transported safely and set up precisely where you want it. From the moment it leaves our warehouse to its final placement in your home or facility, we take extra care to ensure that everything is perfect.1 -
Firenze Flora LLC: Your Trusted Destination in Dubai’s Flower Market
When it comes to finding the perfect blooms for any occasion, Firenze Flora LLC stands out as a leading name in Dubai’s vibrant flower market. Whether you're planning a wedding, corporate event, or simply looking to brighten up your space, we specialize in providing exquisite floral arrangements that reflect both elegance and creativity. Located in the heart of Ras Al Khor Industrial Area 2, at 87 Sanna's Street Warehouse #8, Plot No 73 DM 613-1067, Dubai, we are proud to serve as your go-to destination for premium flowers in Dubai.
At Firenze Flora LLC, we not only offer a wide selection of fresh flowers but also provide expert floral design services to ensure your arrangements meet your exact needs. Our team is passionate about flowers and dedicated to offering the finest selections, sourced both locally and internationally. Whether you're looking for classic roses, exotic orchids, or seasonal blooms, we have something to suit every occasion.
Why Choose Firenze Flora LLC in the Flower Market?
1. Premium Flower Selections
As a prominent player in Dubai’s flower market, we are committed to offering a diverse range of premium flowers that cater to every event and personal preference. Our extensive selection includes roses, lilies, tulips, orchids, peonies, and seasonal blooms. With us, you’ll find flowers that are handpicked for their beauty, freshness, and vibrant colors. Whether it's for a wedding, anniversary, or corporate event, our flowers are perfect for any occasion.
2. Expert Floral Design Services
What sets Firenze Flora LLC apart in the competitive flower market is our personalized floral design services. We don’t just sell flowers – we create stunning, bespoke floral arrangements that capture your vision. From elegant centerpieces to grand installations, our expert florists work with you to design arrangements that elevate your event and reflect your style.
3. Local and International Sourcing
In the bustling flower market of Dubai, we pride ourselves on offering the best of both worlds. Our flowers are sourced from trusted local growers and international suppliers, ensuring that we always have access to the freshest, most vibrant blooms. Whether you prefer local flowers with a touch of Dubai’s natural beauty or exotic imports that add a unique flair, we bring the best selections to you.
4. Full-Service Floral Solutions
At Firenze Flora LLC, we go beyond just providing flowers. We offer a complete floral experience, from the initial consultation to the final design and setup. Whether you need flowers for weddings, corporate events, private parties, or home decor, we provide full-service floral solutions. Our team will work with you every step of the way to ensure your vision is brought to life flawlessly.
5. Timely Delivery and Setup
We understand the importance of timing when it comes to flower arrangements. As part of our commitment to quality service, we ensure timely delivery and professional setup of all floral designs. Whether you're hosting an event or arranging flowers for your home, you can count on us to deliver fresh flowers that are arranged and presented with care and precision.
Explore Our Services in the Flower Market
As a trusted name in Dubai’s flower market, we offer a variety of floral services, including:
Wedding Flowers: Stunning bouquets, aisle flowers, centerpieces, and floral installations.
Corporate Floral Arrangements: Elegant floral designs for office spaces, events, and conferences.
Special Occasion Bouquets: Custom-made bouquets for birthdays, anniversaries, and more.
Floral Installations: Large-scale installations such as flower walls, arches, and decorative displays.
Home and Office Decor: Beautiful, fresh flowers for daily or seasonal decoration to add charm to your space.
Visit Us at Our Location
If you are looking for a flower market experience with a personal touch, Firenze Flora LLC is the perfect place to find high-quality flowers and expert floral design services. We are conveniently located at 87 Sanna's Street Warehouse #8, Plot No 73 DM 613-1067, Ras Al Khor Industrial Area 2, Dubai.
Our team is eager to help you select the perfect flowers, create stunning arrangements, and make your event truly unforgettable. For more information or to place an order, feel free to contact us at +97145489618.2 -
Kesari Incense: Trusted Gujarat Dhoop Stick Suppliers and Rajkot Agarbatti Suppliers
Kesari Incense, located in Gujarat, is a leading name in the incense industry, renowned for providing high-quality incense products to customers across the region and beyond. We specialize in offering a wide range of incense products, including Gujarat dhoop stick suppliers and Rajkot agarbatti suppliers. Whether you are seeking to enhance your spiritual practices, create a calming atmosphere, or add a touch of fragrance to your surroundings, Kesari Incense has the perfect solution for you.
Gujarat Dhoop Stick Suppliers – Creating Aromatic Bliss
As trusted Gujarat dhoop stick suppliers, Kesari Incense is dedicated to providing high-quality dhoop sticks that serve a variety of purposes. Our dhoop sticks are crafted from premium ingredients, ensuring a smooth, consistent burn and a rich, long-lasting fragrance. Perfect for meditation, prayer rituals, or simply creating a soothing atmosphere, our dhoop sticks are made to provide a deep, aromatic experience that enhances any space.
Our dhoop sticks are made using natural materials that are free from harmful chemicals, ensuring that you enjoy a clean and eco-friendly experience. Whether you are looking to use them for religious purposes, or you just want to fill your home with a pleasant aroma, Kesari Incense provides the perfect product for your needs.
Rajkot Agarbatti Suppliers – Premium Incense Sticks for Every Occasion
As one of the leading Rajkot agarbatti suppliers, Kesari Incense is proud to offer a wide range of agarbattis designed to suit various preferences and needs. Our agarbattis are made from the finest natural ingredients, ensuring that each stick provides a clean, even burn with a rich, long-lasting fragrance. Whether you are looking for floral, woody, or herbal aromas, our extensive collection of agarbattis has something for everyone.
We understand the importance of quality when it comes to incense, which is why we take great care in crafting our products. As Rajkot agarbatti suppliers, we ensure that each product is made with the highest standards in mind. Our incense sticks are perfect for a variety of settings, including temples, homes, businesses, and relaxation spaces.
Why Choose Kesari Incense as Your Gujarat Dhoop Stick Suppliers and Rajkot Agarbatti Suppliers?
Premium Quality Products: We are committed to offering products made from the finest natural ingredients. Both our dhoop sticks and agarbattis are crafted to burn cleanly and provide lasting fragrances.
Wide Variety of Scents: Whether you prefer floral, spicy, woody, or herbal aromas, our wide range of dhoop sticks and agarbattis provides something for every taste and need.
Eco-Friendly: Our incense products are made with natural, eco-friendly ingredients, ensuring that you enjoy a safe and environmentally conscious experience.
Reliable Supply and Service: As trusted Gujarat dhoop stick suppliers and Rajkot agarbatti suppliers, we are committed to providing timely and reliable service, ensuring that our products reach you without delay.
Affordable and Accessible: We offer competitive pricing without compromising on quality, making our products accessible to both individual customers and businesses.
Customer Satisfaction: Our goal is to exceed customer expectations by providing high-quality incense products and exceptional service.
Contact Kesari Incense Today
If you are looking for reliable Gujarat dhoop stick suppliers or Rajkot agarbatti suppliers, look no further than Kesari Incense. Our premium-quality incense products are perfect for a wide range of uses, from spiritual practices to creating a calming atmosphere in your home or business.
For more information or to place an order, contact us at:
Phone: +91 7359248336
Address: RS. No. 348-2, Plot No. 8, Road, near Luminous Technocast, Dholra, Shapar, Gujarat 360024
Trust Kesari Incense for the finest dhoop sticks and agarbattis in the market – bringing the best fragrances to your world!1
