Skip to content

Instantly share code, notes, and snippets.

View brovnie's full-sized avatar
🔨
Work in progress

Marlena brovnie

🔨
Work in progress
  • Belgium
View GitHub Profile
@brovnie
brovnie / media-query.css
Created September 30, 2019 16:19 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
@brovnie
brovnie / countries_by_population.sql
Last active February 8, 2019 22:17 — forked from pamelafox/countries_and_territories.sql
countries_by_population.sql
/*
Top 100 Countres By Population, 2014
Collected by https://www.khanacademy.org/profile/darrylyeo/
Data adapted from
http://www.worldometers.info/world-population/population-by-country/
*/
CREATE TABLE countries_by_population (
rank INTEGER PRIMARY KEY AUTOINCREMENT,
country TEXT,