Bootstrap knowledge of LLMs ASAP. With a bias/focus to GPT.
Avoid being a link dump. Try to provide only valuable well tuned information.
Neural network links before starting with transformers.
| # syntax=docker/dockerfile:1 | |
| ARG SANDBOX_VERSION=0.12.5 | |
| ARG SANDBOX_DIGEST=sha256:315b14485d6982774521f3e2f605fdf39ba6de6942d65a022048a54967ca0062 | |
| FROM docker.io/cloudflare/sandbox:${SANDBOX_VERSION}@${SANDBOX_DIGEST} | |
| ARG RUNNER_VERSION=2.336.0 | |
| ARG RUNNER_SHA256=04cf0be1aff4c3ec3554466c39124ca250e3effd8873bb7e8d68535aa9505d5d | |
| ARG DOCKER_VERSION=29.7.2 | |
| ARG DOCKER_SHA256=803d433f226db4776e1768fd319fc6c6e4935a456acf84fcc0080818b854bc8f |
| #!/bin/bash | |
| # Production Docker Host Setup Script | |
| # This script sets up a secure, production-ready Docker host on Ubuntu Server 22.04 LTS | |
| # It includes security hardening, performance optimizations, and best practices | |
| # CAUTION: This script makes significant system changes. Use at your own risk. | |
| set -euo pipefail | |
| # --- AESTHETICS --- |
| #!/usr/bin/env python3 | |
| """ | |
| Run this like: | |
| cd /my/git/dir/ | |
| git shortlog -s -n -e | python3 ~/mailmap.py > .mailmap | |
| """ | |
| import sys |
The target audience for this is people who are beginners at software engineering and using linux. A lot of the information here may be obvious or already known to you. The language involved is C but you do not need to know any C to read this tutorial. I used mg to write this blog post. I used vs code to edit the source code.
This post is also available on gopher://tilde.team:70/0/~river/tweak-free-software
If you use a piece of free software and it's 99% perfect but there's just this one thing it does that annoys the hell out of you.. you can in theory just fix it! Here's a look at what doing that is like. Hopefully it inspires you, or you pick up a could tricks on the way!
| # Email List Containing free and disposable email service providers. | |
| # Some domains have been included as they have been trapped by SPAM, Anti-Malware Systems | |
| # NOTE: Some domains may have stopped working | |
| 0-00.usa.cc | |
| 0-180.com | |
| 0-30-24.com | |
| 0-420.com | |
| 0-900.com |
If you're sharing your own work and there's a way to try it out, put "Show HN" in the title. Make sure you've read the Show HN guidelines: https://news.ycombinator.com/showhn.html.
Posts without URLs get penalized, so when you submit, put your site in the URL field and leave the text field blank.
Add a comment to the thread giving the backstory of how you came to work on this, and explaining what's different about it. That tends to seed discussion in a good direction.
Include a clear statement of what your project is or does. If you don't, the discussion will consist of "I can't tell what this is". >
| Rebol [] | |
| last-20-closed-issues: { | |
| query($owner:String!,$repo:String!) { | |
| repository(owner:$owner, name:$repo) { | |
| issues(last:20, states:CLOSED) { | |
| edges { | |
| node { | |
| title | |
| url |
| # PHP Architecture Tester pre-commit hook for git | |
| # | |
| # @author Carlos Alandete <carlos.alandete@gmail.com> | |
| # | |
| STAGED_FILES_PHP=$(git diff --cached --name-only --diff-filter=ACM | grep '^src.*\.php\?$') | |
| if [[ "$STAGED_FILES_PHP" == "" ]]; then | |
| printf "\033[1;32mNo files that could affect PHP Architecture Tester\033[0m\n\n" | |
| exit 0 | |
| fi |
| import 'dotenv/config'; | |
| import { NestFactory } from '@nestjs/core'; | |
| import * as repl from 'repl'; | |
| import * as Logger from 'purdy'; | |
| const LOGGER_OPTIONS = { | |
| indent: 2, | |
| depth: 1, | |
| }; |