Skip to content

Instantly share code, notes, and snippets.

View vijaypurohit's full-sized avatar
🐺

Vijay Purohit vijaypurohit

🐺
View GitHub Profile
@vijaypurohit
vijaypurohit / geolocator.js
Created September 10, 2022 10:53
It contains the Geo Location Code
var map;
var mapCanvas;
var mapOptions;
var infowindow;
var service;
var marker;
var myLatLng;
@vijaypurohit
vijaypurohit / optGent.php
Last active September 11, 2021 14:44
PhP CLASS for the OTP CODE GENERATION
<?php
/**
* Created by PhpStorm.
* User: vijay
* Date: 06-Mar-17
* Time: 1:57 PM
*/
//class otpGent
class otpGent {
@vijaypurohit
vijaypurohit / LedBlinkingParallelPort.c
Last active December 26, 2017 12:07
This cpp program is used to blink led using computer parallel port
#include <stdio.h>
#include <stdlib.h>
#include <asm/io.h>
#include <unistd.h>
#define base 0x378 /* printer port base address */
#define value 255 /* numeric value to send to printer port */
main()
{