Skip to content

Instantly share code, notes, and snippets.

View tmibvishal's full-sized avatar
🎯
Focusing

Vishal Singh tmibvishal

🎯
Focusing
  • tmibvishal
  • Indian Institute of Technology, Delhi
View GitHub Profile
## Privacy Policy
Nomeworkz Pvt Limited built the Nomeworkz app as a Free app. This SERVICE is provided by Nomeworkz Pvt Limited at no cost and is intended for use as is.
This page is used to inform visitors regarding our policies with the collection, use, and disclosure of Personal Information if anyone decided to use our Service.
If you choose to use our Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that we collect is used for providing and improving the Service. We will not use or share your information with anyone except as described in this Privacy Policy.
The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Nomeworkz unless otherwise defined in this Privacy Policy.
## Information Collection and Use
For a better experience, while using our Service, we may require you to provide us with certain personally identifiable information. The information that we request will be r

Assignment 6: Event Driven Simulation solution

Vishal Singh 2018CS50426

Running the program

Prerequisite:-

  1. gnuplot
    • Mac OSX brew install gnuplot
    • Linux sudo apt-get install -y gnuplot

Commands

@tmibvishal
tmibvishal / SyncLyrics.md
Last active September 12, 2019 16:11
SyncLyrics can generate lyrics for .mp3 file and play the mp3 file along with showing the lyrics

Real Time Image based Path Tracking Algorithm

User Interface

We have the following possible edge interface

({
    "node": "type: Node | init: node",
    "edge": "type: Edge | init: edge",
    "confidence": "type: int | init: 0",
    "last_matched_i_with_j": "type: int | init: self.i_at_matched_node - 1",
@tmibvishal
tmibvishal / Real Time Image based Path Tracking Algorithm
Created June 19, 2019 10:15
Real Time Image based Path Tracking Algorithm
# Real Time Image based Path Tracking Algorithm
### User Interface
We have the following possible edge interface
```python
({
"node": "type: Node | init: node",
"edge": "type: Edge | init: edge",
"confidence": "type: int | init: 0",
"last_matched_i_with_j": "type: int | init: self.i_at_matched_node - 1",
@tmibvishal
tmibvishal / filesend_vishal.md
Last active June 12, 2019 07:34
Workflow of filesend after the 2 users are connected

Workflow of filesend after the 2 users are connected

User Interface

We have the following user interface

export interface IUser {
    socketID: string;
    state: string;
    outRequest: string;
 partner: string;