Details
-
AboutHuman male. Not dead yet.
-
SkillsYes, some
-
Locationblindfolded, so not sure
-
Website
-
Github
Joined devRant on 7/23/2021
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
-
Client website, causing no problems, online for a few years, nothing changing, traffic relatively small, rolling along nicely, nothing out of the ordinary.......5
-
Everyone around me in the office has the same persistent cold. It edges forever closer. There is no hope.
Bring back mandatory mask wearing in meetings. Or just don't invite me.14 -
Why does it take a client, who needs the bug fixed immediately, over 24 hours to respond to my query about what the problem is?11
-
It is day 4 since I started trying to export my Flutter app for iOS. I am finally at TestFlight point.
This....
has been.....
....exhausting.4 -
Just...Macbooks
(sigh)
The entire day wasted having to install a new OS to install a new Xcode to export an app, only to find the xcode was installed under a different user (who has long since gone from the company) to then have to look up what to do, to then just sit...........and....................wait.............for Xcode to download again.
And I know when I try to export my app (which had zero problems being exported to Android) I'm going to hit an entire day tomorrow of bug fixing for ios sh...stuff16 -
I'm having a break from coding for the next hour.
So, please tell me....what's the best bread maker to buy?5 -
Still not using versioning even though I'm the only coder. I have a dev and a live version of the site and once in a while (like early this morning) I update the live site by mistake, writing over the safe file with the development one :S5
-
With bitcoin/binance still allowing russia to move money about, is anybody abandoning it? I don't feel comfortable using it, but also if it becomes their only way to fund themselves, the government will push through new tax laws on it and throttle it anyway. Or just outright ban people from using it.
Funding a war is one of the occassions where decentralised financing becomes a major problem.18 -
Having only recently upgraded my mouse to something with more buttons I realise I've been seriously missing out. A button to copy text, a button to paste and a button to take a screenshot has just saved me precious time.1
-
What are people's thoughts on SAML?
Any experience with it?
What about GDPR issues, avoiding the use of cookies etc?10 -
Spends months on a clearly laid out project. Finally gets to the end.
"Great stuff, well done - now let's start the next section of it"
"...the what now?"2 -
First games console ever tried: NES. Around 1986.
First computer:
Sinclair Spectrum +2 !! Around 1988. I used to buy those books that came with code. I wrote all that code in but hardly ever played the actual game.
Once met the guy who created lots of game faves at the time (manic miner, chucky egg etc). That's where it all started...4 -
The device looks cool and everything....but their reason we should buy it is the winner for me. Not only is that never a problem...but also, spot the mistake16
-
Living abroad during corona times is shit. Trying to visit the family back home...
2019: it's too risky, I won't chance it
2020: still too risky, I won't chance it, even though technically I can now
2021 - Jan to Oct: I can go now, but I can end up getting stuck at the other side. I'll wait just a bit longer
2021 - November - right, quick, I'll book just THREE short days to say hi to the family...
BOOKED
2021 - days later: LOCKDOWN AGAIN MOTHERFUCKER! Your flights are GONE! Try again next time fool!2 -
Has anybody here ever thought of a really good idea, actually developed it all the way to the end, released it AND made a financial or worthwhile success of it? Interested in seeing/hearing your success stories and checking out the work.4
-
When did it become difficult to wrap 3d models in textures? I swear it used to be as simple as dragging a graphic on to an object :(
I feel so old and in the way.3 -
I must be getting old. I seem to be the only one confused about 20,000 people successfully paying $60 to buy a digital 3d object from star wars last night. Disney made over a million in 4 seconds.
NFT's powered through blockchains. Feels like a pyramid scheme for the 21st Century. Everyone needs to calm down.11 -
I equate design to usability. A bad design and UI = bad usability.
For our current project I gave some feedback on issues I had with the presentation, citing usability problems because the design is wrong and I wanted to spend more time designing it in a way that makes sense and flows better.
My boss and manager responded with "functionality over design". And if they want a better design they have to pay more. But that means giving them a product that is overly messy and complicated to use. It wouldn't be a big job to improve the design.
Any thoughts on this? -
Spotify: If you watch this ad, you can have 30 minutes uninterrupted music
Spotify 10 minutes later: EAT THIS FUCKING AD!!2 -
If you're willing to pay $19 for a cloth to clean your device, are you also willing to just give me $10 for the hell of it? I'll even email you back a picture of the apple logo if it sweetens the deal.1
-
if(
bathroomrenovation &&
startdate < now() - 4 weeks &&
!showerisfitted
){
do {
print ("Where the f**k is my f**king shower!");
} while (delay);
}10 -
Casting Netflix on the latest Chromecast devices forces you to re-log in to your account on the TV every time you click that Cast button on your mobile. A minor problem for people with a small family and no friends. A big pain for those who cast from different accounts.
And a massive problem for me and one of our hardware solutions which remotely streams mutliple chromecast devices via a UDP directly in to different rooms in a hotel.
F*ck you Google TV, you insistent piece of crap, I'm going back to Chromecast Ultra.3 -
I am now replying to fake news spreaders on the internet, pointing out their lies. And I end with the following closing comment:
"You may go now, I am done with you".
>D7 -
Some kid on stackoverflow, just starting out in the coding world, posted his resume to the board and asked what people thought.
Immediately recieved 3 negatives and then had the post removed.
Pretty shitty community - we all started out once, just give him some useful pointers. What a miserable lot.12 -
Visualize the entire complexity of the content within the project so that you know what data users will need to access, and compartmentalize those in to separate modules that you can build on over time. Think about any limitations with accessing that data (does the user have that role, what if the data is accessed simulateously, how to handle the same user accessing from different devices etc).
Think about the devices being used - is it going to be a website, an app, both? How best then to access the data? Direct access to a database, or an API system?
Then think about the front-end design and how to simplify the view right down as much as you can. Again, break it down in to modules.
Then decide on the technology you want to use, and what libraries would help simplify things.
These days I like to use JSON API's to access DB content because app and web technologies change quite often but the API will be accessible to whatever I use to build it.
For websites I love using Laravel, which simplifies the back-end tasks, and mdbootstrap which simplifies the front-end tasks and looks "appy".