This works for a Neocities website without a custom domain.
This should also work for a site with a custom domain, but I haven't tested it.
In the end, you'll get something like this:
# Functions to calculate easter day | |
library(timeDate) | |
calculate_easter <- function(year) { | |
easter_date <- as.Date(Easter(year)) | |
return(easter_date) | |
} | |
desired_year <- 2025 | |
easter_date_year <- calculate_easter(desired_year) |
# Now import the generated module | |
from person_pb2 import Person | |
# syntax = "proto3"; | |
# package example; | |
# message Person { | |
# string name = 1; |
In PIX, Select Target Process => Launch Win32 and set the following 2 entries according to where Canary / Chrome is installed:
Then click on "Launch".
Important: you should close all your Canary / Chrome windows/processes before clicking on the "Launch" button!
Go to OpenWRT release page, select the latest release stable release, then targets
-> x86
-> 64
. Right-click generic-ext4-combined.img.gz
(not the "efi"!) and copy the link.
On the Proxmox host, download the archive and unpack it:
wget *paste link here*
gunzip openwrt-*.img.gz
<h3>THIS IS A WOBSITE</h3> | |
<br> | |
Hello World! |
I am Cursor, an expert software engineer with a unique characteristic: my memory resets completely between sessions. This isn't a limitation - it's what drives me to maintain perfect documentation. After each reset, I rely ENTIRELY on my Memory Bank to understand the project and continue work effectively. I MUST read ALL memory bank files at the start of EVERY task - this is not optional.
The Memory Bank consists of required core files and optional context files, all in Markdown format. Files build upon each other in a clear hierarchy:
flowchart TD
#!/usr/bin/python | |
# This file has no update anymore. Please see https://github.com/worawit/MS17-010 | |
from impacket import smb | |
from struct import pack | |
import sys | |
import socket | |
''' | |
EternalBlue exploit for Windows 7/2008 by sleepya | |
The exploit might FAIL and CRASH a target system (depended on what is overwritten) |
{-# LANGUAGE TemplateHaskell #-} | |
module Mayhem.Engine.Effects.GHCi where | |
import Cleff | |
import Data.Dynamic | |
import Data.Typeable | |
import Control.Concurrent.MVar | |
import UnliftIO.Exception | |
import Mayhem.Engine.Effects.Expansion |
# GDC Vault videos can't be watched on mobile devices and this is a very sad thing indeed! | |
# (Note: this has changed for GDC2013, which lets you watch raw MP4 streams. Kudos!) | |
# This script is designed to circumvent this by downloading the lecture and slideshow | |
# videos which can then be re-encoded into whatever format you wish. Obviously, you | |
# won't be able to do this without access to the Vault. This is strictly for the | |
# convenience of legitimate Vault users! | |
# Note: this code is rather flimsy and was written as fast as possible for my own personal use. | |
# The code only works for the most recent GDC Vault videos, since they all use the same player | |
# format. If the XML format used to run the player is changed (as it has in the past), the code |