A spinner and checkmark animation ending with a confetti-like pop effect inspired by X’s heart.
Update 1/25/25: Corrected background for dark mode
A Pen by Jon Kantner on CodePen.
A spinner and checkmark animation ending with a confetti-like pop effect inspired by X’s heart.
Update 1/25/25: Corrected background for dark mode
A Pen by Jon Kantner on CodePen.
repositories: | |
EmmanuelMess/geometry2: | |
type: git | |
url: https://github.com/EmmanuelMess/geometry2.git | |
version: emmanuelmess/fix/python_mapping | |
ament/ament_cmake: | |
type: git | |
url: https://github.com/ament/ament_cmake.git | |
version: rolling | |
ament/ament_index: |
-- AH POST-SERVER LOGS -- | |
-- ServerID: 19438a61-6617-4f5a-b7e9-deec4523a5e0 | |
-- Server started: February 07, 2025 08:15 PM UTC | Server uptime: 9938 seconds | |
------------------ LOADB LOGS ------------------ | |
{ | |
} |
!/bin/bash | |
# Set certificate details | |
CA_KEY="ca.key" | |
CA_CERT="ca.crt" | |
CA_SERIAL="ca.srl" | |
SERVER_KEY="server.key" | |
SERVER_CSR="server.csr" | |
SERVER_CERT="server.crt" | |
DAYS_CA=3650 # CA validity: 10 years |
-- AH POST-SERVER LOGS -- | |
-- ServerID: 59426752-4eb6-4f03-bf8b-71e1b31ed8ec | |
-- Server started: February 07, 2025 11:56 PM UTC | Server uptime: 304 seconds | |
------------------ LOADB LOGS ------------------ | |
{ | |
} |
Source: Creative JS Coder (https://www.youtube.com/watch?v=OTjmnF27ADk)
A Pen by Leonam Silva de Souza on CodePen.
## plot FSC curve from fsc.star file output from M | |
## usage: python plot_fsc.py PATH_TO_FSC_STAR_FILE | |
## Author: Atty Chang | |
import pandas as pd | |
import numpy as np | |
import matplotlib.pyplot as plt | |
import starfile | |
from sys import argv |
id | station | stationid | value | unit | obstime | date | |
---|---|---|---|---|---|---|---|
0 | 流浮山 | RF001 | 0 | mm | 2025-02-08T07:45:00+08:00 | 2025-02-08 | |
1 | 湿地公园 | RF002 | 0 | mm | 2025-02-08T07:45:00+08:00 | 2025-02-08 | |
2 | 水边围 | N12 | 0 | mm | 2025-02-08T07:45:00+08:00 | 2025-02-08 | |
3 | 石岗 | RF003 | 0 | mm | 2025-02-08T07:45:00+08:00 | 2025-02-08 | |
4 | 大美督 | RF004 | 0 | mm | 2025-02-08T07:45:00+08:00 | 2025-02-08 | |
5 | 大埔墟 | RF005 | 0 | mm | 2025-02-08T07:45:00+08:00 | 2025-02-08 | |
6 | 北潭涌 | RF006 | 0 | mm | 2025-02-08T07:45:00+08:00 | 2025-02-08 | |
7 | 滘西洲 | RF007 | 0 | mm | 2025-02-08T07:45:00+08:00 | 2025-02-08 | |
8 | 西贡 | N15 | 0 | mm | 2025-02-08T07:45:00+08:00 | 2025-02-08 |
<?php | |
if (count($argv) !== 4) { | |
exit("usage: json_bench.php input-string repeats flags\n"); | |
} | |
$input_string = $argv[1]; | |
$repeats = (int) $argv[2]; | |
$flags = (int) $argv[3]; |