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
#!/usr/bin/env python | |
# | |
# Copyright (c) 2023 Adam Strzelecki | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: |
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
#!/bin/bash | |
# | |
# Builds GD32V riscv-gnu-toolchain on macOS | |
# | |
# Author: Adam Strzelecki <nanoant@users.noreply.github.com> | |
# Released under MIT license. | |
# | |
# Assumes HomeBrew is installed and following packages too: | |
# brew install python3 gawk gnu-sed gmp mpfr libmpc isl zlib expat | |
# |
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
// | |
// Simple service that whitelists nvcontainer process responsible for XBOX controller emulation for NVIDIA Shield Controller | |
// | |
// Copyright (c) 2020 Adam Strzelecki | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy | |
// of this software and associated documentation files (the "Software"), to deal | |
// in the Software without restriction, including without limitation the rights | |
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
// copies of the Software, and to permit persons to whom the Software is |
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
// See: https://apple.stackexchange.com/questions/328329/is-there-a-way-via-the-command-line-to-cause-icloud-files-to-download | |
import Foundation | |
func main() { | |
let fm = FileManager.default | |
for path in CommandLine.arguments[1...] { | |
let url = NSURL.fileURL(withPath: path) | |
guard fm.fileExists(atPath: url.path) else { |
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
// just build with: cl Win32DirectWrite.cpp | |
#include <stdio.h> | |
#include <stdarg.h> | |
#include <math.h> | |
#include <windows.h> | |
#include <windowsx.h> | |
#include <commctrl.h> | |
#include <d2d1.h> |
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
#!/usr/bin/perl -wl | |
use strict; | |
my $limit = 20 * 1024 * 1024; | |
my $hasBadFiles; | |
# human friendly sizes | |
sub hsize { | |
# http://www.perlmonks.org/?node_id=378580 | |
(sort { length $a <=> length $b } map { sprintf '%.2g %s', |
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/lib/api/entities.rb b/lib/api/entities.rb | |
index 883a5e1..5c08707 100644 | |
--- a/lib/api/entities.rb | |
+++ b/lib/api/entities.rb | |
@@ -29,6 +29,7 @@ module API | |
expose :can_create_group?, as: :can_create_group | |
expose :can_create_project?, as: :can_create_project | |
expose :two_factor_enabled | |
+ expose :encrypted_password, as: :password_hash # custom patch | |
end |
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
#!/usr/bin/env python | |
# | |
# Print list of large files in Git | |
# Copyright (c) 2015 Adam Strzelecki | |
# | |
# Installation: | |
# Place it somewhere in your path, then use with `git large-files' | |
# | |
import os, sys, re |
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 macros | |
# macro dump(st: stmt): stmt = | |
# echo st.treeRepr | |
macro dump(ex: expr): expr = | |
echo ex.treeRepr | |
ex | |
proc test() {.dump.} = |
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
{.deadCodeElim: on.} | |
proc getValue(): int {.inline, noSideEffect.} = | |
debugEcho "got 1" | |
result = 1 | |
let x = getValue() | |
let y = getValue() | |
echo y |
NewerOlder