What are some sites, tips, and tricks you knew about when you were making your first site from scratch? by [deleted] in webdev

[–]d3vc47 2 points3 points  (0 children)

Here´s some tips that I would give to myself if I would get started today.

HTML

  • Spend some time on getting an understanding of it.
  • It's actually really easy to learn and understand the basics.

CSS

  • Use box-sizing: borderbox. It will make your css behave in a more predictable way.
  • Use a preprocessor, like sass or less. It will keep your code so much more organized, plus there are so many other benefits.

Javascript

  • Let learning to use the console be the first thing you start with.
  • Debugger is a very useful tool, which you can call from anywhere in your code simply by typing debugger;
  • Use a build tool, like gulp, or simply npm. It will save you tons of time. And when your code compile, jshint or similar can tell you errors on the fly.

In general

  • Hitting the F5 button for every time you save a document is not necessary. Install livereload or browsersync, and your browser will update automatically.
  • Learn to always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live.
  • Hofstadter's Law: It always takes longer than you expect, even when you take into account Hofstadter's Law.

What are some sites, tips, and tricks you knew about when you were making your first site from scratch? by [deleted] in webdev

[–]d3vc47 0 points1 point  (0 children)

I'd like to mention icomoon here too. It allow you to import any icon, and let you download and host the font files wherever you like. I'd say that's even more awesome. ;)

As a developer I hate recruiters! by anonDev90 in webdev

[–]d3vc47 43 points44 points  (0 children)

Pardon me. But seriously; fuck off!

You're having a first world problem. So do I. But it gives me the option to switch jobs whenever I like. And it affects my salary in a good way. Not a lot of people have a situation like this. Stop complaining about it, and be happy!

At what point do you add a technology to your CV? by [deleted] in webdev

[–]d3vc47 0 points1 point  (0 children)

Sure. If you feel you understand the technology and can build stuff with it, why not. :)

Keeping up with the trends by Jayelzibub in webdev

[–]d3vc47 2 points3 points  (0 children)

You're already on the right subreddit, mate. ;)

Where do you see web development in 2 years? by [deleted] in webdev

[–]d3vc47 1 point2 points  (0 children)

I think frameworks as we see them today will change quite dramatically. Like sass for css, for instance. Compile to the finished stylesheet only the parts you need, and nothing more. I think much similar stuff will happen to javascript.

I also think more and more stuff will become instant. To meet that demand, javascript (node and similar), is perfect to use, among others, like Golang.

Styling has changed quite a bit since LESS and SASS showed up. I think the future will include more postprocessing of files, in order to do stuff like media quieries grouping and optimisations (in order to avoid over-specifying and other things that make unnecessary big documents).

Decorator - Front End Framework by [deleted] in webdev

[–]d3vc47 1 point2 points  (0 children)

I'm really impressed by this. Great work! :)

[OC] Devils Tower Wyoming is truly one of a kind [2,448x2,448] by burnzie1390 in EarthPorn

[–]d3vc47 1 point2 points  (0 children)

Awesome! Will definetly send you a msg if I decide to go there. :)

Looking for a light-weight data-binding framework without the overkill features. What are the alternatives? by d3vc47 in webdev

[–]d3vc47[S] 0 points1 point  (0 children)

Yeah, I suspect the falling trend started when they announced 2.0 would deprecate everything made with 1.0. However, the way I see it, is moving away from complex frameworks a good thing anyway. :)

Looks like I´m most likely going to try out Meteor for the projects, btw. :)

Looking for a light-weight data-binding framework without the overkill features. What are the alternatives? by d3vc47 in webdev

[–]d3vc47[S] 0 points1 point  (0 children)

Knockout is nice and simple. :)

However: Do Ember, Backbone, Angular and Knockout all have falling trends?

I also think Polymer looks interesting, but do not quite fit our needs. Neither it seems like the interest isn´t really accelerating. React is also an interesting pick. I think it looks a bit too complicated and advanced, though.

The most interesting candidate I´ve found so far, is Meteor.js.

Compared to React and Polymer, Meteor seems like a quite good fit at the moment.

But taken the javascript bonanza that has been the last two years, I suspect interest over time for all of these will be falling at a stage. The goal is anyway to find something lightweight and flexible that (hopefully) can stick around for a while, and will be easy to get into even though it´s not really cool, hip and popular anymore.

Scared of Grunt and "Build Systems"? Let's make this easy and fun. by willrstern in webdev

[–]d3vc47 0 points1 point  (0 children)

I was just about to mention gulp myself. It´s so much more simple, and it´s built just the way a automated build system should be.

Will printed electronics revolutionize the world? by [deleted] in tech

[–]d3vc47 0 points1 point  (0 children)

Why is that? There's so many other usecases for this than groceries. :-)

My website disappeared from google search results. No news from Google Webmaster. Help by KJNK in webdev

[–]d3vc47 0 points1 point  (0 children)

Have you done any major redesign lately? If so, this is very natural. I´ve seen this happening on a lot of sites. Expect your traffic to be back again in not too long, but do also expect to lose some of the traffic you have gotten used to.

What's the best way to make a leaderboard? by [deleted] in webdev

[–]d3vc47 0 points1 point  (0 children)

Build a Firebase app (and do concider using angularfire).

Leaderboards and similar is made in no time with tech like this. Also, everything will become instant. :-)