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
{ | |
"$schema": "https://json-schema.org/draft/2020-12/schema", | |
"title": "Tibia launcher manifest", | |
"type": "object", | |
"properties": { | |
"version": { | |
"type": "string" | |
}, | |
"files": { | |
"type": "array", |
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
Sun May 22 18:36:28 CEST 2022 INFO - initAID - Set AID from STEAM_COMPAT_APP_ID to '489830' | |
Sun May 22 18:36:28 CEST 2022 INFO - initAID - Set OSCDP to STEAM_COMPAT_DATA_PATH '/var/games/steam/steamapps/compatdata/489830' | |
Sun May 22 18:36:28 CEST 2022 INFO - loadLangFile - Language from command line is 'english' | |
Sun May 22 18:36:28 CEST 2022 INFO - loadLangFile - SYSTEMSTLCFGDIR is '/usr/share/steamtinkerlaunch' | |
Sun May 22 18:36:28 CEST 2022 INFO - loadLangFile - Command line language 'english' is no file - trying to find its absolute path | |
Sun May 22 18:36:28 CEST 2022 INFO - loadLangFile - Loading found system wide /usr/share/steamtinkerlaunch/lang//english.txt | |
Sun May 22 18:36:28 CEST 2022 INFO - getCurrentCommandline - No Proton in command line arguments 'waitforexitandrun /var/games/steam/steamapps/common/Skyrim Special Edition/SkyrimSELauncher.exe' | |
Sun May 22 18:36:28 CEST 2022 INFO - saveOrgVars - Storing some original variables to restore them later | |
Sun May 22 06:36:28 PM CEST 2022 INFO - emptyVars - E |
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
#include <algorithm> | |
#include <array> | |
#include <cassert> | |
#include <chrono> | |
#include <cmath> | |
#include <cstdint> | |
#include <iostream> | |
#include <numeric> | |
#include <random> | |
#include <vector> |
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
#include <chrono> | |
#include <iostream> | |
#include <numeric> | |
int main() { | |
using namespace std; | |
using namespace std::chrono; | |
constexpr auto reps = numeric_limits<unsigned>::max() >> 1; | |
{ |
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
diff --git a/CL/cl.h b/CL/cl.h | |
index f33f999..c62c0eb 100644 | |
--- a/CL/cl.h | |
+++ b/CL/cl.h | |
@@ -891,6 +891,21 @@ typedef struct _cl_name_version { | |
#define CL_DEVICE_ATOMIC_SCOPE_WORK_GROUP (1 << 4) | |
#define CL_DEVICE_ATOMIC_SCOPE_DEVICE (1 << 5) | |
#define CL_DEVICE_ATOMIC_SCOPE_ALL_DEVICES (1 << 6) | |
+ | |
+/* cl_device_info */ |
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
interface PasswordCredential { | |
type: 'password' | |
id: Readonly<string> | |
iconURL: Readonly<string> | |
name: Readonly<string> | |
password: Readonly<string> | |
} |
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
const { Suite } = require('sandra') | |
const argon2 = require('../argon2') | |
const main = async () => { | |
const defaults = argon2.defaults | |
const password = 'password' | |
const hash = await argon2.hash(password) | |
const suite = new Suite('argon2') | |
suite.push('basic hash', argon2.hash, password) |
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
import logging | |
import sys | |
from argparse import ArgumentParser, ArgumentTypeError | |
from string import hexdigits | |
from typing import Tuple | |
# CSS3 COLORS | |
COLOR_NAMES = { | |
'aliceblue': '#f0f8ff', | |
'antiquewhite': '#faebd7', |
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
[tool.poetry] | |
name = "mtm" | |
version = "0.1.0" | |
description = "" | |
authors = ["Ranieri Althoff <[email protected]>"] | |
license = "MIT" | |
[tool.poetry.dependencies] | |
python = "^3.5" | |
rows = { git = "https://github.com/turicas/rows.git", branch = "feature/plugin-pdf", extras = ["pdf"] } |
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
[tool.poetry] | |
name = "swartz" | |
version = "0.1.0" | |
description = "" | |
authors = ["Ranieri Althoff <[email protected]>"] | |
[tool.poetry.dependencies] | |
python = "*" | |
dataclasses = "^0.6.0" | |
tornado = {version = "^5.0", optional = true} |
NewerOlder