Basics Of Webpack Module Bundler – Config, Dev Server, Loaders

Basics Of Webpack Module Bundler – Config, Dev Server, Loaders Webpack is an amazing tool used by lot of developers. After starting to use webpack, it felt like it was not the regual way scripts would be serverd or how fast the development process was with the various technologies(React, JSX, Coffee, Babel etc) that was […]

Social Network Friends Suggestion System using PHP, MySQL and jQuery 2021

I have already done a Facebook Style Relationship System in a previous post that covers the database design and PHP implementation of various friendship actions like Sending a friend request, Accepting Friend request, Blocking a user etc. This post covers another very usefull feature that was requested by users, Friends Suggestions for the currently logged in user. Read the […]

Social Network Friends Suggestion System using PHP, MySQL and jQuery

I have already done a Facebook Style Relationship System in a previous post that covers the database design and PHP implementation of various friendship actions like Sending a friend request, Accepting Friend request, Blocking a user etc. This post covers another very usefull feature that was requested by users, Friends Suggestions for the currently logged in user. Read the […]

PHP to JavaScript compiler

PHP to JavaScript compiler For a few years now I have been working “on and off” on a compiler that converts PHP to JavaScript. There is something similar with Niklas von Herztens php.js, but my engine is not a VM but a parser and compiler written in PHP. While the resulting JavaScript still requires a […]

Null, Undefined and NaN in JavaScript

Null, Undefined and NaN in JavaScript JavaScript has a couple of extraordinary variable states which, if you only use JavaScript now and then, will always give you headaches. You just want to briefly change a value in the DOM or incorporate a plausibility check, but you are annoyed by the funny little yellow exclamation mark […]

PHP to JavaScript compiler

PHP to JavaScript compiler For a few years now I have been working “on and off” on a compiler that converts PHP to JavaScript. There is something similar with Niklas von Herztens php.js, but my engine is not a VM but a parser and compiler written in PHP. While the resulting JavaScript still requires a […]

Best practices with sessions

Best Practices mit Sessions Best practices with sessions For a current occasion, a little text about sessions today. What sessions are, how to configure and start them for PHP and so on should be clear to every PHP developer. In addition, however, there are a few tricks that not everyone may have directly in mind. […]

Code Reduction with a Dynamic Language

In this example, the same code is implemented in both C# and JavaScript to illustrate the significant code reduction possible when a scripting language is used. This code defines an object that can be used to hide specific details about database access. It hides the use of the SqlConnection and SqlCommand as well as the […]

Expert Opinion in Favor of Dynamic Languages

Everyone knows that JavaScript is not for serious software development right? Actually, nothing could be farther from the truth. Some of the industries biggest names speak fondly of “Scripting” languages. In fact, 9 years ago, a man by the name of John K. Ousterhout, foresaw the industry moving toward the use of scripting languages. He […]

Testing Trouble with JScript and ASP .NET Page Object

Testing Trouble with JScript and ASP .NET Page Object I’m writing this article to document a problem that I discovered while trying to do UI tests. In order to do these tests, and follow the TDD practice, I can’t write any code without a broken test. Problem code appears when you can’t find a way […]