Macbook Neo (I'm on macOS Tahoe 26.5.1) cursor is lagging when the cursor is near the screen's edges or when it enters a Terminal window. [1][2][3][4][5]
| <?php | |
| namespace App\Jobs\Middleware; | |
| use Closure; | |
| use Illuminate\Contracts\Cache\Store; | |
| use Illuminate\Support\Facades\Cache; | |
| use Illuminate\Support\Facades\Date; | |
| use Illuminate\Support\InteractsWithTime; |
Bluesky has implemented age verification measures in response to regional laws that restrict access, prompting users to verify their age through Epic Games' Kids Web Services before they can access adult content.
This sucks, but thankfully there are ways to work around it.
Before diving in: I encourage you to read this entire document, including the
You can take the same source code package that Ubuntu uses to build jq, compile it again, and realize 90% better performance.
I use jq for processing GeoJSON files and other open data offered in JSON format. Today I am working with a 500MB GeoJSON file that contains the Alameda County Assessor's parcel map. I want to run a query that prints the city for every parcel worth more than a threshold amount. The program is
| var LANGUAGE = "EN"; | |
| var WORDS = { EN: { followsYouText: "Follows you" } }; | |
| var MS_PER_CYCLE = 10; | |
| var PRINT_FOLLOW_INFORMATION = true; | |
| var SKIP_FOLLOWERS = false; | |
| var SKIP_NON_FOLLOWERS = false; | |
| var SKIP_USERS = []; | |
| SKIP_USERS = SKIP_USERS.map(function(value) { return value.toLowerCase(); }); | |
| var userData = []; | |
| function printUserNames() { |
If you create a new release in GitHub, you will either create a new tag (which will point to the most recent commit on main) or choose an existing tag (that might point to an older commit).
If you want to create releases from old commits (e.g. because you forgot to create a realease or didn't work with releases back then), there is a problem with this: when creating a tag for a specific commit in the past, GitHub only lets you pick from the most recent commits, so the commit you want to tag will not show up in the list.
Luckily, you can tag older commits locally [1]:
- Find the commit on GitHub. If it is from a Pull Request, you can look into the closed Pull Requests. Within the PR you'll find a link to the commit.
- Copy the commit hash from yo
| // ==UserScript== | |
| // @name TweetXer | |
| // @namespace https://github.com/lucahammer/tweetXer/ | |
| // @version 0.9.3 | |
| // @description Delete all your Tweets for free. | |
| // @author Luca,dbort,pReya,Micolithe,STrRedWolf | |
| // @license NoHarm-draft | |
| // @match https://x.com/* | |
| // @match https://mobile.x.com/* | |
| // @match https://twitter.com/* |
| // ==UserScript== | |
| // @name Old Reddit Redirect | |
| // @description Redirects www.reddit.com to the old version of the website | |
| // @downloadURL https://gist.githubusercontent.com/msanders/52700d5c5ed76f1114594ddb862b530e/raw/old-reddit-redirect.user.js | |
| // @updateURL https://gist.githubusercontent.com/msanders/52700d5c5ed76f1114594ddb862b530e/raw/old-reddit-redirect.user.js | |
| // @version 2023.10.19 | |
| // @run-at request | |
| // ==/UserScript== | |
| [ |
| #!/bin/sh | |
| # Remove the performance overlay, it meddles with some tasks | |
| unset LD_PRELOAD | |
| ## Shadow kwin_wayland_wrapper so that we can pass args to kwin wrapper | |
| ## whilst being launched by plasma-session | |
| mkdir $XDG_RUNTIME_DIR/nested_plasma -p | |
| cat <<EOF > $XDG_RUNTIME_DIR/nested_plasma/kwin_wayland_wrapper | |
| #!/bin/sh |