 
      
    | You are here | www.blazemeter.com | ||
| | | | | www.zend.com | |
| | | | | What is orchestration and does your PHP application need it? Find out in the latest webinar from Zend by Perforce. Zend Product Manager Matthew Weier O'Phinney discusses orchestration as it relates to the cloud, containers, and ZendPHP. | |
| | | | | juffalow.com | |
| | | | | If you work on a larger project, you have surely write a build script, which helps you with repeating tasks. This can be concatenating javascripts, compiling SASS / LESS files, moving or deleting some files, etc. Each task like this can be ( relatively ) easily defined in Grunt and it will take care of everything. | |
| | | | | github.com | |
| | | | | Microsoft Authentication Library (MSAL) for JS. Contribute to AzureAD/microsoft-authentication-library-for-js development by creating an account on GitHub. | |
| | | | | nurkiewicz.com | |
| | | Clojure is a dynamically, strongly typed programming language. It's a dialect of _Lisp_ running on the Java Virtual Machine. Lisp is 6 decades old and has a really weird syntax. That weird syntax is called _Polish prefix notation_. Basically, in every other language you've used math operators like plus or minus are infix. It means they are placed between operands. For example, `1 + 2`. In Clojure, you always put the operator (or any other function for that matter) in front. So simple addition becomes... `+ 1 2`. | ||