Explore >> Select a destination


You are here

www.blazemeter.com
| | www.zend.com
5.6 parsecs away

Travel
| | 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
14.1 parsecs away

Travel
| | 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
12.6 parsecs away

Travel
| | Microsoft Authentication Library (MSAL) for JS. Contribute to AzureAD/microsoft-authentication-library-for-js development by creating an account on GitHub.
| | nurkiewicz.com
55.1 parsecs away

Travel
| 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`.