Posts

Deciding Architecture for a Commercial Product

Hello Developers out there, Developing a commercial product of own is a dream of every developer. Mostly this product takes the form of a web faced product with typical backend and frontend design. Now, instead of buying building tools, developer thinks to start from scratch with his own choice of technologies. Well yes, this brings security as well since developer will choose his own tools rather than relying on other building tools which will have their own vulnerabilities. So,, how to design and what to use to build a Web based Product.  Below architecture can be used as a basic framework design: Frontend : - Use Angular if you want an MVC based architecture at frontend side as well. - You get to create your own modules and directives, controllers to proper design your app. - Combine it with Node, that serves as a backend of frontend. - Request a socket or a http call from frontend that goes to node which actually executes http async request to the backend API and thu

IRC - creating your own personal CHAT ROOMS

Image
IRC - INTERNET RELAY CHAT  is a simplest way to create your own chat rooms. 1. Just choose any of the freenodes (say) http://webchat.freenode.net/   2. Next quickly fill up the form:  NickName: Your name that would appear in the chat room. Channel: Your channel name: Its a practise that channel name has prefix # eg. #thetechbytes Auth: Optional Submit by confirming humanity. 3.  Now what, just share tis channel with your friends and they would also login with the same process, channel name : the one you provided, with their nicknames. 4. Woah !!, you have your own personal chat room. 5. Next what, you should know some basic irc commands like setting titles and all. Visit: https://en.wikipedia.org/wiki/List_of_Internet_Relay_Chat_commands for more Please do like , comment your opinions.

Developing Windows Apps

Image
Hello my dear pals . This is indeed a read must post for all the web developers and all those who are fond of HTML. MICROSOFT  has increased the horizon of apps development by allowing windows 8 or 10 apps to be developed in HTML language.. So Lets begin the journey -> developing windows 8 or 10 apps... So before getting started lets limelight the  PRE-REQUISITES  you need before starting developing Windows 8 or 10 apps. Y ou will need the following : 1)   WINDOWS 8 or 10 OS  :  ya ! windows 8 or 10 apps can be developed only on machine                that runs Windows 8 or 10 because Windows 8 or 10 provides the preffered dot net framework required for windows 8 or 10 app development.  2)  VISUAL STUDIO :  Either you install  Visual studio for windows 8 or 10 especially for trial version or else install Visual Studio 2012 premium or else. .....So these were the things needed.......Now lets develop windows 8 or 10 apps... ################################

Accessing Webcam through Java - COMPUTER VISION

Hello All, This post is all about how to access Webcam through java .Accessing Webcam is a part of COMPUTER VISION where coder access webcam and use it to capture Real World frame by frame and use the real world information for further processing . Here we will be using a very basic library freely available to use , that is LTI CIVIL .Lets start with code as Said coding wins over all arguments.The whole java code goes here. First of all , integrate lti civil libraries to your code (like using ADD JAR facility in NETBEANS). The library files can be downloaded from here http://sourceforge.net/projects/lti-civil/ Next the files to be imported : package viano; // any package name you want  import com.lti.civil.CaptureDeviceInfo; import com.lti.civil.CaptureException; import com.lti.civil.CaptureObserver; import com.lti.civil.CaptureStream; import com.lti.civil.CaptureSystem; import com.lti.civil.CaptureSystemFactory; import com.lti.civil.DefaultCaptureSystemFactorySing

Adding TTS ( Text to Speech ) to your website

Image
Hello my dear pal and friends, The post is all about how to add TTS a functionality of Text To Speech to your website.This feature makes the text written on a webpage to be spoken out from your speaker.This is especially helpful to visually impaired people and for them traversing website becomes easier. So let's begin.Let's explain the core of this functionality . The best way to add TTS to your website is to use "Speak. js " files and get them integrated to your project.We need 3 files to add TTS to our Website : 1)speakclient.js 2)speakworker.js 3)speakgenerator.js These 3 files can be found from github of speak.js @  https://github.com/kripken/speak.js Now put these files in your project web folder or to say just include these files in your project (say in js folder) . Also change the 3rd line  in speakClient.js to point to your JS folder : speakWorker = new Worker('js/speakWorker.js') Now what we gonna do is just we will ask users to just sele

Connecting JSP page with MS Access :: JDBC ODBC Connectivity

Image
H ello Guys .This post is all about Connecting JSP to MS Access database -> JDBC ODBC Connectivity. Honestly speaking after struggling upon a lot on jdbc connectivity , finally at the end of the day , I brought to you the step by step process to CREATE  database and perform DDL and DML operations on that. So , Lets begin by creating a MS Access database. Go to Control Panel > Administrative Tools > ODBC DATABASE SOURCES. Now an ODBC Data   Source Administrator window will open. Click on Add button . Now Select Driver do Microsoft Access(*mdb) from the Create New Database Source window that appears like the image shown on right and click Finish Button.. Now create your Database source name . You can give any name you want. THIS NAME IS CALLED YOUR DNS ( Database Sourcse Name ). Click on "Create " button. NOW THIS STEP IS Worth IMPORTANT. PEOPLE USUALLY GIVES C:\ DRIVE  PATH ( the NTFS where windows is installed generally).. There's no pr

Getting Started :: Developing Windows 8 apps in HTML , javascript

Hello my dear pals and friends... This is indeed a read must post for all the web developers and all those who are fond of HTML. MICROSOFT  has increased the horizon of apps development by allowing windows 8 apps to be developed in HTML language.. So Lets begin the journey -> developing windows 8 apps... So before getting started lets limelight the PRE-REQUISITES you need before starting developing Windows 8 apps. Y ou will need the following : 1) WINDOWS 8 OS : ya ! windows 8 apps can be developed only on machine                that runs Windows 8 because Windows 8 provides the preffered dot net framework required for windows 8 app development.  2) VISUAL STUDIO : Either you install Visual studio for windows 8 especially for trial version or else install Visual Studio 2012 premium or else. .....So these were the things needed.......Now lets develop windows 8 apps... ################################################## This is important.. As soon as