Skip to content

Instantly share code, notes, and snippets.

{
"passed": true,
"results": {
"errors": [],
"failed": [],
"passed": [
{
"description": "Check to make sure that all CRs have a spec block.",
"elapsed_time": 14284.0,
"name": "ScorecardBasicSpecCheck"
@lvanasse
lvanasse / ci-arm64-01.log
Created July 3, 2025 08:08
[arm64-01] CI Log for nuttx @ f45216ecb30751013d41d41efd2433cb971e1d84 / nuttx-apps @ e6a335ded005a75829bd50baa328f89c247c5764
Script started on 2025-07-03 07:45:17+00:00 [COMMAND="/home/ludovic/nuttx-release/run-job.sh arm64-01" <not executed on terminal>]
Now running https://github.com/lupyuen/nuttx-release/blob/main/run-job.sh
Called by https://github.com/lupyuen/nuttx-release/blob/main/run-ci.sh
+ job=arm64-01
+ neofetch
.-/+oossssoo+/-.
`:+ssssssssssssssssss+:`
-+ssssssssssssssssssyyssss+-
.ossssssssssssssssssdMMMNysssso.
/ssssssssssshdmmNNmmyNMMMMhssssss/
@alanbernstein
alanbernstein / cpanel-microoptimize.js
Created July 3, 2025 08:08
tampermonkey script to fix cpanel file editor
// ==UserScript==
// @name cpanel-microoptimize
// @description improvements to cpanel file editor: dark theme, readable file path, save shortcut
// @match *://*/*filemanager/editit*
// @run-at document-end
// @grant none
// @author Alan Bernstein
// @namespace http://alanbernstein.net
// @version 1.0
// ==/UserScript==
@branfosj
branfosj / easybuild_test_report_23285_easybuilders_preasybuild-easyconfigs_20250703-UTC-08-07-53.md
Created July 3, 2025 08:07
EasyBuild test report for easybuilders/easybuild-easyconfigs PR(s) #23285

Test report for PR(s) easybuilders/easybuild-easyconfigs#23285

Test result

Build succeeded for 4 out of 4 (4 easyconfigs in total)

Overview of tested easyconfigs (in order)

  • SUCCESS fmt-10.2.1-GCCcore-13.2.0.eb
  • SUCCESS fmt-7.1.1-GCCcore-11.2.0.eb
  • SUCCESS fmt-9.1.0-GCCcore-11.3.0.eb
  • SUCCESS fmt-9.1.0-GCCcore-12.2.0.eb

Quick take-away

  • Hunter-level checks (regex → DNS → SMTP + catch-all detection)

    • Go → AfterShip email-verifier: feature-rich, 100 k+ downloads/month, Docker-ready, still actively patched. ([github.com][1])
    • Ruby → Truemail: the only gem that still handshakes over SMTP and handles grey-listing well. ([github.com][2])
    • Rust → check-if-email-exists: fastest CLI/micro-service; ships an HTTP mode so every stack can call it. ([crates.io][3])
    • Python → validate_email: long-running, PyPI >9 M downloads; portable but slower than Go/Rust. ([pypi.org][4])
  • 99 % of signup forms only need syntax + MX + disposable blocking—use:

@PhoenixGameDevelopment
PhoenixGameDevelopment / gist:a7143423f470ad32c85febe4107eea26
Created July 3, 2025 08:07
A Simple AI-Generated Program to Generate the "Brian's Brain" Variant of Conway's "Game of Life"
using System;
using System.Drawing;
using System.Windows.Forms;
class BriansBrain : Form
{
// Simulation parameters
const int CellSize = 12;
int width, height;
int[,] currentGen, nextGen;
@ameliagrace8
ameliagrace8 / Office 2024 Pro Plus the Best Choice for Businesses.md
Created July 3, 2025 08:07
When it comes to enterprise-grade productivity software, Microsoft Office 2024 Professional Plus stands out as a powerful, cost-effective solution designed to meet the needs of modern businesses

Which Features Make Office 2024 Pro Plus the Best Choice for Businesses?

When it comes to enterprise-grade productivity software, Microsoft Office 2024 Professional Plus stands out as a powerful, cost-effective solution designed to meet the needs of modern businesses. With performance upgrades, AI-powered tools, and enhanced collaboration features, it’s more than just a software suite — it’s a long-term business asset.


1. All-in-One Productivity Suite

Office 2024 Pro Plus includes the complete set of Microsoft tools essential for business operations:

@PhoenixGameDevelopment
PhoenixGameDevelopment / gist:422de6c1c3686983ec7bebdb39611557
Created July 3, 2025 08:06
A Simple AI-Generated Program to Generate Conway's "Game of Life"
using System;
using System.Drawing;
using System.Windows.Forms;
class GameOfLife : Form
{
const int CellSize = 10; //10
int[,] cells, nextCells;
int width, height;
bool isRunning;
@PhoenixGameDevelopment
PhoenixGameDevelopment / gist:086729be89c7ba861c026ca7edde24f2
Created July 3, 2025 08:06
Simple AI-Generated Program to Display a Rotating "Tesseract" (4D cube) on the Screen.
using System;
using System.Drawing;
using System.Windows.Forms;
class Tesseract : Form
{
// Tesseract vertices (4D)
readonly double[,] vertices4D = new double[16, 4];
double[,] projected3D = new double[16, 3];
PointF[] vertices2D = new PointF[16];
#!/usr/bin/env python3
# /// script
# dependencies = [
# "typer",
# "rich",
# ]
# ///
import typer