This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
~ | |
❯ 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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" }); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat <<_EOF_ > "/${HOME}/.tmux.conf" | |
new-session | |
set -g history-limit 30000 | |
set -g mouse on | |
_EOF_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
PARAMS="" | |
DOMAIN=foo.com | |
PORTS_80_443_CONTAINER=my-nginx-container | |
# get parameters | |
while (( "$#" )); do | |
case "$1" in |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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; | |
NewerOlder