Skip to content

Instantly share code, notes, and snippets.

View nicolagardo's full-sized avatar
💻
Coding

Nicolas Lagardo nicolagardo

💻
Coding
View GitHub Profile
@nicolagardo
nicolagardo / account.component.html
Created April 23, 2023 00:58 — forked from yubing24/account.component.html
Angular Material Side Navigation with Expandable Menus
<mat-toolbar color="accent">
<button mat-icon-button matTooltip="Application Menu" (click)="sidenav.toggle()">
<mat-icon>settings</mat-icon>
</button>
Account Settings
<span style="flex: 1 1 auto;"></span>
<div>
<button mat-icon-button matTooltip="Switch Apps">
<mat-icon>apps</mat-icon>
</button>
@nicolagardo
nicolagardo / top_movies.sql
Created March 3, 2023 12:53 — forked from pamelafox/top_movies.sql
Top 100 Movies
/* Source: http://www.boxofficemojo.com/alltime/world/ */
CREATE TABLE topmovies(
Rank INTEGER,
Title TEXT,
Studio TEXT,
Worldwide REAL,
Domestic REAL,
DomesticPct REAL,
Overseas REAL,
OverseasPct REAL,