- https://github.com/nektro/zigmod
- https://github.com/nektro/ziglint
- https://git.sr.ht/~nektro/magnolia-desktop
- https://git.sr.ht/~nektro/wifilylinux
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
git-deleteallotherbranches() { | |
git branch | grep -v $(git branch --show-current) | xargs -L1 git branch -D | |
} |
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
const Archive = struct { | |
magic: [4]u8 = [_]u8{ 'q', 'o', 'z', 1 }, | |
files_count: u32, | |
files: [*]File, | |
}; | |
const File = struct { | |
flags: Flags, | |
data_length: u64, |
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
const sites = { | |
"foo.localhost": 8001, | |
"bar.localhost": 8003, | |
"qux.localhost": 8004, | |
"sam.localhost": 8005, | |
}; | |
// new version based on: | |
// https://stackoverflow.com/questions/20351637/how-to-create-a-simple-http-proxy-in-node-js |
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
pub const ErrorCode = enum(u16) { | |
/// The operation completed successfully. | |
ERROR_SUCCESS = 0x00000000, | |
/// Incorrect function. | |
ERROR_INVALID_FUNCTION = 0x00000001, | |
/// The system cannot find the file specified. | |
ERROR_FILE_NOT_FOUND = 0x00000002, |
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
const std = @import("std"); | |
pub fn build(b: *std.Build) void { | |
const target = b.standardTargetOptions(.{}); | |
const optimize = b.standardOptimizeOption(.{}); | |
const exe = b.addExecutable(.{ | |
.name = "test", | |
.root_source_file = .{ .path = "main.zig" }, | |
.target = target, |
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/CMakeLists.txt b/CMakeLists.txt | |
index 925fd2d63..ff5005494 100644 | |
--- a/CMakeLists.txt | |
+++ b/CMakeLists.txt | |
@@ -655,13 +655,13 @@ include_directories( | |
) | |
if(MSVC) | |
- set(EXE_CXX_FLAGS "/std:c++14") | |
+ set(EXE_CXX_FLAGS "/std:c++17") |
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
.text | |
.intel_syntax noprefix | |
.file "test" | |
.globl _start | |
.type _start,@function | |
_start: | |
push ebp | |
push ebx | |
push edi | |
push esi |
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
const std = @import("std"); | |
const builtin = @import("builtin"); | |
pub fn main() !void { | |
try dbg("{d}", 24); | |
} | |
fn dbg(comptime fmt: []const u8, x: anytype) !void { | |
comptime std.debug.assert(builtin.mode == .Debug); |
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
const std = @import("std"); | |
extern fn sigaltstack(ss: *const stack_t, oss: *stack_t) c_int; | |
const stack_t = extern struct { | |
sp: ?*anyopaque, | |
flags: c_int, | |
size: usize, | |
}; |
NewerOlder