Details
-
AboutSoftware Engineer
-
Skillsjs, angularjs, angular 2, CSS, bootstrap, SASS, MDL, Node.js, Express, MongoDB, Begginers React
-
LocationUK
-
Website
-
Github
Joined devRant on 5/13/2017
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
-
Had a bad dream about python, woke up screaming "THERES A PYTHON ON THE FLOOR"
My girlfriend was so confused because she's not a programmer2 -
I'm writing a blog series about GoLang and REST interfaces, if your interested in golang but don't know where to start give it a read https://blog.mescrocker.co.uk/golan...2
-
I've been thinking about creating an Open Source functions-as-a-service Content Management System. Reason being is that this would allow the community to cut down on costs for content sites that they run by using something like AWS Lambda where you would only have to pay for what you use. Thoughts?1
-
My dev goal is to actually finish something this year, last year I started a load of projects but left them unfinished2
-
I often get posed the option of using Go or Node, personally I think they’re both good languages and that they both have different purposes. But I was just wondering, what’s the sentiment on DevRant?9
-
Why do people who wear the Apple wireless headphones remind me of business jerks from the early 2000s?2
-
@dfox @trogus Thanks for the stickers, much appreciated 😊 best of luck in this venture and I hope that I can continue using devRant
-
So a while back I decided to overhaul my entire code base and rewrite everything in one application... yesterday I thought this was bad so have moved back to separate applications, just this time as microservices! Does anyone else do this without ever releasing the initial thing you set out to do?
-
Got a funny look from someone the other day...
Turned out I was shouting at my monitor...
That's normal right?10 -
Is it so hard to comment your code?
I work on collab projects here and there and both the comments and documentation are both awful, nearly always, there are some exceptions.
This is a plea to all those who teach anyone to program. "This performs a loop" is not a helpful comment, nor is "This sets variable x to 1" where the line below is "let x = 1".
The last piece of code brings me on to my next point meaningful variable names. If x is a variable that stores the age of a machine call it ageOfMachine or age_of_machine. Not aom, not x but what it actually is, modern IDEs and text editors will fill this out for you.
Finally documentation, a good friend of mine sent me this quote a while back, I can't find the image but "Documentation is like sex, when it's good, it's great. But when it's bad it's better than nothing." Your documentation should be good, a good pattern to follow is the Node.js documentation, it tells the function, what it does and what parameters it takes.
Anyway rant over; and I'm sure that this applies to people outside of this community only.5 -
Angular2: Error: Unhandled exception, cannot read property "classList" of null
Me: element = doucment.getElementById("nameOfObject")
Angular2: Error: Unhandled exception, cannot read property "classList" of null
Me: DoWhatIWant();
Angular2: Success!1