Overestimating some of today’s programming features
21 April 2018 | Category: JavaScript | Comments (0)
I see a some people are fascinated by ES6/TypeScript/React (and the like)/Babel/Webpack features. However, not all the gold that shines. Let me explor[……]
Why I switched to only NodeJS + npm and stopped using Grunt
10 December 2015 | Category: JavaScript, Tools | Comments (13)
I can’t imagine building a modern JavaScript application or website without using any kind of build system. Recently I’ve used Grunt in several projec[……]
What You Should Know When Interviewing For A JavaScript Job With Eric Elliott
7 December 2015 | Category: General, JavaScript | Comments (0)
Really worth it to listen, especially for those people who’s interviewing other people for JavaScript developer position.[……]
setup-defender.ps1 is not digitally signed while using ember-cli-windows-addon
28 June 2015 | Category: JavaScript, Tools | Comments (0)
So, I started playing with EmberJS framework. However, build times on Windows are longer than on Linux or Mac OS X. Much of that penalty is not becaus[……]
PhantomJS and source code instead of page
3 February 2015 | Category: Browsers, JavaScript | Comments (0)
Running the code in PhantomJS might bring source code instead of page (the screenshot from that is generated using page.render
);
The reason of[……]
PhantomJS, resources and relative path
28 January 2015 | Category: JavaScript | Comments (2)
PhantomJS (at least version 1.9.8) is not loading resources when you want to use relative path. However, after some research and experimenting here wh[……]
How do I valid my code on Windows before I commit to Git repository?
5 October 2014 | Category: JavaScript | Comments (0)
Introduction
Like many other version control systems, Git has a way to execute custom scripts when certain important actions occur. One of the good[……]
Events – why something.changed instead of something.on(“changed”, ….
25 July 2014 | Category: JavaScript | Comments (0)
Whenever I was using custom events there were:
something.on("changed", function myonchange() { do_something_here });
However, now I start[……]
Generate dynamically iframe and it’s content
2 April 2014 | Category: Browsers, JavaScript | Comments (2)
Let’s say you want to generate dynamically iframe
and instead of point to external source:
<script>
var iframe = document.createElement('ifr[......]
JavaScript fast reverse table rows
7 March 2014 | Category: JavaScript | Comments (0)
So, you want to fast revers rows in table. There is probably millions of possible solutions, but here I’ll preset my approach. Here is the code:
fu[......]
keep looking »