Howto configure .no domains with zeit's nameservers on domeneshop.
now domains add example.no --force
In this talk we will be all discussing the origin of the furry fandom. How we will thogheter create a new furry-in-js framework. We will going over how they have changed the current fandom world, our hearts and the js world in 5 very awesome minutes! This talk is to prove a point that stars mean nothing in this case.
The proposal you’re about to read is not just a proposal. We have a working implementation of almost everything we discussed here. We encourage you to checkout and build our branch: our fork, with the relevant branch selected. Building and using the implementation will give you a better understanding of what using it as a developer is like.
Our implementation ended up differing from the proposal on some minor points. As our last action item before making a PR, we’re writing documentation on what we did. While I loathe pointing to tests in lieu of documentation, they will be helpful until we complete writing docs: the unit tests.
This repo also contains a bundled version of npm that has a new command, asset
. You can read the documentation for and goals of that comma
This guide now lives at https://github.com/joyeusenoelle/GuideToMastodon/ - please check there for updates, and feel free to submit a PR if you have suggestions or want to submit a translation!
Estimated time: 10 minutes
This is a ServiceWorker template to turn small github pages into offline ready app.
Whenever I make small tools & toys, I create github repo and make a demo page using github pages (like this one).
Often these "apps" are just an index.html
file with all the nessesary CSS and JavaScript in it (or maybe 2-3 html/css/js
files). I wanted to cache these files so that I can access my tools offline as well.
Make sure your github pages have HTTPS enforced, you can check Settings > GitHub Pages > Enforce HTTPS
of your repository.
This guide assumes you have the emmet
and language-babel
packages already installed in Atom
keymap.cson
file by clicking on Atom -> Keymap…
in the menu bar'atom-text-editor[data-grammar~="jsx"]:not([mini])':
import {src, dest, watch, parallel, series} from 'gulp'; | |
import lintPlugin from 'gulp-lint-plugin'; | |
import testPlugin from 'gulp-test-plugin'; | |
import buildPlugin from 'gulp-build-plugin'; | |
const SRC_DIRECTORY = './src'; | |
const TEST_DIRECTORY = './test'; | |
const DIST_DIRECTORY = './dist'; | |
const lintDir = dir => src(dir) |
// Aligning notes: | |
- The default for most elements is usually block or in-line | |
- A separate block that takes up the whole width available based on the width of its parent element. | |
- When you use margin: auto, the browser automatically calculates the margins on each side. It will make equal amounts of space on the left and right sides of the margins. | |
- display: none; (removes styling) | |
- display: inline; | |
when an element's display is set to inline, the browser will not apply any width or height properties, or top and bottom margin settings. An inline element will only accept left and right margins and any padding value. |