Skip to content

Instantly share code, notes, and snippets.

View igorlanko's full-sized avatar
Building collecta.space

Igor Lanko igorlanko

Building collecta.space
View GitHub Profile
@rsms
rsms / macos-distribution.md
Last active June 7, 2024 05:59
macOS distribution — code signing, notarization, quarantine, distribution vehicles
@arthurattwell
arthurattwell / stylus_basecamp-dark.css
Last active June 16, 2021 22:49
Dark mode for Basecamp 3 with Stylus
/* Work in progress.
A Basecamp 3 dark theme for Stylus
(https://addons.mozilla.org/en-US/firefox/addon/styl-us/)
based on https://userstyles.org/styles/177262/basecamp-insomnia */
:root
{
--bg-md: #18242b;
--bg-md-2: #152025;
--bg-lt: #213038;
@dongyuwei
dongyuwei / get_title_and_url.applescript
Last active April 30, 2024 05:02 — forked from vitorgalvao/Get Title and URL.applescript
Applescript to get frontmost tab’s url and title of various browsers.
# Keep in mind that when asking for a `return` after another, only the first one will be output.
# This example is meant as a simple starting point, to show how to get the information in the simplest available way.
# Google Chrome
tell application "Google Chrome" to return URL of active tab of front window
tell application "Google Chrome" to return title of active tab of front window
# Google Chrome Canary
tell application "Google Chrome Canary" to return URL of active tab of front window
tell application "Google Chrome Canary" to return title of active tab of front window
# Chromium