-
Building a Second Brain: The Book - The step-by-step guide to building a Second Brain. Based on 10+ years of research & experiments with organizing our digital lives & improving our productivity.
-
Building a Second Brain: The Definitive Introductory Guide | Forte Labs - (2023/05/01) This is an introduction to Building a Second Brain, the proven method to organize your digital life and unlock your creative potential.
Discover gists
Thank you for contributing to ShowScript! In addition to this open-source version hosted on GitHub and licensed under AGPL 3.0, MCParks maintains a private version of ShowScript that has a few hooks into internal build systems, legacy plugins, and custom configuration. We use Copybara to remove these irrelevant parts of our internal version before publishing to GitHub and attaching the open source license. We also use Copybara to integrate contributions from folks like you into our internal version. We promise our internal version will never hide or obfuscate useful features or functionality available in the open source version! Before accepting your contribution, we ask that you sign the following Contributor License Agreement (CLA) that will allow us to maintain this minimally-changed internal version. Thanks again for helping us improve ShowScript!
! Fix ThinkPad shenanigans | |
keycode 118 = End | |
keycode 115 = Insert | |
! AltGr is Mode_switch | |
clear mod5 | |
keycode 108 = Mode_switch | |
! AltGr shortcuts for umlauts | |
keycode 39 = s S ssharp |
Installing different versions of open jdk through Homebrew(assuming already installed) and already having Java 8.
We need to install a tool called jenv - Java version manager which is similar to nvm(nodeJs version manager).
brew install jenv
Export the jenv path to .bash_profile or .zshrc - whatever you are using. I am using .zshrc
-- | |
-- Subject: HTTP Servers and FRCA | |
-- Author: Scott Forstie | |
-- Date : February, 2024 | |
-- Features Used : This Gist uses SQL PL, qsys2.object_statistics, qsys2.syspartitionstat, | |
-- SQL aliases, SQL built-in functions, UDTF, qsys2.ifs_read, and pipe | |
-- | |
-- HTTP Server configuration detail resides in the IFS. | |
-- The HTTP Server instance file (QUSRSYS/QATMHINSTC *FILE) | |
-- points to the IFS path to use for each specific server. |
# include <Siv3D.hpp> // Siv3D v0.6.15 | |
class MochiMochiCircle { | |
private: | |
// ポリゴン作成量を減らすため、単位円を所持。 | |
Array<Vec2> m_vertices; | |
public: | |
Vec2 center; | |
double radius; |
import ast | |
import logging | |
import inspect | |
from typing import Type, TypeVar | |
from dspy import Assert, Module, ChainOfThought, Signature, InputField, OutputField | |
from pydantic import BaseModel, ValidationError | |
logger = logging.getLogger(__name__) | |
logger.setLevel(logging.ERROR) |
<!doctype html> | |
<html> | |
<head> | |
<title>This is the title of the webpage!</title> | |
</head> | |
<body> | |
<p>This is an example paragraph. Anything in the <strong>body</strong> tag will appear on the page, just like this <strong>p</strong> tag and its contents.</p> | |
</body> | |
</html> |
If your geocoding task requires only US county and state level information, you can avoid a third party web service dependency using open data and postgis.
Natural Earth counties, US only.