Tag: Programming
-
The narrative-driven organization
Posted on April 28, 2019, Level beginner Resource Length long
An article by Jordan Husney. It is meant to be a practical guide to using narrative and storyboards to design products & experiences, and organize teams around delivering value to manifest them.
Tags programming miscellaneous how-to ux
-
How to build a WebVR game with A-Frame
Posted on April 26, 2019, Level intermediate Resource Length long
Adi Polak article about building a game with WebVR. WebVR is an open specification that makes it possible to experience VR in your browser. The goal is to make it easier for everyone to get into VR experiences, no matter what device you have.
Tags learning miscellaneous programming
-
How to pick your next tech focus
Posted on April 25, 2019, Level beginner Resource Length medium
From pen of Ezequiel Bruni (web / UX designer, blogger, and aspiring photographer living in Mexico) we have this article about deciding what should be your next learning focus. In his opinion the technology you focus on or use next should always be matched to both the job and the people at hand.
Tags learning miscellaneous programming
-
How to tune garbage collection in Java
Posted on April 23, 2019, Level advanced Resource Length medium
If you want to learn more about performance tuning and garbage collection in Java, this article by Tim Ojo is for you.
Tags java programming
-
The habit of calm when you're feeling frustrated
Posted on April 20, 2019, Level beginner Resource Length short
This article by Leo Babauta is about how to deal with getting frustrated when they feel overloaded, and then shutting down or lashing out.
Tags miscellaneous how-to programming startups
-
How to collect, customize, and centralize Python logs
Posted on April 17, 2019, Level intermediate Resource Length long
This is a detailed guide on hot topic -- how to collect, customize, and centralize Python logs. From pens of Emily Chang and Nils Bunge. this guide will show you how to configure this module to log all the data you need, route it to your desired destinations, and centralize your logs to get deeper insights into your Python applications.
Tags python programming monitoring web-development
-
Dependency Injection in Scala -- Guide
Posted on April 17, 2019, Level intermediate Resource Length long
This is well written guide about dependency injection on Scala. Dependency Injection (DI) is a popular pattern which encourages loose coupling between a services' clients and service implementations.
Tags scala programming java oop
-
Top 5 reasons why Agile Testing Governance is needed
Posted on April 10, 2019, Level beginner Resource Length medium,
This podcast from Cignity is all about Agile testing and why it is important for Agile not function as a set of principles that operate independently once they are set into motion. It is a process that needs holistic environment management, and the reasons could be quite compelling to know.
Tags agile programming web-development learning
-
UX Personas -- What's the point?
Posted on April 9, 2019, Level beginner Resource Length long
Dan Nessler wrote this article focusing on design process and personas. Recently professionals have argued, that personas don't create any real value in the design process and that they are bound to fail.
Tags UX programming web-development how-to
-
Agile is not enough
Posted on April 8, 2019, Level beginner Resource Length medium
The interesting piece from pens of Will Poindexter and Steve Berez about addressing architectural rigidity, closing talent gaps, and adopting a product mindset in order to realize Agile's power.
Tags agile programming web-development
-
COBOL and the enterprise business programming paradigm
Posted on April 4, 2019, Level beginner Resource Length medium
COBOL is nearly 60 years old. Jonathan Sayles examines how COBOL is still used today and it is not going anywhere soon. Besides that "As many as 75% of all rewrite projects have resulted in failure" and with the redoubtable Reuters reported that when Commonwealth Bank of Australia replaced its core COBOL platform in 2012, it took five years -- and cost $749.9 million.
Tags programming miscellaneous oop performance servers
-
How Binary Search Algorithm works -- Java example without recursion
Posted on April 3, 2019, Level intermediate Resource Length medium
This older article on java67.com explores and explains binary search algorithm. The binary search algorithm is one of the fundamental Computer Science Algorithms and used to search an element in a sorted input set.
Tags programming java jvm