Javascript

Garage Management System

Submitted by Mhecha on
Garage Management System Author: Joseph Mhecha and Salome Ngonde (Diploma in Information Technology holders at Teofilo Kisanji University - Mbeya) email: [email protected] PNo: +255765102244 Case study area: The Garage of Mbalizi Technical College (Mbeya-Tanzania) About: Garage Management System is type of system based on web application development which is dealing with all the activities

One of the simplest way to create websockets chat with php

Submitted by Виктор Трапенок on
I want to tell you about my Open Source project of comet server. It simplifies the process of creating chat and notifications for the site. The CppComet takes care of all the work of maintaining websocket connections and give simple api for sending messages from backend to frontend by websockets. CppComet is written in C++ and can handle many simultaneous connections.

Hotel Management System

Submitted by [email protected] on
The system User can not reserve things (bed rooms on line) that they want. The hotel cannot advertise the service that they give. Users cannot access hotel information. The absence of database management systems. Existing systems is prone to inconsistency & error. Unclear information. Difficult fast data insertion & retrieval. Difficult to generate report. Difficulty in organizing and generating

Top 25 Programming Courses to Improve Your Skills and Boost Your Career

Submitted by admin on
In this digital age, learning how to code isn’t just for the geekiest of all geeks – even the people in business world has sorted out to this knowledge-based asset to help themselves become better entrepreneurs. A huge amount of learning tools have stuffed the internet and as technology progresses, the demand for online classes have also been growing tremendously. Whether you’re a student, a

Teach Yourself and Become a Professional Web Developer

Submitted by admin on
The Best Way to Learn Is By Doing Do you want to build great looking interactive website that your users will love? This course The Complete Web Developer take you step-by-step with no coding experience. First you will learn the basic of creating a web page using HTML, CSS and JavaScript. Next you will learn more advanced coding like jQuery, Bootstrap and WordPress. For the server side, you’re

Handling File Uploads with Node.js and Express.js

Submitted by admin on
Whether you are building social platform or a simple website, sometimes you need to let users upload their own files. The typical scenario might be: uploading the user's photo for a profile page. With Node.js and express it is quite easy to create your own file upload service. In this post I will show you how. In the new folder run `npm init`, and create `package.json` as you usually do for every fresh Node project.

Building REST service with Express.js

Submitted by admin on
REST services became a de-facto standard of data exchange for public APIs. Twitter, GitHub, Parse are just few examples that rely on REST to exchange data with the clients. Before we start to write our first REST service with Node, let's see what exactly is REST and how it works. REST stands for 'REpresentational State Transfer'. It leverages the semantics of HTTP protocol to express operations over a some collection of items (data). REST typically uses JSON to send and receive data. NOTE: This is a common misconception to call every HTTP-based JSON service REST.