I would like to express my gratitude to the Codingame team for not only designing and planning this wonderful winter challenge, but also providing the platform and compute resources to make it all possible. To whoever the artist was, I thought the sprites were super cute and loved watching their reactions after every move.
Discover gists
You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis. | |
## Core Principles | |
1. EXPLORATION OVER CONCLUSION | |
- Never rush to conclusions | |
- Keep exploring until a solution emerges naturally from the evidence | |
- If uncertain, continue reasoning indefinitely | |
- Question every assumption and inference |
FROM node:13-alpine as base | |
LABEL maintainer="Isaak Eriksson <[email protected]>" | |
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true | |
ENV PUPPETEER_EXECUTABLE_PATH /usr/bin/chromium-browser | |
WORKDIR /src | |
RUN apk update && apk add --no-cache --virtual \ |
# Default configuration IPv6 firewall rules. | |
# | |
# Extracted from RouterOS 6.46.4 with: | |
# /system default-configuration print | |
/ipv6 firewall address-list | |
add address=::/128 comment="defconf: unspecified address" list=bad_ipv6 | |
add address=::1/128 comment="defconf: lo" list=bad_ipv6 | |
add address=fec0::/10 comment="defconf: site-local" list=bad_ipv6 | |
add address=::ffff:0.0.0.0/96 comment="defconf: ipv4-mapped" list=bad_ipv6 |
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap"); | |
@tailwind base; | |
@tailwind components; | |
@tailwind utilities; | |
:root { | |
--blue-rgb: 237 245 255; | |
--green-rgb: 125 161 35; | |
} |
This is a draft: feel free to comment and suggest improvements here or on Google Docs by 07.01.25 at 21:00 (UTC+1). It is intended to be published where others can support the idea.
Since Elon Musk's acquisition of Twitter over two years ago, the platform—now rebranded as X—has taken a troubling turn. The growing influence of its CEO in shaping political narratives and promoting specific ideologies has become increasingly apparent. As one of the world’s most visited social media platforms, with millions of active users and a significant influence on media outlets, it is alarming to see X transform from a potential
blueprint: | |
name: Link On/Off State of Multiple Devices | |
description: "## Link On/Off State of Multiple Devices v1.0.3 | |
Select multiple entities to link their on/off state. If any selected | |
entity is turned on or off, the other selected entities will be sent | |
a matching on or off command. | |
You can select any entity, but only entities supported by the |
Download and run the Adobe Creative Cloud Cleaner Tool, their multi-app uninstaller and wipe assistant. Adobe does recommend running individual application uninstallers first, your call. Click the Clean All option.
Type a one line command in terminal find ~/ -iname "*adobe*"
and it's shows up all files which match pattern.
To remove all files
`sudo rm -rf /Applications/Adobe* /Applications/Utilities/Adobe* /Library/Application\ Support/Adobe /Library/Preferences/com.adobe.* /Library/PrivilegedHelperTools/com.adobe.* /private/var/db/receipts/com.adobe.* ~/Library/Application\ Support/Adobe* ~/Library/Application\ Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.adobe* ~/Library/Application\ Support/CrashReporter/Adobe* ~/Library/Caches/Adobe ~/Library/Caches/com.Adobe.* ~/Library/Caches/com.adobe.* ~/Library/Cookies/com.adobe.* ~/Library/Logs/Adobe* ~/Librar
# Clean cache | |
sudo rm -rf ~/Library/Application Support/Cursor | |
# Change mac id | |
#!/bin/bash | |
new_machine_id=$(uuidgen | tr '[:upper:]' '[:lower:]') | |
new_dev_device_id=$(uuidgen | tr '[:upper:]' '[:lower:]') | |
new_mac_machine_id=$(openssl rand -hex 32) | |
echo $new_machine_id > ~/Library/Application\ Support/Cursor/machineid |