Skip to content

Instantly share code, notes, and snippets.

@kentarofujiy
kentarofujiy / History|28a8d735|wpxC.json
Last active April 10, 2022 19:43
Google Translate Custom Styling
{
"editor.suggestSelection": "first",
"remote.SSH.remotePlatform": {
"165.227.100.91": "linux",
"192.168.15.18": "linux",
"seminovos-kentaro": "linux",
"142.93.108.210": "linux",
"servidor-home": "linux",
"sotreq-novosite-rails": "linux",
"sotreq-novosite-vue": "linux",
@mbaersch
mbaersch / gacode-example-gtag-js.html
Last active January 17, 2023 07:03
Write Google Analytics Client ID to localStorage
<!--
Replace existing standard gtag.js tracking-code with this
snippet in order to store the Client ID in localStorage and use this ID when present
converted for direct code implementation from Simo Ahava´s solution for GTM; see
https://www.simoahava.com/analytics/use-localstorage-client-id-persistence-google-analytics/
for details
Client IDs will survive deletion of cookies by user or ITP 2.1
@miku
miku / Sierra.md
Last active August 19, 2023 21:24
MacOS Sierra App Store Link
@JacobDB
JacobDB / inline-svg-function.scss
Created January 26, 2017 17:45 — forked from B-iggy/inline-svg-function.scss
Inline SVG function [SASS]
// Replace letters
@function str-replace($string, $search, $replace: '') {
$index: str-index($string, $search);
@if $index {
@return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
}
@return $string;
}