This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="container"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="container"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |