this is a header
<picture>
<source srcset="/large.jpg"
media="(prefers-color-scheme: dark)">
<source srcset="/small.jpg"
media="(prefers-color-scheme: light)">
<img src="/large.jpg" />
*, | |
:before, | |
:after { | |
box-sizing: border-box; | |
border-width: 0; | |
border-style: solid; | |
border-color: #e5e7eb; | |
} | |
:before, | |
:after { |
*, | |
:before, | |
:after { | |
box-sizing: border-box; | |
border-width: 0; | |
border-style: solid; | |
border-color: #e5e7eb; | |
} | |
:before, | |
:after { |
<picture>
<source srcset="/large.jpg"
media="(prefers-color-scheme: dark)">
<source srcset="/small.jpg"
media="(prefers-color-scheme: light)">
<img src="/large.jpg" />
const YAML = require("yaml"); | |
const data = { | |
overview: { | |
str: "this is a string", | |
num: 5, | |
}, | |
}; | |
const yml = YAML.stringify(data, { |
#!/bin/bash | |
# A sample Bash script, by Ryan | |
DT=$(date '+%Y-%m-%d-%H%M%S') | |
OUTPUT_NAME="converted-$DT.mp4" | |
OUTPUT_FOLDER=$(dirname "$1") | |
OUTPUT_PATH="$OUTPUT_FOLDER/$OUTPUT_NAME" | |
echo "converting input video $1 to $OUTPUT_NAME mp4" |
from datetime import date | |
import random | |
import sublime_plugin | |
def callback(s): | |
print('saved: ', s) | |
class SuperSaveCommand(sublime_plugin.TextCommand): | |
def run(self, edit): | |
self.view.insert(edit, 0, "saving all the files") |
Following the steps documented to get tailwind to work with snowpack, nothing happens.
My script uses npm-run-all
as an intermediate parallel or sequential step to handle tailwind.
"scripts": {
"tailwind:start": "postcss ./public/tailwind.css -o ./public/tailwind.include.css -w",
"tailwind:build": "postcss ./public/tailwind.css -o ./public/tailwind.include.css --env production",
"snowpack:start": "snowpack dev",
"snowpack:build": "snowpack build",
select elements inside of shadow root - Google Search | |
Better History - Chrome Web Store | |
Better History - Chrome Web Store | |
chrome better history - Google Search | |
make pr draft pr - Google Search | |
run stage if azure piepelines - Google Search | |
azure pipelines only dev - Google Search | |
github foot notes - Google Search | |
macos get number of windows open - Google Search | |
strapi - Google Search |
Changing the font in a mapboxgl map is really only possible by using a font in the Mapbox Studio system.
// map.current.setLayoutProperty(
// "country-label",
// "text-size",
// originalSize * Number(e.target.value)
// );
// map.current.getLayoutProperty()
console.log(map.current);
I am using a SeedableRng
to make reproducible simulations.
Here's my get_rng
function:
use rand::prelude::*;
use rand_xoshiro::rand_core::SeedableRng;
use rand_xoshiro::Xoshiro256StarStar;
pub fn get_rng() -> impl Rng {