Git Product home page Git Product logo

e-lite-section-2's Introduction

e-lite-section-2

All the codes are present in the ./Section2 folder

Exercise 0

Every solution to the problem in ./Section2/Exercise 0.

Editing of text in ex0/5.js is done by first replacing " " with ": " in notepad and using Python command line input to partition every line at ": " and adding " '' " to the third element in the tuple at front and back and then merging it.

  ans=""
  x = input()
  x = x.partition(" ")
  ans += "".join([x[0],": ","'"+x[2]+"'"])
  ans += "\n"
  then print(ans) after iterating over every line input in the python console.

Exercise 1

https://exercise-1.computer-cguy.vercel.app/

Exercise 2

Three.js version https://exercise-2.vercel.app/three.html Normal Version https://exercise-2.vercel.app/index.html

Exercise 3

Mail API https://lienmail.herokuapp.com/ made using django

Ultimate Typing Championship Bot https://github.com/Computer-CGuy/UltimateTypingContestBOT you will always win. Keyboard connection is used as Js triggering does not work.

My Games for js13games 2019 https://js13kgames.com/entries/reptour https://js13kgames.com/entries/recular https://js13kgames.com/entries/jouer

Axis Aligned https://computer-cguy.github.io/AxisAlignedCollisionJs/ A test run for BBOX Collision Algorithm. Use arrow keys and WASD to move the two cars respectively

Space Parallax https://github.com/Computer-CGuy/HTML-Space-Parallax Parallaxing universe website

Chrome Extension for form information sniffing https://github.com/Computer-CGuy/FormInfoSnifferChromeExtension

Node JS Face ID (SERVER) https://github.com/Computer-CGuy/NodeJsFaceID.git
For using it

           
           
       async function init() {
          video = document.getElementById("video");
          // navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia ||  navigator.mozGetUserMedia;
          const mediaStream = await navigator.mediaDevices.getUserMedia({video: true});
          // const video = document.createElement('video');
          video.srcObject = mediaStream;
        }
        init()
        var data = canvas.toDataURL();
        $.ajax({
              type: "POST",
              url: "http://34.67.231.148:3000/saveImage",
              data: {
                  title: "hello",
                  photo: data  
              }
          }).done(function (o) {
              $("#out").html(o)
              // alert("Photo Saved Successfully!");
          });

Here 34.67.231.148 is the Public IP of My Google Cloud VM on which the Nodejs script is running node index.js

e-lite-section-2's People

Contributors

yashjha123 avatar computerguyyash avatar

Watchers

 avatar

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.