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
# This formula tracks 1.0.2 branch of OpenSSL, not the 1.1.0 branch. Due to | |
# significant breaking API changes in 1.1.0 other formulae will be migrated | |
# across slowly, so core will ship `openssl` & `[email protected]` for foreseeable. | |
class OpensslAT102 < Formula | |
desc "SSL/TLS cryptography library" | |
homepage "https://openssl.org/" | |
url "https://www.openssl.org/source/openssl-1.0.2u.tar.gz" | |
mirror "https://www.mirrorservice.org/sites/ftp.openssl.org/source/openssl-1.0.2u.tar.gz" | |
sha256 "ecd0c6ffb493dd06707d38b14bb4d8c2288bb7033735606569d8f90f89669d16" |
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
(defun org-html--reference (datum info &optional named-only) | |
"Return an appropriate reference for DATUM. | |
DATUM is an element or a `target' type object. INFO is the | |
current export state, as a plist. | |
When NAMED-ONLY is non-nil and DATUM has no NAME keyword, return | |
nil. This doesn't apply to headlines, inline tasks, radio | |
targets and targets." | |
(let* ((type (org-element-type datum)) |
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
❯ steam | |
Running Steam on ubuntu 21.04 64-bit | |
STEAM_RUNTIME is enabled automatically | |
Pins up-to-date! | |
Steam client's requirements are satisfied | |
WARNING: Using default/fallback debugger launch | |
/home/jethro/.local/share/Steam/ubuntu12_32/steam | |
[2021-07-06 20:07:53] Startup - updater built Jun 8 2021 22:23:36 | |
Installing breakpad exception handler for appid(steam)/version(1623193086) | |
[2021-07-06 20:07:53] Loading cached metrics from disk (/home/jethro/.local/share/Steam/package/steam_client_metrics.bin) |
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
;;; THIS MIGRATION SCRIPT IS NOW DEPRECATED. | |
;;; PLEASE USE M-x org-roam-migrate-wizard, FOUND WITHIN THE ORG-ROAM REPO ITSELF. |
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
find ./ -iname "*.md" -type f -exec sh -c 'pandoc "${0}" -o "${0%.md}.org"' {} \; | |
rm *.md | |
find ./ -iname "*.org" -type f -exec sh -c 'sed -i -E "s/\[\[(.*)\]\]/\[\[file:\1.org]\[\1\]\]/" "${0}"' {} \; |
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
(setq jethro/org-agenda-todo-view | |
`(" " "Agenda" | |
((agenda "" | |
((org-agenda-span 'day) | |
(org-deadline-warning-days 365))) | |
(todo "TODO" | |
((org-agenda-overriding-header "To Refile") | |
(org-agenda-files '(,(concat jethro/org-agenda-directory "inbox.org"))))) | |
(todo "TODO" | |
((org-agenda-overriding-header "Emails") |
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
with import <nixpkgs> {}; | |
let | |
ocamlPackages = pkgs.recurseIntoAttrs pkgs.ocamlPackages_latest; | |
findlibSiteLib = "${ocamlPackages.findlib}/lib/ocaml/${ocamlVersion}/site-lib"; | |
ocamlVersion = (builtins.parseDrvName ocamlPackages.ocaml.name).version; | |
ocamlInit = pkgs.writeText "ocamlinit" '' | |
let () = | |
try Topdirs.dir_directory "${findlibSiteLib}" | |
with Not_found -> () |
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
with import <nixpkgs> {}; | |
let | |
ocamlPackages = pkgs.recurseIntoAttrs pkgs.ocamlPackages_latest; | |
# findlibSiteLib = "${ocamlPackages.findlib}/lib/ocaml/${ocamlVersion}/site-lib"; | |
# ocamlVersion = (builtins.parseDrvName ocamlPackages.ocaml.name).version; | |
# ocamlInit = pkgs.writeText "ocamlinit" '' | |
# let () = | |
# try Topdirs.dir_directory "${findlibSiteLib}" | |
# with Not_found -> () |
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
with import <nixpkgs> {}; | |
(python36.buildEnv.override { | |
extraLibs = with pkgs.python36Packages; | |
[ | |
pip | |
scikitlearn | |
tensorflow | |
numpy | |
scipy |
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
{pkgs, ...}: | |
let | |
hostsVersion = "1553048103e57638ae653843ae1b8258ece1423a"; | |
in | |
{ | |
networking.networkmanager.enable = true; | |
networking.extraHosts = builtins.readFile (pkgs.fetchurl { | |
url = "https://github.com/StevenBlack/hosts/raw/${hostsVersion}/alternates/fakenews-gambling-porn/hosts"; |
NewerOlder