This file contains 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
const obj = { foo: 'hello', bar: 'world' } | |
const updatedObj = Object.fromEntries( | |
Object.entries(obj).map(([key, val]) => [ | |
key, | |
val.toUpperCase(), | |
]), | |
) | |
// {foo: "HELLO", bar: "WORLD"} |
This file contains 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
import QtQuick 2.0 | |
import MuseScore 3.0 | |
MuseScore { | |
menuPath: "Plugins.transposeDown" | |
onRun: { | |
for (var i = 1; i-- > 0;) { | |
cmd("transpose-down"); | |
} | |
Qt.quit(); |
This file contains 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
const assert = require('assert') | |
const mdx = require('@mdx-js/mdx') | |
const text = 'foo' | |
const expected = el => | |
`\n\nconst layoutProps = {\n \n};\nexport default class MDXContent extends React.Component {\n constructor(props) {\n super(props)\n this.layout = null\n }\n render() {\n const { components, ...props } = this.props\n\n return <MDXTag\n name="wrapper"\n \n components={components}><${el}>${text}</${el}>\n </MDXTag>\n }\n}\nMDXContent.isMDXComponent = true` | |
const elements = [ | |
// Unknown HTML Elements |
This file contains 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
getfacl -R folder > /tmp/permissions.acl | |
setfacl --restore=/tmp/permissions.acl |
This file contains 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
// ==UserScript== | |
// @name Hide Ebay auctions unless "Buy it now" or near end for Greasemonkey/Tampermonkey | |
// @namespace sscotth.io | |
// @description Hides Ebay auctions unless "Buy it now" or near end | |
// @include https://www.ebay.com/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
(() => { |
This file contains 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
// ==UserScript== | |
// @name Google redirect for DuckDuckGo for Greasemonkey/Tampermonkey | |
// @namespace sscotth.io | |
// @description Adds a Google redirect link to your DuckDuckGo search results | |
// @include https://duckduckgo.com/?q=* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
(() => { |
This file contains 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
# Why? | |
# To paste text into windows that normally don't allow it or have access to the clipboard. | |
# Examples: Virtual machines that do not yet have tools installed, websites that hijack paste | |
# | |
# Extended vs Simple? | |
# * Includes an initial delay to allow you to change active windows | |
# * Adds small delay between keypresses for slower responding windows like SSH sessions | |
# * Better handling of numbers | |
# * VMWare bug fix | |
# |
This file contains 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
(() => { | |
const src = 'https://cdn.jsdelivr.net/react/latest/react.min.js' | |
const script = document.createElement('script') | |
script.src = src | |
document.body.appendChild(script) | |
})() |
This file contains 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
/* alphanum.js (C) Brian Huisman | |
* Based on the Alphanum Algorithm by David Koelle | |
* The Alphanum Algorithm is discussed at http://www.DaveKoelle.com | |
* | |
* Distributed under same license as original | |
* | |
* This library is free software; you can redistribute it and/or | |
* modify it under the terms of the GNU Lesser General Public | |
* License as published by the Free Software Foundation; either | |
* version 2.1 of the License, or any later version. |
This file contains 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
const range = n => [...Array(n).keys()] |