- The Joy of Cryptography, Mike Rosulek
- Introduction to Modern Cryptography, Katz and Lindell
- Real World Cryptography, David Wong
Discover gists
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
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 |
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
SERVER SIDE: | |
using System.Net; | |
using System.Net.Sockets; | |
using System.Text; | |
class Program | |
{ | |
static void 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
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( |
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
https://github.com/kward/shunit2.git 0f27c1ac71998835ff41d335d45079d6eb2a4bfe |
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
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, |
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
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: |
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
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) |
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
class Stack<T> { | |
private(set) var array = [T]() | |
/// 스택이 비었는지 확인합니다. | |
/// - 시간 복잡도: O(1) | |
var isEmpty: Bool { | |
array.isEmpty | |
} | |
/// 새로운 요소를 추가합니다. |
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
$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 |