Command | Selector | Description | Keybinding (Linux) | Keybinding (macOS) | Keybinding (Windows) |
---|---|---|---|---|---|
link:open |
atom-text-editor |
Opens the http(s) link under the cursor | ctrl-shift-o | ||
platformio-ide-terminal:insert-selected-text |
Run in terminal selection or commands by line | ctrl-shift-o |
This file contains hidden or 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="wrapper"> | |
<form class="side-by-side"> | |
<div class="form-group"> | |
<label>Label</label> | |
<input type="text" value="text"/> | |
</div> | |
<div class="form-group"> | |
<label>Label</label> | |
<input class="error" type="text" value="text"/> |
This file contains hidden or 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 ns($map, $path) { | |
$keys: (); | |
$separator: '.'; | |
$index : str-index($path, $separator); | |
@while $index != null { | |
$item: str-slice($path, 1, $index - 1); | |
$keys: append($keys, $item); | |
$path: str-slice($path, $index + 1); | |
$index : str-index($path, $separator); |
This file contains hidden or 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
// ---- | |
// libsass (v3.5.0.beta.2) | |
// ---- | |
// Nested selectors test | |
$modifiers: '.footer','.header', '.main-heading' ; | |
$modified: '.logo','.title','.sub-title'; | |
$selectors: (); |
This file contains hidden or 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
.card-grid | |
.card | |
.card-media | |
img(src="https://images.unsplash.com/photo-1465414829459-d228b58caf6e") | |
.card-content | |
.title | |
| Titre de la card | |
.subtitle | |
| some sub informations | |
.description |
This file contains hidden or 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
# https://git-scm.com/docs/gitignore | |
# https://www.gitignore.io/ | |
# Sass | |
.sass-cache/ | |
*.css.map | |
#SCM | |
.svn/ |
This file contains hidden or 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
# http://robots-txt.com/ | |
# Outil de test du robot.txt | |
# https://technicalseo.com/seo-tools/robots-txt/ | |
# User-agents, cibler certains robots d'indexation | |
# User-agent: Googlebot | |
User-agent: * | |
# Ne rien indexer | |
Disallow: / |
This procedure explains how to install MySQL using Homebrew on macOS Sierra 10.12
- Installing Homebrew is effortless, open Terminal and enter :
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- Note: Homebrew will download and install Command Line Tools for Xcode 8.0 as part of the installation process.
At this time of writing, Homebrew has MySQL version 5.7.15 as default formulae in its main repository :
This file contains hidden or 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
<!-- Structured Markup for a blog page | |
Tools: | |
https://search.google.com/structured-data/testing-tool | |
References: | |
https://schema.org/Blog | |
https://schema.org/BlogPosting | |
This file contains hidden or 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
''Coding rules & styleguides'' | |
Rédiger du code javascript lisible | |
https://carlanderson.xyz/intro-to-readable-javascript/ | |
Google Javascript Styleguide : | |
https://google.github.io/styleguide/jsguide.html | |