This guide walks you through installing Nix, enabling flakes, and setting up a reproducible development environment on Arch Linux.
The recommended way to install Nix is via the official script:
| """ | |
| The most atomic way to train and run inference for a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
| #!/bin/bash | |
| readonly UNIT_NAME="antigravity-$(date +%s)" | |
| readonly APP_BIN="/usr/bin/antigravity --verbose" | |
| readonly TRIGGER="Lifecycle#onWillShutdown - end 'antigravityAnalytics'" | |
| echo "[*] Start as: $UNIT_NAME" | |
| systemd-run --user \ | |
| --scope \ |
| /** @format */ | |
| /** | |
| * | |
| * The principle of the algorithm is very simple. | |
| * | |
| * The module exports three functions: | |
| * | |
| * getTask() | |
| * The first function does not need any arguments. |
| import React from 'react' | |
| import PropTypes from 'prop-types' | |
| import { Helmet } from 'react-helmet' | |
| import { useSiteMetadata } from '../hooks/useSiteMetadata' | |
| export const Seo = ({ | |
| title, | |
| description, | |
| meta = [], | |
| canonical, |
| #!/bin/bash | |
| gdb -p "$1" -batch -ex 'set {short}$rip = 0x050f' -ex 'set $rax=231' -ex 'set $rdi=0' -ex 'cont' |
Frankie Bagnardi aka GreenJello has passed away on Sept 13, 2021 at age 27
Many of you in this channel know of him because he spent much of his time helping others, his death is a great blow to the community
He lost his battle with depression
Rest In Peace Frankie, we will never forget you.
If you are in a dark place, please reach out to chanops or the ones closest to you
This project is a tiny compiler for a very simple language consisting of boolean expression.
The language has two constants: 1 for true and 0 for false, and 4 logic gates:
! (not), & (and), | (or), and ^ (xor).
It can also use parentheses to manage priorities.
Here is its grammar in BNF format:
expr ::= "0" | "1"