Skip to content

Instantly share code, notes, and snippets.

View hexbinoct's full-sized avatar

user77 hexbinoct

  • Pakistan
View GitHub Profile
@hexbinoct
hexbinoct / System.ini
Created August 8, 2022 16:27
Rainmeter custom System.ini with bigger fonts
; Lines starting ; (semicolons) are commented out.
; That is, they do not affect the code and are here for demonstration purposes only.
; ----------------------------------
[Rainmeter]
; This section contains general settings that can be used to change how Rainmeter behaves.
Update=1000
Background=#@#Background.png
; #@# is equal to Rainmeter\Skins\illustro\@Resources
BackgroundMode=3
public class WaitC
{
int m_hour, m_minute;
int m_waitMilliSeconds = 0;
public string TargetDailyTime {
get {
return $"{m_hour.ToString("00")}{m_minute.ToString("00")}";
}
set {
@hexbinoct
hexbinoct / gist:342713e6d02f971e0379e71465322e7b
Created January 30, 2025 05:21
7b R1 distill solves sudoku
To solve this 4x4 puzzle, I'll start by analyzing the given numbers and applying the rules step by step.

First, I'll examine the first row. I notice that the corners already contain 2 and 3. Since each row must include the numbers 1, 2, 3, and 4 without repetition, the missing numbers in the first row must be 1 and 4.

Next, I'll look at the first column. The top-left cell is 2, and the bottom-left cell is 1. This means the remaining cells in the first column must be 3 and 4.

Moving on to the second row, the leftmost cell is 1, and there's already a 2 in the third column. To avoid repetition, the missing numbers in this row should be 3 and 4.

In the third row, the leftmost cell is empty, and there's a 1 in the second column and a 3 in the third column. This suggests that the missing numbers here are 2 and 4.