Category Archives: Apps
Python: A shareable Todo lists/notes web app with web2py Part 1
Python is the 2nd most popular language out there according to http://pypl.github.io/PYPL.html. With it, you can build plenty of things such as desktop apps, games, viruses, you can use it for server-side programming and so on.
[ Read More ]
Creating your first desktop app with Python
Python enables developers to craft desktop applications. In this tutorial, we are going to create a desktop app in Python and make an executable for Windows. The application is going to be simple – it would allow users to select an article from a list, click read and the article will open in their browser. We are going to use Tkinter to craft the GUI that our application needs.
[ Read More ]
Top Online T-Shirt Designer Tool Providers 2016
Online T-shirt Design Tools have flooded the e-commerce market as it is the best feature that one can add in a fashion portal in order to enable the users to customize the designs of T-shirts. With the users getting inclined to such tools, many online t-shirt design tool providers now offer such software as extensions and add-ons that can be integrated into an existing online shopping portal.
[ Read More ]
Learning Python: Creating a Dictionary app in Python
In this article, we will be building a dictionary app with Python and the Tkinter GUI library. The app is going to receive words from the user and it will display their definition. The definition is going to come from a third-party API.
[ Read More ]
Creating your first Bracket extension
Brackets is a text editor/IDE specifically made for web development and built using JavaScript. It offers extensions that can be created by anyone, including ourselves. We can make extensions that help our own programming needs and publish them so that others can also take advantage of our effort.
[ Read More ]
Creating a Simple Plagiarism Checker in Node.js
We are going to create a module which can be used by any application that needs plagiarism checking. For example, it can be used in a website that posts articles on web development to check if the submitted article has not been copied from another source. The module would return JSON and it can be hooked to different routes and application logic to perform different logic depending on the plagiarism score.
[ Read More ]
Creating the HTML view of a simple CRUD to do list with Angular.js Part 2
Controllers in Angular.js are JavaScript functions which would hold different methods and properties. In our HTML view, we can define the controller that an element uses and all of its child elements would also be able to use the properties and methods of that controller. We can also use those properties and methods in the HTML view through Angular’s data binding or through various built-in directives. Using a controller creates a new child scope for the element in which it is applied and its children.
[ Read More ]