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 - "it's free real estate"
-
How many here know surge.sh? it seems each time I mention it somewhere, nobody knows it, checks it out and thanks me. It basically allows you to host a static webpage on their servers - for free and with custom domain if you wish. They are also the creators of Cordova/Phonegap.3
-
So yeah, my IDE is open and I'm just doing my daily rounds on SO when my rig suddenly feels like it's melting from playing Battlefield in 4K everything max. Chrome! Chrome! Chrome! It thinks were married, taking liberties with all my free real estate. You are out! Hey Firefox DE.1
-
Android studio gradle nightmares, cli not picking active jdk, intellij maven horrorshow, vscode being the nexus of perdition itself. When I'm dead and gone, scatter my ashes over sublime text. NEVER encountered a headache, ever. The setting for autosave is one forum visit away. 1000s of utilities at my fingertips, with shortcuts, not silly plugins. Neither hangs nor fusses irrespective of how many windows, projects, tabs I've got open. Gargantuan code real estate despite having a file panel and file preview. The only guys who got monokai right. Can open random editors and fill them with notes without first saving. A more intuitive vcs gui than even github desktop. More lightweight to download than an beep.ogg. Never lags cuz it wants to be powered by a wind turbine. It's free. Literally all the sorrows that terrorise my dev in its peers, all gone
Yes, it's not "integrated" to my de, in the sense that its intellisense is a glorified autocomplete for existing tokens. I guess, tradeoffs must be made. If you know the language well enough not to grope handheld by the ide, or in dynamic typed languages where red, squiggly lines will not bring your software down to its knees, it should be head and shoulders above those conartistes
Enterprise edition una -
It's CSS quick maffs time! Consider the following code:
<div class='container flex'>
<nav class='menu flex'>
<a href='#'>Menu item 1</a>
(arbitrary amount of links)
</nav>
<button type='button'>Sign in</button>
</div>
You want the layout to look like a horizontally scrolling, single line menu with a Sign in button to the right. Both container and menu are flex containers. So, here's the code for the menu:
.menu {
overflow: auto;
}
The problem is, as there is no flex-wrap, menu will not be wrapped, and it will occupy all the space it's needed to accommodate all the elements, breaking its container. Pesky horizontal scroll appears on the whole body.
Boubas will set menu's width to some fixed value like 800px, and this is a bouba approach because bye-bye responsiveness.
Here's what you should do:
.menu {
overflow: auto;
min-width: 0;
}
.menu * {
flex-shrink: 0;
}
This way, menu will occupy exactly the width of an empty div. In flexbox, its width will be equal to all free space that is not occupied by the Sign in button. Setting flex-shrink is needed for items to preserve their original width. We don't care about making those items narrower on narrower screens, because we now have infinite amount of horizontal real estate. Pure, inherent responsiveness achieved without filthy media queries, yay!
The menu will scroll horizontally just like you wanted.
aight bye14 -
Wolli Creek Property Management: Your Trusted Partner in Property Management
At Slick Property Management, we specialize in offering top-tier Wolli Creek property management services designed to help property owners, investors, and tenants achieve their goals with ease and efficiency. Located at Unit 120/95 Bonar St, Wolli Creek NSW 2205, Australia, our expert team is dedicated to delivering comprehensive and personalized property management solutions tailored to the unique needs of the Wolli Creek area and beyond.
Wolli Creek is one of Sydney's most rapidly growing suburbs, attracting both residential and commercial tenants due to its convenient location, modern infrastructure, and close proximity to the CBD, the airport, and key amenities. With an in-depth knowledge of the local market, Slick Property Management offers expert services that help property owners maximize returns, ensure tenant satisfaction, and protect the value of their investments.
Why Choose Slick Property Management for Wolli Creek Property Management?
Local Expertise in Wolli Creek
As a property management company based in Wolli Creek, we have an intimate understanding of the local area and the specific requirements of managing properties in this rapidly evolving suburb. Whether your property is residential, commercial, or a mix of both, we know the ins and outs of Wolli Creek’s real estate market, including rental trends, tenant demands, and property values. This local expertise allows us to provide strategic advice and management solutions that are tailored to your needs.
Comprehensive Property Management Services
At Slick Property Management, we offer a complete range of services to make managing your property simple and stress-free. Our Wolli Creek property management services include:
Tenant Placement & Leasing: We help you attract reliable, high-quality tenants through effective marketing, comprehensive screening, and competitive leasing terms. Our tenant placement process is designed to ensure you get the best fit for your property.
Rent Collection & Financial Reporting: Our team handles the collection of rent and ensures timely payments. We also provide detailed financial reporting, giving you complete visibility of your property's income and expenses.
Maintenance & Repairs: We handle all property maintenance, from regular inspections to emergency repairs, ensuring your property remains in excellent condition and tenants are satisfied.
Lease Renewals & Rent Reviews: We proactively manage lease renewals and conduct periodic rent reviews to ensure that your property remains competitive in the market while maximizing your rental income.
Legal Compliance: We stay updated on the latest property laws and regulations, ensuring your property complies with all necessary legal requirements and is protected from potential risks.
Tailored Solutions for Your Property
Every property is unique, and at Slick Property Management, we offer tailored management solutions that fit the specific needs of your investment. Whether you own an apartment, house, or commercial property in Wolli Creek, we provide personalized services designed to protect and grow your property’s value. We work closely with each client to develop a management strategy that aligns with their investment goals.
Expert Marketing & Tenant Acquisition
To ensure your property is always leased to the best tenants, we use a multi-channel approach to property marketing. Our marketing strategy includes listing your property on all major real estate platforms, professional photography, virtual tours, and targeted advertising. We also leverage our extensive local network to reach potential tenants who are actively looking for properties in Wolli Creek.
Efficient Communication & Support
At Slick Property Management, we believe in maintaining open and transparent communication with our clients. Whether you have a question about rent collection, maintenance issues, or lease renewals, our team is always available to provide prompt, professional responses. We ensure you’re never left in the dark about the status of your property.
Maximizing Rental Returns
Our team is dedicated to helping you get the most out of your Wolli Creek property. We offer strategic advice on market pricing, property upgrades, and ways to increase rental income. Whether it's performing regular market reviews or suggesting maintenance improvements to make your property more appealing, we are committed to optimizing your rental returns.
9

