Giter Site home page Giter Site logo

Vishal Gaurav's Projects

algo icon algo

This repo consists of code for my algorithms and data structures problem solving.

android-bootstrap icon android-bootstrap

A template/bootstrap/boilerplate application that includes tons of great open source tools and frameworks.

c-gallery icon c-gallery

Assignment: Digital Photo Album Write a program that allows a user to peruse a set of large images downloaded from a digital camera, and produce an html photo album. That is: A set of raw images, from the camera, lives in a directory. The program should take, as arguments, the names of a set of raw images. E.g., if photos/ is the directory and album is your program, one might invoke the program via the shell command line as album photos/*.jpg. For each photo in this input set, the program should: Generate a thumbnail version (e.g., very small) of the photo (using the Linux command-line convert program) Display the thumbnail to the user (using the Linux command-line display program) Ask the user whether or not it should be rotated; if so, do it. (using the Linux command-line convert program) Ask the user for a caption, and collect it. Generate a properly oriented half-size version of the photo (using the Linux command-line convert program) When done, the program should leave the following in the directory in which it was invoked. (That is, if you were in foo/ when you invoked album, then all these things go into foo/) a file index.html containing, for each photo: a properly oriented thumbnail a caption a link from the thumbnail to a properly oriented medium-size version of the photo the thumbnails and medium-size versions.

cs165 icon cs165

Repository for Smartphone Programming (COSC 165) course work.

cs60 icon cs60

assignments and project for Computer Networks coursework.

dboyz icon dboyz

source code and other development related docs for dboyz applicaton.

freecodecamp icon freecodecamp

The http://FreeCodeCamp.com open-source codebase and curriculum. Learn to code and help nonprofits.

fresco icon fresco

An Android library for managing images and the memory they use.

fttlawtester icon fttlawtester

Fitts’ Law predicts movement-time as a function of distance (to the center of the target) and required accuracy (the size of the target). It can be described using the following formula. MT = a + b Γ— ID; ID = log2(2A/W) Where MT is task completion time, ID is the index of difficulty, A (amplitude) is the distance to the center of the target and W (width) is the width of the (square) target. This program will help us to collect data so that we can calculate the coefficients a and b in the future.

gitignore icon gitignore

A collection of useful .gitignore templates

inimesed icon inimesed

An Android app that lets you search your contacts by voice. Internet not required. Based on Pocketsphinx. Uses Estonian acoustic models.

markmyplaces icon markmyplaces

This is simple android application which I developed in process of learning android location services and google map APIs. This application fetches your current location and show it in map. User can mark their location and can add geofences alert to it. This application also uses Android design support and app compat library.

mean icon mean

MEAN (Mongo, Express, Angular, Node) - A Simple, Scalable and Easy starting point for full stack javascript web development - utilizing many of the best practices we've found on the way

multi-threaded-bridge-simulation-in-c icon multi-threaded-bridge-simulation-in-c

Assignment: Simulate the Ledyard Bridge Construction Project Suppose that they need to rebuild the Ledyard Bridge again. This construction requires closing one lane of the bridge, making it a one-way bridge. Traffic may only cross the bridge in one direction at a time. This construction also will weaken the bridge, limiting its capacity to at most MAX_CARS vehicles. (E.g., try MAX_CARS = 3.) Coding In your system, each vehicle should be represented by a thread, which executes the function OneVehicle(direction) when it arrives at the bridge. OneVehicle(direction) { ArriveBridge(direction); // now the car is on the bridge! OnBridge(direction); ExitBridge(direction); // now the car is off } direction should be TO_NORWICH or TO_HANOVER. (You may certainly add other arguments, or collapse this all into a general argument structure, as appropriate.) ArriveBridge must not return until it is safe for the car to get on the bridge. OnBridge should, as a side-effect, print the state of the bridge and waiting cars, in some nice format, to make it easier to monitor the behavior of the system. (So.... watch out for race conditions here, too!) "Can we have a bridgekeeper thread?" No. The car threads must synchronize themselves; you may not have an extra thread directing traffic. Basic Requirements Safety. Your simulation should always prohibit "bad interleavings" where: cars going opposite directions crash on the bridge. the bridge collapses, because too many cars were on it. Liveness. Your simulation should also ensure that: if a car gets on the bridge, it will eventually cross and get off if cars are waiting, and the bridge is empty, a car will get on Efficiency. Your simulation should also make efficient use of the bridge capacity. That is...... if there are fewer than MAX_CARS on the bridge (say, traveling to Hanover) and they are traveling sufficiently slowly and there's a car waiting to go Hanover then that car will get on the bridge too (If MAX_CARS > 1 but your solution only allows one car at a time on the bridge, then that's a problem.) Be sure to test your code to try to produce a good sampling of potential interleavings. However, also be sure to have a principled design---because testing here may show the presence of bugs, but probably cannot assure you of their absence. Be sure your code does not have dangerous race conditions.

pscontinuous icon pscontinuous

Continuous speech recognition on Android using pocketsphinx

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.