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
# Domjudge compose.yaml. To run: | |
# First add the following to /etc/default/grub's GRUB_CMDLINE_LINUX_DEFAULT section: | |
# cgroup_enable=memory swapaccount=1 systemd.unified_cgroup_hierarchy=0 | |
# $ head /dev/urandom | tr -dc A-Za-z0-9 | head -c 13 > db_password.txt | |
# $ head /dev/urandom | tr -dc A-Za-z0-9 | head -c 13 > db_root_password.txt | |
# $ docker compose up | |
# Note that judgehosts will not work the first time you run 'docker compose up'. After initial setup is completed it will print the following in logs: | |
# domjudge-1 | Initial admin password is mmBEWPj2VYWYiW_v | |
# domjudge-1 | | |
# domjudge-1 | Initial judgehost password is uBCdPeZFf+N2LBqylYVpMvaFBoaXTsdC |
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
========== | |
VULKANINFO | |
========== | |
Vulkan Instance Version: 1.3.250 | |
Instance Extensions: count = 23 | |
=============================== | |
VK_EXT_acquire_drm_display : extension revision 1 |
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
use bitcoin::consensus::encode::serialize_hex; | |
use bitcoin::consensus::Decodable; | |
use bitcoin::Transaction; | |
use std::fs::File; | |
use std::io::prelude::*; | |
fn main() { | |
println!("Enter tx hex: "); | |
let mut l = String::new(); | |
std::io::stdin().read_line(&mut l).unwrap(); | |
let mut bytes = vec![]; |
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
[ | |
{ | |
"scanId": 186, | |
"scanName": "All Datapoints Scan", | |
"trackingRule": { | |
"predicate": "and", | |
"args": [ | |
{ | |
"predicate": "containsAsset", | |
"assetId": "6e5c5a93e24ba3bdcd2b510d8623a9c6e74efe7e0e6d20c114c47a19b299f57f" |
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
use rand::seq::SliceRandom; | |
fn main() { | |
let mut rng = rand::thread_rng(); | |
let names = ["R0flcopt3r", "skg", "RadiantBastard", "sham1"]; | |
println!("{} has won! Please download the Yoroi Wallet to receive your 0.2 Ergo", names.choose(&mut rng).unwrap()); | |
} |
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
<?xml version="1.0" encoding="utf-8"?> | |
<savegame> | |
<meta> | |
<gameVersion>1.2.2900 rev837</gameVersion> | |
<modIds> | |
<li>brrainz.harmony</li> | |
<li>ludeon.rimworld</li> | |
<li>ludeon.rimworld.royalty</li> | |
<li>majorhoff.rimthreaded</li> | |
<li>unlimitedhugs.hugslib</li> |
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
<?xml version="1.0" encoding="utf-8"?> | |
<savegame> | |
<meta> | |
<gameVersion>1.2.2900 rev837</gameVersion> | |
<modIds> | |
<li>brrainz.harmony</li> | |
<li>ludeon.rimworld</li> | |
<li>ludeon.rimworld.royalty</li> | |
<li>majorhoff.rimthreaded</li> | |
</modIds> |
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
;;; $DOOMDIR/config.el -*- lexical-binding: t; -*- | |
;; Place your private configuration here! Remember, you do not need to run 'doom | |
;; refresh' after modifying this file! | |
;; Some functionality uses this to identify you, e.g. GPG configuration, email | |
;; clients, file templates and snippets. | |
(setq user-full-name "Kamal Ahmad" | |
user-mail-address "[REMOVED]") |
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
diff --git a/rivalcfg/__main__.py b/rivalcfg/__main__.py | |
index 9427a8c..b2f9897 100644 | |
--- a/rivalcfg/__main__.py | |
+++ b/rivalcfg/__main__.py | |
@@ -32,7 +32,7 @@ def _check_linux(): | |
print("\n Run 'rivalcfg --update-udev' as root to update.\n") | |
-def main(args): | |
+def main(): |
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
struct Foo { | |
x: i32, | |
} | |
fn main() { | |
let mut foo = Foo { x: 42 }; | |
let x = &mut foo.x; | |
*x = 13; | |
let y = foo; | |
println!("{}", y.x); // -> 42; expected result: 13 |
NewerOlder