Author: tejas

  • Getting Started with Elixir Programming Language

    If you have been reading blog posts, hacker news threads, your favorite developers tweets or listening to podcasts, at this point you’ve probably heard about the Elixir programming language. The language was created by José Valim, a well known developer in the open-source world. You may know him from the Ruby on Rails MVC framework…

  • PHP Encoder v1.8

    PHP Encoder v1.8

    Hi Everyone here i am introducing a PHP Encoder tools. With this tool you can encode your PHP code in secure code. once you encode code only execution time web-server will decode it. and nobody can decode it. This is my first beta version release so this tool will expire after 1 July 2016. I…

  • Android Developer’s Guide to Fragment Navigation Pattern

    Over the years, I’ve seen many different navigation pattern implementations in Android. Some of the apps were using only Activities, while others Activities mixed with Fragments and/or with Custom Views. One of my favorite navigation pattern implementations is based on the “One-Activity-Multiple-Fragments” philosophy, or simply the Fragment Navigation Pattern, where every screen in the application…

  • Boost Your Productivity With Amazon Web Services

    During the last few years, the hottest word on everyone’s lip has been “productivity.” In the rapidly evolving Internet world, getting something done fast always gets an upvote. Despite needing to implement real business logic quickly and accurately, as an experienced PHP developer I still spent hundreds of hours on other tasks, such as setting up database…

  • How to Bootstrap and Create .NET Projects

    Create .NET project To create a .NET project from scratch is as simple as using Visual Studio wizard. Go to File => New Project, or Add New Project to an existing solution. Once a new project has been created, you can start coding right away. However, the default project settings produced by wizards are hardly acceptable for professional…

  • An Introduction to Robot Operating System: The Ultimate Robot Application Framework

    The Robot Operating System (ROS) is not an actual operating system, but a framework and set of tools that provide functionality of an operating system on a heterogeneous computer cluster. Its usefulness is not limited to robots, but the majority of tools provided are focused on working with peripheral hardware. ROS is split up in more than 2000…

  • Guide: Software Release Management For Small Teams

    ormalizing The Release Management Process (If There’s Any) In some team configurations, especially ones that are found in startups, there are no DevOps, nor infrastructure engineers, to provide support when releasing a new version of the product. Moreover, unlike large bureaucratic companies with defined formal processes, the CTO or Head of Software Development team in…

  • Agile, Scrum, and Kanban: What the Heck Do These Words Really Mean?

    When a software developer hears news about a “new JavaScript framework” or a “new IDE,” he doesn’t need to ask more questions to clarify what it’s about. But if he hears about a “new agile framework,” he will likely do the Homer-Simpsonian nodding, pretending that he knows what it’s about, but he will have one,…

  • Python Design Patterns: For Sleek And Fashionable Code

    Let’s say it again: Python is a high-level programming language with dynamic typing and dynamic binding. I would describe it as a powerful, high-level dynamic language. Many developers are in love with Python because of its clear syntax, well structured modules and packages, and for its enormous flexibility and range of modern features. In Python,…

  • Ensemble Methods: Elegant Techniques to Produce Improved Machine Learning Results

    Ensemble methods are techniques that create multiple models and then combine them to produce improved results. Ensemble methods usually produces more accurate solutions than a single model would. This has been the case in a number of machine learning competitions, where the winning solutions used ensemble methods. In the popular Netflix Competition, the winner used an…