Skip to content

Instantly share code, notes, and snippets.

View mthony2002's full-sized avatar

Marcel J. Thony mthony2002

View GitHub Profile
@mthony2002
mthony2002 / MicrosoftLearn.md
Created April 27, 2019 22:46
GABC 2019 - Quebec city - Hands-on labs

GABC 2019 - Quebec city - Hands-on labs

https://aka.ms/AA4ucxd

Open a new browser window in Incognito/InPrivate mode and then select one of these labs:

  1. Linux VM - 1 hr 26 min
  2. Containers - 48 min
  3. Cognitive Vision Service - 32 min
  4. Cosmos DB - 27 min
@mthony2002
mthony2002 / Amount of flex-items per row
Created October 3, 2018 17:56 — forked from ihorduchenko/Amount of flex-items per row
How to adjust the amount of flex-items per row
@mixin max-width($width) {
@media screen and (max-width: $width) {
@content;
}
}
.container {
position: relative;
display: flex;
flex-flow: row wrap;
<?php
/*
* All database connection variables
*/
define('DB_USER', "root"); // db user
define('DB_PASSWORD', ""); // db password (mention your db password here)
define('DB_DATABASE', "foodapp_db"); // database name
define('DB_SERVER', "localhost"); // db server
<?php
/*
* Following code will list all the categories
*/
// array for JSON response
$response = array();