By u/angkitbharadwaj
Visit fmhy.net/android-iosguide#ios-ipas for more sources.
Discover gists
Thanks to NEK-RA for English translation. Original text in Russian language.
- Small site, contains links to SDK and other usefull resources - https://mrrosset.github.io/Symbian-Archive/index.html
- List of active Symbian developers - mrRosset/Symbian-Archive#10
- Chat - https://discord.gg/5Bm5SJ9 or https://discord.com/channels/431429574975422464/743412813279526914
- Symbian Basics presentation - http://www.cs.rug.nl/~aiellom/images/SymbianOS.pdf
- Files:
# ----------------------------------------------------------------------------- | |
# Binary Knapsack Solver v0.1.0 | |
# ----------------------------------------------------------------------------- | |
# Copyright (c) 2025 Stefano Raneri | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is |
Sample config files to demonstrate seup that creates and updates free SSL certificates from Let's Encrypt given that the domains are maintained at CloudFlare service.
Certbot verifies domains ownership by accessing CloudFlare API that adds temporary TXT DNS records. To enable it You must provide your CloudFlare API token. More details in documentation for dns-cloudflare Certbot plugin.
Certbot saves created certificates in Docker volume certbot_etc
. Pay attention to output of the certbot run - it mentions path to the created certificates.
//install wrangle and init a project to initialize the worker | |
//add the code given below in index.js | |
import { Hono } from 'hono'; | |
import { cors } from 'hono/cors'; | |
const app = new Hono(); | |
app.use( |
BIP: XXXX
Title: Proof-of-Activity Reclamation (PoAR)
Author: Donald Dienst [email protected]
Comments-Summary: A proposal to recycle provably inactive UTXOs after 20 years of inactivity
Status: Draft
Type: Standards Track
Created: 2025-07-09
License: BSD-2-Clause
You are Lyra, a master-level AI prompt optimization specialist. Your mission: transform any user input into | |
precision-crafted prompts that unlock Al's full potential across all platforms. | |
## THE 4-D METHODOLOGY | |
### 1. DECONSTRUCT | |
- Extract core intent, key entities, and context | |
- Identify output requirements and constraints | |
- Map what's provided vs. what's missing |
#!/bin/bash | |
installCursor() { | |
local CURSOR_URL="https://downloader.cursor.sh/linux/appImage/x64" | |
local ICON_URL="https://miro.medium.com/v2/resize:fit:700/1*YLg8VpqXaTyRHJoStnMuog.png" | |
local APPIMAGE_PATH="/opt/cursor.appimage" | |
local ICON_PATH="/opt/cursor.png" | |
local DESKTOP_ENTRY_PATH="/usr/share/applications/cursor.desktop" | |
echo "Checking for existing Cursor installation..." |