Skip to content

Instantly share code, notes, and snippets.

@ruvnet
ruvnet / Research.md
Last active January 3, 2025 22:48
The Emergence of Malicious Large Language Models (LLMs) and the Next Frontier of Symbolic-AI Integration: A Comprehensive Research Paper Ab

Title:

The Emergence of Malicious Large Language Models (LLMs) and the Next Frontier of Symbolic-AI Integration: A Comprehensive Research Paper


Abstract

This research paper explores the rapid rise of malicious Large Language Models (LLMs)—often termed “Dark LLMs”—designed explicitly for cybercrime.

Building on prior analyses, we update the discourse to address critical gaps in existing research, focusing on model profiling, economic drivers, regulatory challenges, and advanced AI concepts such as symbolic reasoning and consciousness prompts.

@Mordo95
Mordo95 / Skillable.ts
Created December 1, 2022 14:23
A simple XP table / Leveling system in Typescript. Because why not. Most of the formulas have been sucked out of my thumb but work according to how I want it to
import XpTable from "./XpTable";
export default class Skillable {
protected _xp: number = 0;
get xp() {
return this._xp;
}
set xp(val) {

1. 常用药物

感冒/发烧类

  • 布洛芬(退烧、止痛)
  • 对乙酰氨基酚(泰诺)

抗病毒/流感类

  • 奥司他韦(达菲,需处方)

消炎类

  • 阿莫西林(需处方)
  • 红霉素软膏(外用)
@fnky
fnky / ANSI.md
Last active January 3, 2025 22:39
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
@bobuk
bobuk / .wezterm.lua
Created December 27, 2024 15:26
.wezterm.lua
local wezterm = require("wezterm")
local config = wezterm.config_builder()
config.color_scheme = "Earthsong"
config.window_frame = {
font_size = 12,
}
config.command_palette_font_size = 16
config.tab_bar_at_bottom = true
config.hide_tab_bar_if_only_one_tab = false
config.window_decorations = "RESIZE"
@bigbaer01
bigbaer01 / useful-one-liners.sh
Created January 3, 2025 22:37 — forked from oxagast/useful-one-liners.sh
Useful one liners
# Run the last command as root
sudo !!
# Serve current directory tree at http://$HOSTNAME:8000/
python -m SimpleHTTPServer
# Save a file you edited in vim without the needed permissions
:w !sudo tee %
# change to the previous working directory
cd -
# Runs previous command but replacing
^foo^bar
/*// =======================================================
The Retro Affect Animation Exporter
Created: January 6th, 2010
______________________________________________________________________________
Authors:
Peter Jones
David Carrigg
The function getFrame(IO) is by:
jugenjury from ps-scripts.com
@Anonimous05
Anonimous05 / JetBrains Products activation code until May 23 - 2024
Last active January 3, 2025 22:31
JetBrains Products activation code until October 14 - 2024
I2A0QUY8VU-eyJsaWNlbnNlSWQiOiJJMkEwUVVZOFZVIiwibGljZW5zZWVOYW1lIjoiVU5JVkVSU0lEQURFIEVTVEFEVUFMIERFIENBTVBJTkFTIiwiYXNzaWduZWVOYW1lIjoiVGFvYmFv77yaSkVU5YWo5a625qG25r+AIOa0u+W3peS9nOWupCAgcmVuIHpodW4gZGlhbiBtaW5n77yBIiwiYXNzaWduZWVFbWFpbCI6IlJvYmJ5X1dlbmlnZXJAb3V0bG9vay5jb20iLCJsaWNlbnNlUmVzdHJpY3Rpb24iOiJGb3IgZWR1Y2F0aW9uYWwgdXNlIG9ubHkiLCJjaGVja0NvbmN1cnJlbnRVc2UiOmZhbHNlLCJwcm9kdWN0cyI6W3siY29kZSI6IkRQTiIsInBhaWRVcFRvIjoiMjAyNC0xMC0xNCIsImV4dGVuZGVkIjpmYWxzZX0seyJjb2RlIjoiREIiLCJwYWlkVXBUbyI6IjIwMjQtMTAtMTQiLCJleHRlbmRlZCI6ZmFsc2V9LHsiY29kZSI6IlBTIiwicGFpZFVwVG8iOiIyMDI0LTEwLTE0IiwiZXh0ZW5kZWQiOmZhbHNlfSx7ImNvZGUiOiJJSSIsInBhaWRVcFRvIjoiMjAyNC0xMC0xNCIsImV4dGVuZGVkIjpmYWxzZX0seyJjb2RlIjoiUlNDIiwicGFpZFVwVG8iOiIyMDI0LTEwLTE0IiwiZXh0ZW5kZWQiOnRydWV9LHsiY29kZSI6IkdPIiwicGFpZFVwVG8iOiIyMDI0LTEwLTE0IiwiZXh0ZW5kZWQiOmZhbHNlfSx7ImNvZGUiOiJETSIsInBhaWRVcFRvIjoiMjAyNC0xMC0xNCIsImV4dGVuZGVkIjpmYWxzZX0seyJjb2RlIjoiUlNGIiwicGFpZFVwVG8iOiIyMDI0LTEwLTE0IiwiZXh0ZW5kZWQiOnRydWV9LHsiY29kZSI6IkRTIiwicGFpZFVwVG8iOiIyMDI0LTEwL
@mergu
mergu / HelmetCosmetics.java
Created April 6, 2021 22:55
Malicious code found in ZNetwork custom plugin
/*
* Decompiled with CFR 0.150.
*
* Could not load the following classes:
* org.bukkit.Bukkit
* org.bukkit.Material
* org.bukkit.command.CommandSender
* org.bukkit.entity.Player
* org.bukkit.event.EventHandler
* org.bukkit.event.Listener
@davepcallan
davepcallan / Program.cs
Created January 3, 2025 08:42
.NET Rate limiting simple examples
using Microsoft.AspNetCore.RateLimiting;
using System.Threading.RateLimiting;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddRateLimiter(options =>
{
// 1. Fixed Window Limiter (20 requests per 2 minutes)
// -----------------------------------------------
// |----------------- 2 min -----------------|