Skip to content

Instantly share code, notes, and snippets.

View fionera's full-sized avatar
🐴
Still installing PonyOS

Fionera fionera

🐴
Still installing PonyOS
  • @monogon-dev
  • Germany
  • 22:15 (UTC +02:00)
View GitHub Profile
@fionera
fionera / wp-config.php
Created August 1, 2025 20:19
Configless wordpress
```
<?php
define('DB_NAME', get_current_user());
define('DB_USER', get_current_user());
define('DB_PASSWORD', '');
define('DB_HOST', '/run/mysqld/mysqld.sock');
define('DB_CHARSET', 'utf8mb4');
define('DB_COLLATE', '');
$table_prefix = 'wp_';
package fdcache
import (
"fmt"
"io"
"log"
"os"
"sync"
"sync/atomic"
"time"
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Random Hex Colors in XML</title>
</head>
<body>
<label for="file-input">Select XML file:</label>
<input type="file" id="file-input">
<button id="randomize-btn" disabled>Randomize Hex Colors</button>

Contributor Agreement

Individual Contributor Exclusive License Agreement

(including the Traditional Patent License OPTION)

Thank you for your interest in contributing to CSZ Ltd. ("We" or "Us").

The purpose of this contributor agreement ("Agreement") is to clarify and document the rights granted by contributors to Us.

@fionera
fionera / README.md
Last active October 25, 2021 19:18
Reverse IP Converter in Go

Reverse IP

Converts an IP to the reverse DNS Style:

		{
			name:   "v4",
			IP:     net.ParseIP("1.2.3.4"),
			output: "4.3.2.1",
		},
 {
package main
import (
"bufio"
"crypto/tls"
"io"
"log"
"net"
"net/url"
"os"
@fionera
fionera / go.mod
Last active July 1, 2021 20:19
RunCam 5 QR Code Generator
module RCFiveGenerator
go 1.16
require (
github.com/yeqown/go-qrcode v1.5.5
golang.org/x/tools v0.1.4
)
replace github.com/yeqown/go-qrcode => ./go-qrcode
@fionera
fionera / main.go
Last active April 9, 2021 19:10
Pr0gramm Stocks Crawler
package main
import (
"bytes"
"context"
"encoding/json"
"flag"
"fmt"
"io/ioutil"
"log"
@fionera
fionera / main.go
Created March 30, 2021 12:59
Pr0gramm Blackjack Bot
package main
import (
"encoding/json"
"fmt"
"log"
"net/http"
"strings"
"time"
)
@fionera
fionera / main.go
Last active October 26, 2020 16:21
Goldene Henne Bot
package main
import (
"fmt"
"log"
"sync"
"sync/atomic"
"time"
"golang.org/x/net/websocket"