Skip to content

Instantly share code, notes, and snippets.

View VRamazing's full-sized avatar
🏠
Working from home

Vignesh Ramesh VRamazing

🏠
Working from home
View GitHub Profile
@VRamazing
VRamazing / index.html
Created October 13, 2021 13:11
ReactJS Stopwatch
<div id="container"></div>
@VRamazing
VRamazing / index.html
Created October 13, 2021 13:04
ReactJS Stopwatch
<div id="container"></div>
@VRamazing
VRamazing / graphs.js
Created September 23, 2019 13:45
DFS, BFS algorithm
function Graph(v){
this.vertices = v;
this.edges = 0;
this.adj = []
for(var i=0; i<this.vertices; ++i){
this.adj[i]=[];
// this.adj[i].push("");
}
this.addEdge = addEdge;
this.showGraph = showGraph;
import os
from django.core.management.base import BaseCommand
class Command(BaseCommand):
help = 'Renames a Django project'
def add_arguments(self, parser):
parser.add_argument('new_project_name', type=str,
help='The new Django project name')
@VRamazing
VRamazing / txt
Created November 29, 2017 11:58
Suspain(A tone that brings suspense)
# Suspain by Vignesh Ramesh(VRamazing)
in_thread do
sleep 20
loop do
4.times do
use_synth :blade
play :Fs3, release: 0.5
sleep 0.25
play :Gs3, release: 0.5
@VRamazing
VRamazing / index.html
Created September 11, 2017 20:34
Local Weather
<div class="container" ng-app="myApp" ng-controller="myCtrl">
<div class="card" ng-style="style">
<div class="card-content white-text">
<div class= "quote-text">
<br>
<p>{{city}}<span ng-show="city">,</span>{{country}}</p>