Search results

  1. fukurou

    railpunk funcs

    replacer mapper for ports, translations def word_diff(str1, str2): w1 = str1.split() w2 = str2.split() limit = min(len(w1), len(w2)) diffs = [] for i in range(limit): if w1[i] != w2[i]: diffs.append((w1[i], w2[i])) return diffs
  2. fukurou

    👨‍💻 dev legend of fudge extractor

    import re def make_extractor(pattern_str): # Escape the whole string so regex metacharacters don’t break it escaped = re.escape(pattern_str) # Replace the escaped 'fudge' with a capture group regex_str = escaped.replace(r"fudge", r"(.*)") return re.compile(regex_str) s =...
  3. fukurou

    jizzbox snippet storer

    import re text = "code xx yy ok zz" # extract "xx yy" m1 = re.search(r"code\s+(.*?)\s+ok", text) v1 = m1.group(1) if m1 else None # extract "zz" m2 = re.search(r"ok\s+(.*)$", text) v2 = m2.group(1) if m2 else None print(v1) # xx yy print(v2) # zz
  4. fukurou

    snippet summoner

    class SnippetSummonerStr: # funnels strings into lookup keys def __init__(self): self.incantations: set[str] = set() self.exclusions: set[str] = set() def getSummonerStr(self, str1:str)->str: # check for summon incantation in str start for item in...
  5. fukurou

    office libre on win 11

  6. fukurou

    👨‍💻 dev once per day module

    import datetime class TimeOfDayGreeting(Skill): def __init__(self): super().__init__() self.replied_today = False self.last_reply_date = None # Override def input(self, ear: str, skin: str, eye: str): # Check if it's a new day today =...
  7. fukurou

    SQLite spluger

    import sqlite3 from pathlib import Path class AbsDictionaryDB: def save(self, key: str, value: str): """Returns action string""" pass def load(self, key: str) -> str: return "null" class SQLiteDictionaryDB(AbsDictionaryDB): def __init__(self, db_path: str...
  8. fukurou

    👨‍💻 dev super alg genner jizzer

    class EmptyStringTracker: def __init__(self, N): self.N = N self.counter = 0 self.triggered = False def check(self, str1: str) -> bool: if str1 == "": # Only increment until N if self.counter < self.N: self.counter...
  9. fukurou

    onedrive

  10. fukurou

    no brokies allowed

    wanna join? become a member? you need a proton mail address. brokies go post on reddit. this is a premium forum for the based coderpunks.:s47: we be lemonizing and shiiiiiiiiiiiiiiiiiiiiiieeet
  11. fukurou

    🐍 python brain power level calculator

    def calculate_brain_level(current_age: int, average_jizz_per_day: float) -> int: """ Calculates brain level based on age and daily jizz frequency. Assumes jizzing starts at age 12 and uses cubic root scaling (like Pokémon EXP curves). Parameters: - current_age (int)...
  12. fukurou

    I got a lot done today

    and by that I mean I jizzed like 7 times. some would say that's a waste of a day, but I feel like it's actually leveling up the brain with exp points. it's necessary when you handle the sheer amount of todo's and coding as I do.
  13. fukurou

    AI voice cloner locally and not soy puke

    ### Voice Cloning Walkthrough for Windows (PyCharm Terminal) **Forget Bash. This is for the PyCharm terminal on Windows 11.** #### 1. Create Project & Virtual Environment 1. Open PyCharm 2. Create new project: `voice_clone` 3. Open Terminal (bottom tab) #### 2. Create requirements.txt In...
  14. fukurou

    venice.ai TTS

    Alright, you asked for the full “shit in the ass walkthrough,” so buckle up—we’re going full throttle on this one. Here’s your no-BS, step-by-step guide to sending a string to Venice AI’s Text-to-Speech API and blasting it through your laptop speakers using Python. 💣 The Full Walkthrough...
  15. fukurou

    anti glitchin voice effect shit of asses power up!

    prev ver: class DiVoiceEffects(Skill): # Ensure that you have a "voices" directory in the same location as this script. # Place your .mp3 files inside this folder. The filenames should be sanitized # (lowercase, spaces replaced with underscores) for smooth playback. def...
  16. fukurou

    🐍 python jizzy vision dev

    import cv2 import numpy as np class DiHuskyLensReco(Skill): def __init__(self): super().__init__() self._skill_lobe = 5 self.cap = cv2.VideoCapture(0) self._object_registry = {} # object_hash -> unique_id self._next_id = 1 self.detector =...
  17. fukurou

    👨‍💻 dev LLM to skill

    import requests import json import threading import time # Initialize conversation history conversation_history = [] # Global variables for async operation is_working = False current_reply = "" def talk_to_waifu(prompt, history): global is_working, current_reply # Build the full...
  18. fukurou

    venice ai skill dev

    import requests import json def call_venice_api(prompt, api_key): api_url = "https://api.venice.ai/v1/generate" payload = { "prompt": prompt, "model": "venice-uncensored-1.1", "max_tokens": 150 } headers = { "Content-Type": "application/json"...
  19. fukurou

    👨‍💻 dev cummy balls duck rabbit season

    import random class DiSeasonBanter(Skill): def __init__(self): super().__init__() self.current_side = "duck" # AI's current stance self.last_user_side = None # Track user’s previous side self.toleranceCount = 0 # Loop safety valve...
  20. fukurou

    👨‍💻 dev LLM dev ass

    🧠 Step 1: Choose Your LLM Pick a model that suits your hardware and goals. Popular choices: LLaMA 3 (Meta) Mistral Gemma GPT4All These models are available in GGUF format and optimized for local use. ⚙️ Step 2: Install Ollama Ollama is a user-friendly tool to run LLMs locally. curl...
Top