๐
This file contains hidden or 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
### Keybase proof | |
I hereby claim: | |
* I am force67 on github. | |
* I am forcez (https://keybase.io/forcez) on keybase. | |
* I have a public key ASAdpwn89HvWyAc2BnLQwYHjrUgZGRJJuc6di9cQ9-g4pAo | |
To claim this, I am signing this object: |
This file contains hidden or 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
bool drvSendMsg(const void *src, size_t size) | |
{ | |
if (size > 0x69F8u) | |
return false; | |
auto* handle = OpenFileMappingW(0xF001Fu, 0, L"Global\\{74164FAD-E73C-4FA1-A9AA-70813315ED9C}"); | |
if (handle) { | |
auto* data = MapViewOfFile(handle, 0xF001Fu, 0, 0, 0x69F8ui64); | |
if (data) { | |
This file contains hidden or 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
local dotnetbase = premake.vstudio.dotnetbase | |
premake.override(dotnetbase, 'assemblyName', function(base, cfg) | |
base(cfg) | |
if dotnetbase.isNewFormatProject(cfg) then | |
_p(2,'<AssemblyName>%s</AssemblyName>', cfg.buildtarget.basename) | |
end | |
end) |
This file contains hidden or 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
// Copyright (C) 2022 Vincent Hengel. | |
#pragma once | |
#include <cstdint> | |
#include <string> | |
#include <string_view> | |
#include <tuple> | |
namespace Resources | |
{ |
This file contains hidden or 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
[Resource] | |
name = "Example Resource" | |
version = 1.0.0 | |
apiset = 1.0.0 | |
description = "Official skyrim together example resource" | |
keywords = ["example", "resource"] | |
license = "MIT" | |
repository = "" | |
homepage = "https://skyrim-together.com/" | |
entrypoint = "main.lua" |
This file contains hidden or 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
{ | |
inputs, | |
pkgs, | |
lib, | |
... | |
}: | |
# Based off the excellent post on reddit here: https://www.reddit.com/r/NixOS/comments/19b7k5e/how_to_properly_install_pkgs_to_the_latest_version/ | |
# This is updated to work with nix 24.05, and also installs a desktop entry so cura can be found in kde start menu. | |
let |
This file contains hidden or 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
{ | |
description = "A Nix flake for IDA Pro with libGL, GTK, and Qt/XCB support"; | |
inputs = { | |
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; | |
}; | |
outputs = { nixpkgs, ... }: | |
let | |
system = "x86_64-linux"; |