Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Blog Directory  >  Software Blogs  >  Programming Blogs  >  computer bapu programming Blog  > 

2020-01-30 06:17
you can easily make your old/new android phone a webcameraStep 1. Install DroidCam Wireless Webcam app on your Android smartphoneStep 2. Install the DroidCam Client app on your Windows PCor… Read More
2020-01-30 05:33
These are handy amazon rekognision snippets. Make sure you have loaded the aws sdk from amazon for phpI have developed such applications and utilized these stuffs in php and python. Its pret… Read More
2020-01-18 14:34
import csvdatafile = open('touristspot-final.csv', 'r')myreader = csv.reader(datafile)for row in myreader:    print(row[0], row[1], row[2])Please make sure to install csv package i… Read More
2020-01-18 14:30
apt-get updateapt-get install build-essential libssl-devcurl https://raw.githubusercontent.com/creationix/nvm/v0.25.0/install.sh | bashRef:https://github.com/creationix/nvm/releases (see ver… Read More
2020-01-18 12:49
Install Jquery module in your IONIC-3 app,npm install jquery --savenpm install @types/jqueryImport JQuery in HomePage.tsimport * as $ from "jquery";Use $ to call jquery methods.ngAfterViewIn… Read More
2020-01-18 12:16
Make sure you have pip installed. Generally it comes with the package already.Now install seleniumC:\Python34\Scripts\pip.exe install -U seleniumLater you have to download the browser driver… Read More
2020-01-18 12:12
* ionic start myApp tabs --type ionic1  // for ionic 1   ionic start myApp tabs --type ionic-angular // for ionic 2/3   ionic start myApp tabs --type angular  /… Read More
2020-01-18 12:07
install nvm using brew (mac)brew install nvmnvm ls-remote    # find the version you wantnvm install v7.10.0nvm alias default v7.10.0    # set default node version on a sh… Read More
2020-01-18 12:07
New ionic 3 projecthttps://ionicframework.com/docs/cli/commands/startionic startionic start --listionic start myAppionic start myApp blankionic start myApp tabs --cordovaionic start myApp ta… Read More
2020-01-18 12:05
* https://www.sitepoint.com/quick-tip-multiple-versions-node-nvm/nvm ls-remotenvm ls available (windows)* see list of available node version in pcnvm list* install old version of nodenvm ins… Read More
2020-01-18 12:04
* gulp meaningGulp is a task runner that uses Node. js as a platform. It purely uses the JavaScript code and helps to run front-end tasks and large-scale web applications. Gulp&nbs&hell…Read More
2020-01-18 12:03
download nvm for windows fromhttps://github.com/coreybutler/nvm-windowsAfter installation use some commandsnvm use 4.4.0npm install gulp-cli -gnvm use 0.10.33npm install gulp-cli -ghttp://fe… Read More
2007-09-29 17:20
prevent caching in javascriptdocument.write("<img src=\"yourimage.gif?" + Math.random() + "\" />");Here Math.random() is the key here since its always different per load and enforces a… Read More
2007-09-29 17:19
Get Browser Type using Javascript<script language="JavaScript" type="text/javascript">function getBrowserType() {var bo = navigator.userAgent;var browserType = "unknown";if (bo.indexO… Read More
2007-09-29 17:18
Cache dataset in asp.net===================use the namespace : System.Web.Caching.CacheAdd dataset to cache :Cache.Insert("yourDataSet",ds,null,DateTime.Now.AddSeconds(15),System.TimeSpan.Ze… Read More
2007-09-22 16:59
Application: BeginRequestApplication: PreAuthenticateRequestApplication: AuthenticateRequestApplication: PostAuthenticateRequestApplication: PreAuthorizeRequestApplication: AuthorizeRequestA… Read More
2007-09-01 16:44
tic tac toe in C============#include <stdio.h>#include <graphics.h>#include <stdlib.h>#include <conio.h>int rowcol[9]={1,2,3,4,5,6,7,8,9};void main(){int gdriver,gmod… Read More
2007-09-01 16:41
shared files program in C/* shared file example 1 */#include <fcntl.h>#include <stdio.h>main(){int fp;char buff[20];fp=open("testfile",O_RDONLY);if(fork()==0) { read(fp,buff,1… Read More
2007-09-01 16:38
Semaphore program in C/* basic semaphore example 1 */#include <sys/types.h>#include <sys/ipc.h>#include <sys/sem.h>#include <stdio.h>main(){int sid;int key,nsem;key=(… Read More
2007-09-01 16:33
Character generation in C - program#include <graphics.h>#include <conio.h>#include <math.h>void generatecharback();void generatechar(char);void main(){int gdriver, gmode;gd… Read More
2007-09-01 16:32
forking i.e example in C (fork program)===============================/*forking example 1 */#include<sys/types.h>main(){int i;int j;fork();printf("\n%d\n",getpid());printf("\n%d\n",get… Read More
2007-09-01 16:29
Do's and Don't in Web Design=======================Technology Related================Do try to make the site using only divs and css (Don't use table tags atall!!)Do try to use AJAX whereeve… Read More
2007-08-27 18:50
validate rss and atom================http://feedvalidator.org/http://rss.scripting.com/http://www.walidator.com/http://www.ldodds.com/rss_validator/http://feeds.archive.org/validatorhttp://w… Read More
2007-08-27 18:49
Web Syndication with RSS and ATOM===========================Syndication lets sites share information across the Web, making it easy to do things like display headlines from a site or collect… Read More
2007-08-27 18:39
php simple paging example======================The below code is self explanatory for a coder<?function Connect() { $hostname = "localhost"; $database = "mmm";… Read More
2007-08-27 18:37
Register an activex componentlook for regsvr32.exe in system/system32 folder in windows (note down the path)Open dos prompt and do it!C:\system32>regsvr32 c:\youractivex.ocxA messagebox w… Read More
2007-08-27 18:36
List tables in ms sql server=====================For ms sqlsp_helpFor my sql it isshow tableshttp://feeds.feedburner.com/ComputerBapu Read More
2006-06-07 11:16
Reloading A Page in javascriptlocation.reload();reloading by preventing caching:location.search = "?" + Math.random();http://feeds.feedburner.com/ComputerBapu Read More
2006-06-07 11:16
Redirecting a browser using javascript location.href = "newPage.html";OR<meta http-equiv="Refresh" content="X; URL=Y" />ORlocation.replace("newPage.html"); (This refreshes browser hist… Read More

Share the post

computer bapu

×

Subscribe to Computer Bapu

Get updates delivered right to your inbox!

Thank you for your subscription

×