Is there an important difference between the general "dialectic" where parties attempt to find truth through reason, and Hegeilian Dialectic of thesis, antithesis and synthesis? Like, arnt they both just trying to find truth through partied reasoners?
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
| export const $u8 = Symbol.for('bitecs-u8'), $i8 = Symbol.for('bitecs-i8'), | |
| $u16 = Symbol.for('bitecs-u16'), $i16 = Symbol.for('bitecs-i16'), | |
| $u32 = Symbol.for('bitecs-u32'), $i32 = Symbol.for('bitecs-i32'), | |
| $f32 = Symbol.for('bitecs-f32'), $f64 = Symbol.for('bitecs-f64') | |
| import type { TypedArray, TypeSymbol, PrimitiveBrand } from './SoASerializer' | |
| type ComponentRef = Record<string, PrimitiveBrand | TypedArray> | |
| export class ComponentStateCache { |
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
| return function(system) | |
| local store = system:GetStore() | |
| local target = store.target | |
| local data = system:GetTarget() | |
| if ImGui.Begin("NPC Selector") then | |
| if TargetHeader("Source:", system:GetSource()) then | |
| store.source = nil | |
| 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
| import { promises as fs } from 'node:fs'; | |
| import path from 'node:path'; | |
| import { fileURLToPath, pathToFileURL } from 'node:url'; | |
| import fastGlob from 'fast-glob'; | |
| import { bold, green } from 'kleur/colors'; | |
| import micromatch from 'micromatch'; | |
| import pLimit from 'p-limit'; | |
| import { normalizePath } from 'vite'; | |
| import { slug as githubSlug } from 'github-slugger'; |
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
| using System; | |
| using System.IO; | |
| using System.Diagnostics; | |
| using System.Collections.Generic; | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| // Attempt to read the configuration file |
- Install CMake GUI
- Install Visual Studio Community
- https://visualstudio.microsoft.com/downloads/
- Ensure you enable
Desktop Development with C++
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
| ******************************************************************************** | |
| * CD40106B.cir | |
| * 2.0 | |
| * 2019-11-12 00:00:00 | |
| * Texas Instruments Incorporated. | |
| * Standard Logic, SLHR | |
| * 12500 TI Blvd | |
| * Dallas, TX -75243 | |
| * | |
| * Revision History: |
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
| nix-build . -A package | |
| this derivation will be built: | |
| /nix/store/9vbq9k0mvzqlvmqg61126p129ywv5bci-modloader64-2.0.37.drv | |
| building '/nix/store/9vbq9k0mvzqlvmqg61126p129ywv5bci-modloader64-2.0.37.drv'... | |
| unpacking sources | |
| patching sources | |
| configuring | |
| no configure script, doing nothing | |
| building | |
| installing |
(fvtt-let ([me game.user.name] [users `(game.users.filter (lambda (u) (!= u.name ,me)))] (usernames (–map (alist-get ‘name it) users))) (message “Other users: %s” (s-join “, ” usernames))) ;; => “Other users: Alice, Bob, Mary, Jane”
# this prevents nested rangers
ranger() {
if [ -z "$RANGER_LEVEL" ]; then
exec command ranger < $TTY > $TTY 2>&1
else
exit
fi
}NewerOlder