Details
-
LocationMunic
Joined devRant on 2/8/2018
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
-
Is it just me or does anyone else think that ionic sucks.
The documentation is often wrong and/or incomplete.
The overview of your commits/channels is just shit.
The only good thing so far is that you can update it without the User needing to download a new binary. -
@Codex404 i think i got it ;P
-
The day i accept a management Position, please shoot me, Cause i've clearly lost my mind
-
The Problem are these useless timewasting Meetings.
I've had Meetings after all nighters that kept me going and other Meetings that made me fall asleep after a well rested night. -
That's a murder Story and not a quit Story
-
@linuxxx it's not pretentious when you Start with "i'm going to duckduckgo that"
I think it is tho if you reply to "google it" with "i don't use Google i use duckduckgo"
If you Start with it that's ok, but dont expect everyone to get what you mean and act like an arse if they don't get it. -
I still call it "google something"
Everyone knows i mean: look that shit up online.
If someone response with "i dont use Google" or something like that, i just think they're some pretentious twat. -
@Hu-bot0x58 i'd be happy with a twosome
-
@matste
1st of old af
2nd not relevant
Read your source before spreading missinformation -
@py2js oh overread that sorry.
-
@py2js i think the Problem was not the the termonology but that the git repo was local.
-
Clean Code taken into extremes isn't clean anymore
-
Iirc you can even Set it in the settings that if you press X i'll close completely.
But i guess that's to Hard to do / find for a cummon user -
@dontbeevil i 100% agree with you
Skype is shit for hundreds of other reasons but not this one -
@AleCx04 beside from that. how do you differentiate between a developer and a hacker?
-
@AleCx04 which is a minority i'd assume
-
@AleCx04 "was" which means it doesnt anymore.
-
@YouAreAPIRate Unsless the Hardware is yours, you are only allowed to use it as agreed on.
-
Or you get an Partner for times like illness or vacation.
-
@iguana in germany it does, which really sucks
-
although i'd like to do that myself, this doesn't really run well in an agile team
-
@seraphimsystems That's a really great idea, unless he needs to talk code.
-
yeah and nah,
i've given some tutoring lessons and most of those only wanted to get the next assignment done. And some didn't even want to code.
But there is a Problem with the teaching techniques. They are outdated and teach the ones who want to learn the wrong things. They lead them astray from the "right" path.
What's worse in some cases that might crush a childs dream.
I don't say feed them, i say teach them how they can teach themself how to feed themself -
I played WoW... Like A LOT
-
@sethgoodluck you mistook forcing with rewarding a good behavior.
-
@Jason why do you even use an OS to Programm? I hope you don't use Internet either.
A programming language is nothing but a tool itself.
You can create new tools while using those already created, Unsless you want to Start a cake by creating the universe. -
@spacem i'd disagree.
Facing a terminal illness with great pain could be a reasonable reason. -
@sunfishcc in Delphi it's the same and i hate it with every Atom of my body.
I hate it so much the Atoms i breath get infused with the hate thus it's kinda like a vending system but my hate for it is so eternal that it doesn't matter -
@J-2FA the use of them is anti SRP and they should only be used for specific cases and they should be the whole content of the method they're in.
-
@DefiniteGoose it's a stupid convention that reduces the readability of the Code.
Getters/Setters do have their use. But not as a stupid wrapper for a field.
public Singelton SingeltonObject{
get{
If(this._SingeltonObject == nullobject)
This._SingeltonObject = new Singelton();
return this._SingeltonObject ;
}
}
Not the best example but i hope it does the Trick