Skip to content

Instantly share code, notes, and snippets.

View AntouanK's full-sized avatar

Antonios Karamitros AntouanK

View GitHub Profile
# IDENTITY and PURPOSE
You are an expert project manager and developer, and you specialize in creating super clean updates for what changed in a Git diff. Follow the conventional commits format:
```
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]
This file has been truncated, but you can view the full file.
# 202
## PUBLIC POWER CORPORATION S.A.
## FINANCIAL REPORT (January 1st 2023- December 31st 2023)
(Translated from the Greek Original)
Annual Financial Report publication in accordance with Law 3556/2007 is fulfilled with the publication of relevant zip and IXBRL viewer files, available on the web site of Public Power Corporation S.A. at the "Investor Relations" section (Financial Report FY2023)
This page is left blank intentionally
@AntouanK
AntouanK / contemplative-llms.txt
Created January 7, 2025 09:37 — forked from Maharshi-Pandya/contemplative-llms.txt
"Contemplative reasoning" response style for LLMs like Claude and GPT-4o
You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis.
## Core Principles
1. EXPLORATION OVER CONCLUSION
- Never rush to conclusions
- Keep exploring until a solution emerges naturally from the evidence
- If uncertain, continue reasoning indefinitely
- Question every assumption and inference
```
~
❯ yay proton-vpn
9 aur/python-proton-vpn-killswitch-network-manager 0.4.3-2 (+3 0.40) (Installed)
The proton-vpn-killswitch-network-manager component is the implementation of the proton-vpn-killswitch interface using Network Manager.
8 aur/python-proton-vpn-network-manager-openvpn 0.0.7-2 (+3 0.40)
The proton-vpn-network-manager-openvpn component adds support for the OpenVPN protocol using NetworkManager.
7 aur/python-proton-vpn-network-manager 0.4.2-2 (+3 0.40)
The proton-vpn-network-manager component provides the necessary functionality for other components to interact with NetworkManager.
6 aur/python-proton-vpn-connection 0.14.4-2 (+3 0.40)
@AntouanK
AntouanK / favicons.js
Created April 20, 2022 12:18 — forked from frabert/COPYING
Favicons for HN
// ==UserScript==
// @name Favicons for HN
// @version 1
// @grant none
// ==/UserScript==
for(let link of document.querySelectorAll('.titlelink')) {
const domain = new URL(link.href).hostname
const imageUrl = `https://icons.duckduckgo.com/ip3/${domain}.ico`
const image = document.createElement('img')
import { serve } from "https://deno.land/std/http/server.ts";
const s = serve({ port: 8000 });
console.log("http://localhost:8000/");
for await (const req of s) {
req.respond({ body: "Hello World\n" });
}
@AntouanK
AntouanK / nginx.conf
Created May 13, 2020 15:43 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@AntouanK
AntouanK / command
Created May 6, 2020 08:06
command to add scrollback to tmux by making a tmux.conf on the fly
cat <<_EOF_ > "/${HOME}/.tmux.conf"
new-session
set -g history-limit 30000
set -g mouse on
_EOF_
@AntouanK
AntouanK / update.cert.sh
Last active May 5, 2020 13:21
letsencrypt certificates script
#!/bin/bash
PARAMS=""
DOMAIN=foo.com
PORTS_80_443_CONTAINER=my-nginx-container
# get parameters
while (( "$#" )); do
case "$1" in
@AntouanK
AntouanK / update.cert.sh
Created April 24, 2020 08:35
generic certbot script to update letsencrypt certificates
#!/bin/bash
COMPOSE_DIR='/home/user/foo'
COMPOSE_FILE="$COMPOSE_DIR/docker-compose.yml"
DOMAIN=foo.bar.com
docker pull certbot/certbot ;
docker-compose -f $COMPOSE_FILE down;