Skip to content

Instantly share code, notes, and snippets.

@nuttxpr
nuttxpr / ci-arm-11.log
Created March 13, 2025 13:34
[arm-11] CI Log for nuttx @ e0b02314e6e28b10ee84837bfe62b1e48700f85a / nuttx-apps @ 3b03636e95f6202b512d8af32629da4c0dc4af2c
Script started on 2025-03-13 21:04:59+08:00 [COMMAND="/home/luppy/nuttx-release/run-job.sh arm-11 1" TERM="tmux-256color" TTY="/dev/pts/6" COLUMNS="100" LINES="10"]
Now running https://github.com/lupyuen/nuttx-release/blob/main/run-job.sh arm-11 1
Called by https://github.com/lupyuen/nuttx-release/blob/main/run-ci.sh
+ job=arm-11
+ [[ arm-11 == '' ]]
+ instance=1
+ grep TMUX
+ set
+ true
+ neofetch
@sunmeat
sunmeat / different files
Created March 13, 2025 13:33
UDP simple .Net example
SERVER SIDE:
using System.Net;
using System.Net.Sockets;
using System.Text;
class Program
{
static void Main()
{
@markusrubey
markusrubey / main.dart
Created March 13, 2025 13:33
ShimmerPlaceholder
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
https://github.com/kward/shunit2.git 0f27c1ac71998835ff41d335d45079d6eb2a4bfe
@silime
silime / uboot.log
Created March 13, 2025 13:32
uboot.log
LPDDR4X, 2112MHz
channel[0] BW=16 Col=10 Bk=8 CS0 Row=17 CS1 Row=17 CS=2 Die BW=8 Size=4096MB
channel[1] BW=16 Col=10 Bk=8 CS0 Row=17 CS1 Row=17 CS=2 Die BW=8 Size=4096MB
channel[2] BW=16 Col=10 Bk=8 CS0 Row=17 CS1 Row=17 CS=2 Die BW=8 Size=4096MB
channel[3] BW=16 Col=10 Bk=8 CS0 Row=17 CS1 Row=17 CS=2 Die BW=8 Size=4096MB
Manufacturer ID:0x6
CH0 RX Vref:29.3%, TX Vref:22.8%,22.8%DQ rds:
h3 l0, h1 l0, h0 l0, h2 l0, h2 l0, h2 l0, h0 l0, h0 l0,
h1 l0, h2 l0, h3 l0, h4 l0, h0 l1, h2 l0, h1 l0, h1 l0,
@linux-riscv-bot
linux-riscv-bot / checkpatch-WARNING
Created March 13, 2025 13:32
pw943504-p14014866
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
#105:
new file mode 100644
WARNING: Argument 'func' is not used in function-like macro
#153: FILE: include/kunit/bug.h:44:
+#define DEFINE_SUPPRESSED_WARNING(func)
WARNING: Argument 'func' is not used in function-like macro
#154: FILE: include/kunit/bug.h:45:
@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created March 13, 2025 13:31
Rimworld output log published using HugsLib
Log uploaded on Thursday, March 13, 2025, 9:31:17 PM
Loaded mods:
Harmony(brrainz.harmony)[v:2.3.1.0][mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1)
Core(Ludeon.RimWorld): (no assemblies)
Royalty(Ludeon.RimWorld.Royalty): (no assemblies)
Ideology(Ludeon.RimWorld.Ideology): (no assemblies)
Biotech(Ludeon.RimWorld.Biotech): (no assemblies)
Anomaly(Ludeon.RimWorld.Anomaly): (no assemblies)
HugsLib(UnlimitedHugs.HugsLib)[ov:11.0.4]: 0Harmony(av:2.3.3,fv:1.2.0.1), HugsLib(av:1.0.0,fv:11.0.4)
Elite Bionics Framework(V1024.EBFramework)[v:5.3.0.2][mv:2.0.0.0]: EliteBionicsFramework(5.3.0.2)
@supinie
supinie / crypto.md
Created March 13, 2025 13:31
General Cryptography
@rlarjsdn3
rlarjsdn3 / Stack.swift
Created March 13, 2025 13:30
Data Structure in Swift
class Stack<T> {
private(set) var array = [T]()
/// 스택이 비었는지 확인합니다.
/// - 시간 복잡도: O(1)
var isEmpty: Bool {
array.isEmpty
}
/// 새로운 요소를 추가합니다.
@HRading
HRading / Windows Defender Exclusions VS 2022.ps1
Created March 13, 2025 13:30 — forked from Braytiner/Windows Defender Exclusions VS 2022.ps1
Adds Windows Defender exclusions for Visual Studio 2022
$userPath = $env:USERPROFILE
$pathExclusions = New-Object System.Collections.ArrayList
$processExclusions = New-Object System.Collections.ArrayList
$pathExclusions.Add('C:\Windows\Microsoft.NET') > $null
$pathExclusions.Add('C:\Windows\assembly') > $null
$pathExclusions.Add($userPath + '\Downloads\HeidiSQL_11.3_64_Portable') > $null
$pathExclusions.Add($userPath + '\.dotnet') > $null