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
<script context="module" lang="ts"> | |
import type * as $types from './$types' | |
export const csr = false | |
export const getData = (async (event) => { | |
return { | |
server: event.data.server, | |
client: 'client data!' | |
} |
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
# | |
# Disabling RootFS Verification required first: | |
# https://cloudreadykb.neverware.com/s/article/Disabling-RootFS-Verification?ui-force-components-controllers-recordGlobalValueProvider.RecordGvp.getRecord=1&r=5 | |
# | |
description "Dim screen" | |
author "Maxwell Barvian" | |
start on start-user-session | |
stop on stopping ui or starting halt or starting reboot |
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
/* @import url("//fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic"); */ | |
#padpage { | |
max-width: 49rem !important; | |
width: 100% !important; | |
margin-left: auto !important; | |
} | |
/* Header */ | |
#hp-page-editor #main-header-container { |
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
// ==UserScript== | |
// @name Dribbble Likes | |
// @namespace http://barvian.me/ | |
// @version 1.0.0 | |
// @description Add Likes to Dribbble profile dropdown | |
// @author Maxwell Barvian | |
// @match *://dribbble.com/* | |
// ==/UserScript== | |
(function (window, document, undefined) { |
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
const results = [] | |
return arrayOfPromises.reduce((chain, promise, i) => | |
chain.then((result) => { | |
if (i > 0) results[i-1] = result | |
return promise | |
}) | |
, Promise.resolve()) | |
.then((lastResult) => results.push(lastResult)) | |
.then(() => results) |
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
module.exports = { | |
config: { | |
// default font size in pixels for all tabs | |
fontSize: 12.5, | |
// font family with optional fallbacks | |
fontFamily: '"Input Mono", "Menlo for Powerline", Menlo, "DejaVu Sans Mono", "Lucida Console", monospace', | |
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) | |
cursorColor: 'rgba(255,255,255,.4)', |
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
.postMeta-previewSocialHeader, | |
.postMetaHeader-socialProof2, | |
[data-action-value="followers"] b, | |
[data-action="show-recommends"], | |
[data-action="scroll-to-responses"], | |
.button[href$="responses"], | |
.compressedPostListItem-recommendAndRespondCounts { | |
display: none; | |
} |
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
@import url("https://fontlibrary.org/face/adobe-blank"); | |
/* Shots */ | |
.dribbble-shot .tools { | |
height: 11px; | |
} | |
.dribbble-shot .tools .cmnt, | |
.dribbble-shot .tools .views { | |
display: none; |
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
// ==UserScript== | |
// @name Letterboxd RT | |
// @namespace http://barvian.me/ | |
// @version 1.0.0 | |
// @description Add RottenTomatoes ratings to Letterboxd film pages. | |
// @author Maxwell Barvian | |
// @match *://letterboxd.com/* | |
// ==/UserScript== | |
(function(window, document, undefined) { |