Skip to content

Instantly share code, notes, and snippets.

View alialobidm's full-sized avatar
🌴
On vacation

Kokikati alialobidm

🌴
On vacation
  • Nikstra
  • المملكة العربية السعودية
View GitHub Profile
.php
.html
.txt
.htm
.aspx
.asp
.js
.css
.pgsql.txt
.mysql.txt

Proposal: Sustainable KSM Economics via Burn Mechanisms

Author: @hantoniu-codeberg

Date: January 2026

Track: Wish For Change / Root

Version: 1.2 — Burn-Focused (Complementary to @olanod's Validator Reduction Proposal)

@alialobidm
alialobidm / .php_cs.dist
Created September 28, 2025 19:30 — forked from Billz95/.php_cs.dist
A Customised fixer for PHP-CS-Fixer to use `prettier`'s php plugin to pre-process the code before getting analysed by other fixers. This would enable `php-cs-fixer` to take advantage of `prettier`'s ability of managing long line.
<?php
require_once __DIR__.'/relative/path/to/PrettierPHPFixer/File';
return PhpCsFixer\Config::create()
->registerCustomFixers([
(new PrettierPHPFixer()),
])
->setRules([
'Prettier/php' => true,
@alialobidm
alialobidm / flow.graphql
Created January 24, 2025 14:27 — forked from ryanschneider/flow.graphql
EthQL transaction confirmation via subscription
# offline, sign a transaction to generate it's raw bytes 0xRAWTX
# connect to our new transaction websocket endpoint
# send the graphql mutation:
mutatation {
sendRawTransaction(data: "0xRAWTX") {
hash
}
}
# get back the hash or an error
{