-
Checkout the tag (a Detached HEAD)
git checkout tag/v1.1
-
Create and Checkout a branch off that tag (i.e. Branching off the tag)
git checkout -b my-tagged-branch
namespace MauiControl.Rating; | |
internal class MaterialDesignIconsFont | |
{ | |
public const string VectorSquare = "\U000f0001"; | |
public const string AccessPointNetwork = "\U000f0002"; | |
public const string AccessPoint = "\U000f0003"; | |
public const string Account = "\U000f0004"; | |
public const string AccountAlert = "\U000f0005"; | |
public const string AccountBox = "\U000f0006"; |
{ | |
"version": 8, | |
"name": "Bright", | |
"sources": { | |
"mapbox": { | |
"url": "http://osm2vectortiles.tileserver.com/v1.json", | |
"type": "vector" | |
} | |
}, |
#!/usr/bin/env node | |
const fs = require('fs'); | |
const moment = require('moment'); | |
const _ = require('lodash'); | |
const path = require('path'); | |
const agent = require('superagent-promise')(require('superagent'), Promise); | |
//Lang Codes https://ctrlq.org/code/19899-google-translate-languages |
#!/usr/bin/env node | |
const fs = require('fs'); | |
const moment = require('moment'); | |
const _ = require('lodash'); | |
const path = require('path'); | |
const agent = require('superagent-promise')(require('superagent'), Promise); | |
//Lang Codes https://ctrlq.org/code/19899-google-translate-languages |
/* | |
Based on: | |
1. http://stephen.io/mediaqueries | |
2. https://css-tricks.com/snippets/css/media-queries-for-standard-devices/ | |
*/ | |
/* iPhone X in portrait & landscape */ | |
@media only screen | |
and (min-device-width : 375px) | |
and (max-device-width : 812px) |
// How to connect 5 publishers with 5 subscribers | |
// over TCP using ZeroMQ's XPUB/XSUB proxy. | |
// sub (connect) | |
// <-8701-> | |
// (bind) xpub <---> xsub (bind) | |
// <-8700-> | |
// (connect) pub | |
var zmq = require('zmq'); |
free -m
to see memory statistics
df -h
to see disk usage statistics
du -h --max-depth=1 | sort -hr
ls -ld .?*
Will only list hidden files
ls -a
List All Files
If you're storing anything in MySQL databases that you do not want to lose, it is very important to make regular backups of your data to protect it from loss. This tutorial will show you two easy ways to backup and restore the data in your MySQL database. You can also use this process to move your data to a new web server.
Back up From the Command Line (using mysqldump)
Back up your MySQL Database with Compress
Restoring your MySQL Database
Backing Up and Restoring using PHPMyAdmin