Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>CSS-Only Quiz</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; max-width: 800px; margin: 2rem auto; padding: 0 1rem; background-color: #f5f5f5; }
```
h1 {
color: #333;
text-align: center;
}
.quiz-container {
background: white;

Hi!

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>CSS-Only Quiz</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; max-width: 800px; margin: 2rem auto; padding: 0 1rem; background-color: #f5f5f5; }
```
h1 {
color: #333;
text-align: center;
}
.quiz-container {
background: white;
commit a755b09e49a3fd44a5a6fdbbd441eb9366cdf475
Author: Dr. Stefan Schimanski <stefan.schimanski@gmail.com>
Date: Tue Feb 11 22:15:16 2025 +0100
Add fair queue
Signed-off-by: Dr. Stefan Schimanski <stefan.schimanski@gmail.com>
diff --git a/pkg/builder/controller.go b/pkg/builder/controller.go
index 47b519e..1902a20 100644
@simonl65
simonl65 / show.blade.php
Created February 11, 2025 21:18
Use Leaflet in Laravel (instead of MapBox)
<script>
// Initialize the map with default coordinates
let map = L.map("map").setView([51.477928, 0], 5);
// Add the OpenStreetMap tile layer
L.tileLayer("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", {
attribution: "&copy; OpenStreetMap contributors",
maxZoom: 20,
minZoom: 2,
tileSize: 512,
Pipeline still running ...
PipelineRun is still running: Tasks Completed: 39 (Failed: 0, Cancelled 0), Incomplete: 1, Skipped: 14
[get-pr-number : parse-pr-url] + echo -n 5940
[get-pr-number : parse-pr-url] + tee /tekton/results/git_pr_number
[get-pr-number : parse-pr-url] 5940
[acquire-lease : create-lease] + calculate_duration_in_seconds 90m
[acquire-lease : create-lease] + '[' m == m ']'
[acquire-lease : create-lease] + TOTAL_DURATION_IN_SECONDS=5400
[acquire-lease : create-lease] + export TOTAL_DURATION_IN_SECONDS
@jmlucjav
jmlucjav / .idea-lazy.vim
Created February 11, 2025 21:16 — forked from mikeslattery/.idea-lazy.vim
LazyVim mappings for Jetbrains IDEs
" ~/.idea-lazy.vim
" LazyVim mappings for Jetbrains IDEs
" Required plugins. https://plugins.jetbrains.com/bundles/7-ideavim-bundle
" IDEAVim
" Which-Key
" IdeaVim-Sneak
" To install, add this to the top of your ~/.ideavimrc:
@carabalonepaulo
carabalonepaulo / reader.rs
Last active February 11, 2025 21:57
vxaos buffer
#[macro_export]
macro_rules! can_read {
($reader:expr, $($type:ty), *) => {{
let mut total_size = 0;
$(
total_size += if std::any::TypeId::of::<$type>() == std::any::TypeId::of::<String>() {
2
} else {
std::mem::size_of::<$type>()
};