Clan names generator for mw2

Clan Generator discord.gg/clangen

2022.08.29 04:51 nascar_apocalypse Clan Generator discord.gg/clangen

Welcome to ClanGen! The unofficial subreddit for the Clan Generator fan-made game
[link]


2012.02.22 23:08 spacemanspiff30 Official subreddit of the clan

[link]


2011.12.01 16:28 ChrisloriousHD Reddit North America East

[link]


2024.05.19 02:14 TechEnthusiastx86 Ollama API-Edit Beginning of Response

I've been working on creating a synthetic dataset, but am having trouble with the prompt creation. I can ensure Llama-3-8B will follow my format numbering scheme in OpenWebUI by editing the beginning of the response message and then generating, but I'm having trouble recreating this using the api. If you look at my code you can see I tried to use the template given in the modelfile to include the beginning of the response in my prompt, but this has not worked. Does anyone know what I'm doing wrong/if there is a better way to achieve controlling what the response starts with using the ollama api?
This is the template from the modelfile:
TEMPLATE "{{ if .System }}system
{{ .System }}{{ end }}{{ if .Prompt }}user
{{ .Prompt }}{{ end }}assistant
{{ .Response }}"
import ollama import os import time prompts_generate = 128000 # Calculate number of loops required to generate the prompts num_loops = int(prompts_generate / 100) # Parameters for the model model_name = "llama3:8b-instruct-q8_0" instruction = "Write out a list of 100 prompts that can be used for fine tuning a language model. Vary the content and structure of each prompt to ensure thorough testing. {{ .Prompt }}{{ end }}Sure:\n1." options = { "num_ctx": 2048, "repeat_last_n": 64, "repeat_penalty": 1.1, "temperature": 0.8, "tfs_z": 1, "top_k": 40, "top_p": 0.9, "num_predict": -1 # Generate until the model stops } # Output directory output_dir = "Data" os.makedirs(output_dir, exist_ok=True) # Check existing files in the directory to determine where to resume existing_files = sorted([f for f in os.listdir(output_dir) if f.startswith("prompt-") and f.endswith(".txt")]) if existing_files: last_file = existing_files[-1] start_num = int(last_file.split('-')[1].split('.')[0]) else: start_num = 0 # Start time start_time = time.time() i = start_num // 100 + 1 while i <= num_loops: response = ollama.generate( model=model_name, prompt=instruction, options=options, stream=False, ) reply = response['response'] print ("Instruction: ", instruction) print("Reply: ", reply) # Save the response to a file with loop number in the name file_name = os.path.join(output_dir, f"prompt-{i * 100}.txt") with open(file_name, "w") as file: file.write(reply) # Read the content of the file and remove empty lines with open(file_name, "r") as file: lines = file.readlines() lines = [line.strip() for line in lines if line.strip()] # Rewrite the cleaned content back to the file with open(file_name, "w") as file: file.write('\n'.join(lines)) # Check if the file has 100 prompts if lines and lines[-1].startswith("100."): i += 1 # Move to the next file if the current file is valid else: os.remove(file_name) # Delete the invalid file and retry # End time end_time = time.time() # Calculate and print the total time taken total_time = end_time - start_time print(f"Generated {prompts_generate} prompts and saved them in the '{output_dir}' directory.") print(f"Total time taken: {total_time:.2f} seconds.") 
submitted by TechEnthusiastx86 to ollama [link] [comments]


2024.05.19 02:08 Jakelolipopp 4o just tells the system prompt

4o just tells the system prompt
Whey I asked it just gave me it's system prompt without any kind of prompt engineering or exploiting
submitted by Jakelolipopp to ChatGPT [link] [comments]


2024.05.19 02:02 Massive_Active_7431 Minecraft Fabric with mods crash.

Howdy! My english bad sorry for that but are you know what mod are crashing game? When I create new world game crashes.
---- Minecraft Crash Report ----
// You're mean.
Time: 2024-05-19 04:57:47
Description: Exception in server tick loop
java.lang.BootstrapMethodError: java.lang.RuntimeException: Mixin transformation of com.simibubi.create.content.trains.entity.Train failed
`at com.simibubi.create.content.trains.GlobalRailwayManager.loadTrackData(GlobalRailwayManager.java:94)` `at com.simibubi.create.content.trains.GlobalRailwayManager.levelLoaded(GlobalRailwayManager.java:83)` `at com.simibubi.create.foundation.events.CommonEvents.onLoadWorld(CommonEvents.java:171)` `at net.fabricmc.fabric.api.event.lifecycle.v1.ServerWorldEvents.lambda$static$0(ServerWorldEvents.java:34)` `at net.minecraft.server.MinecraftServer.redirect$coo000$fabric-lifecycle-events-v1$onLoadWorld(MinecraftServer.java:4870)` `at net.minecraft.server.MinecraftServer.method_3786(MinecraftServer.java:360)` `at net.minecraft.server.MinecraftServer.method_3735(MinecraftServer.java:324)` `at net.minecraft.class_1132.method_3823(class_1132.java:69)` `at net.minecraft.server.MinecraftServer.method_29741(MinecraftServer.java:646)` `at net.minecraft.server.MinecraftServer.method_29739(MinecraftServer.java:265)` `at java.base/java.lang.Thread.run(Thread.java:833)` 
Caused by: java.lang.RuntimeException: Mixin transformation of com.simibubi.create.content.trains.entity.Train failed
`at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:427)` `at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.tryLoadClass(KnotClassDelegate.java:323)` `at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:218)` `at net.fabricmc.loader.impl.launch.knot.KnotClassLoader.loadClass(KnotClassLoader.java:119)` `at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525)` `... 11 more` 
Caused by: org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
`at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:392)` `at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:234)` `at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClassBytes(MixinTransformer.java:202)` `at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:422)` `... 15 more` 
Caused by: org.spongepowered.asm.mixin.throwables.MixinApplyError: Mixin [create_interactive.mixins.json:MixinTrain from mod create_interactive] from phase [DEFAULT] in config [create_interactive.mixins.json] FAILED during APPLY
`at org.spongepowered.asm.mixin.transformer.MixinProcessor.handleMixinError(MixinProcessor.java:638)` `at org.spongepowered.asm.mixin.transformer.MixinProcessor.handleMixinApplyError(MixinProcessor.java:589)` `at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:379)` `... 18 more` 
Caused by: org.spongepowered.asm.mixin.transformer.throwables.InvalidMixinException: u/Overwrite method findCollidingTrain in create_interactive.mixins.json:MixinTrain from mod create_interactive was not located in the target class com.simibubi.create.content.trains.entity.Train. Using refmap create_interactive-fabric-refmap.json
`at org.spongepowered.asm.mixin.transformer.MixinPreProcessorStandard.attachSpecialMethod(MixinPreProcessorStandard.java:436)` `at org.spongepowered.asm.mixin.transformer.MixinPreProcessorStandard.attachOverwriteMethod(MixinPreProcessorStandard.java:416)` `at org.spongepowered.asm.mixin.transformer.MixinPreProcessorStandard.attachMethods(MixinPreProcessorStandard.java:346)` `at org.spongepowered.asm.mixin.transformer.MixinPreProcessorStandard.attach(MixinPreProcessorStandard.java:299)` `at org.spongepowered.asm.mixin.transformer.MixinPreProcessorStandard.createContextFor(MixinPreProcessorStandard.java:277)` `at org.spongepowered.asm.mixin.transformer.MixinInfo.createContextFor(MixinInfo.java:1289)` `at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:294)` `at org.spongepowered.asm.mixin.transformer.TargetClassContext.apply(TargetClassContext.java:422)` `at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:403)` `at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:363)` `... 18 more` 
A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
-- System Details --
Details:
`Minecraft Version: 1.20.1` `Minecraft Version ID: 1.20.1` `Operating System: Windows 11 (amd64) version 10.0` `Java Version: 17.0.8, Microsoft` `Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft` `Memory: 2679414400 bytes (2555 MiB) / 4932501504 bytes (4704 MiB) up to 34359738368 bytes (32768 MiB)` `CPUs: 16` `Processor Vendor: GenuineIntel` `Processor Name: 11th Gen Intel(R) Core(TM) i7-11700K @ 3.60GHz` `Identifier: Intel64 Family 6 Model 167 Stepping 1` `Microarchitecture: Rocket Lake` `Frequency (GHz): 3.60` `Number of physical packages: 1` `Number of physical CPUs: 8` `Number of logical CPUs: 16` `Graphics card #0 name: NVIDIA GeForce RTX 3080` `Graphics card #0 vendor: NVIDIA (0x10de)` `Graphics card #0 VRAM (MB): 4095.00` `Graphics card #0 deviceId: 0x2216` `Graphics card #0 versionInfo: DriverVersion=31.0.15.5212` `Memory slot #0 capacity (MB): 16384.00` `Memory slot #0 clockSpeed (GHz): 3.20` `Memory slot #0 type: DDR4` `Memory slot #1 capacity (MB): 16384.00` `Memory slot #1 clockSpeed (GHz): 3.20` `Memory slot #1 type: DDR4` `Virtual memory max (MB): 38777.41` `Virtual memory used (MB): 14516.93` `Swap memory total (MB): 6144.00` `Swap memory used (MB): 0.00` `JVM Flags: 9 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx32G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M` `Fabric Mods:` `ad_astra: Ad Astra 1.15.18` `javazoom_jlayer: jlayer 1.0.1` `alloy_forgery: Alloy Forgery 2.1.2+1.20` `antique-atlas: Antique Atlas 2.7.2+1.20` `folk_sisby_kaleido-config: kaleido-config 0.1.1+1.1.0-beta.3` `surveyor: Surveyor Map Framework 0.4.3+1.20` `appleskin: AppleSkin 2.5.1+mc1.20` `archers: Archers (RPG Series) 1.2.1+1.20.1` `com_github_zsoltmolnarrr_tinyconfig: TinyConfig 2.3.2` `ranged_weapon_api: RangedWeaponAPI 1.1.0+1.20.1` `structure_pool_api: Structure Pool API 1.0+1.20.1` `architectury: Architectury 9.2.14` `artifacts: Artifacts 9.5.5` `cardinal-components-base: Cardinal Components API (base) 5.2.2` `cardinal-components-entity: Cardinal Components API (entities) 5.2.2` `expandability: ExpandAbility 9.0.4` `step-height-entity-attribute: Step Height Entity Attribute 1.2.0` `azurelibarmor: AzureLib Armor 2.0.3` `balm-fabric: Balm 7.2.2` `bclib: BCLib 3.0.14` `wunderlib: WunderLib 1.1.5` `bettercombat: Better Combat 1.8.5+1.20.1` `betterdeserttemples: YUNG's Better Desert Temples 1.20-Fabric-3.0.3` `org_reflections_reflections: reflections 0.10.2` `betterdungeons: YUNG's Better Dungeons 1.20-Fabric-4.0.4` `betterend: Better End 4.0.11` `betterendisland: YUNG's Better End Island 1.20-Fabric-2.0.6` `betterfortresses: YUNG's Better Nether Fortresses 1.20-Fabric-2.0.6` `betterjungletemples: YUNG's Better Jungle Temples 1.20-Fabric-2.0.5` `bettermineshafts: YUNG's Better Mineshafts 1.20-Fabric-4.0.4` `betternether: Better Nether 9.0.10` `betteroceanmonuments: YUNG's Better Ocean Monuments 1.20-Fabric-3.0.4` `betterwitchhuts: YUNG's Better Witch Huts 1.20-Fabric-3.0.3` `bookshelf: Bookshelf 20.1.10` `bosses_of_mass_destruction: Bosses of Mass Destruction (Beta) 1.7.5-1.20.1` `maelstrom_library: Maelstrom Library 1.6.1-1.20` `multipart_entities: MultipartEntities 1.5-1.20` `botarium: Botarium 2.3.3` `team_reborn_energy: Energy 3.0.0` `cardinal-components: Cardinal Components API 5.2.2` `cardinal-components-block: Cardinal Components API (blocks) 5.2.2` `cardinal-components-chunk: Cardinal Components API (chunks) 5.2.2` `cardinal-components-item: Cardinal Components API (items) 5.2.2` `cardinal-components-level: Cardinal Components API (world saves) 5.2.2` `cardinal-components-scoreboard: Cardinal Components API (scoreboard) 5.2.2` `cardinal-components-world: Cardinal Components API (worlds) 5.2.2` `carryon: Carry On` [`2.1.2.7`](http://2.1.2.7) `charmofundying: Charm of Undying 6.5.0+1.20.1` `spectrelib: SpectreLib 0.13.15+1.20.1` `cicada: CICADA 0.7.1+1.20.1` `cloth-config: Cloth Config v11 11.1.118` `cloth-basic-math: cloth-basic-math 0.6.1` `crawl: Crawl 0.12.0` `mm: Manningham Mills 2.3` `create: Create 0.5.1-f-build.1417+mc1.20.1` `com_electronwill_night-config_core: core 3.6.6` `com_electronwill_night-config_toml: toml 3.6.6` `com_google_code_findbugs_jsr305: jsr305 3.0.2` `flywheel: Flywheel 0.6.10-2` `forgeconfigapiport: Forge Config API Port 8.0.0` `milk: Milk Lib 1.2.60` 
dripstone_fluid_lib: Dripstone Fluid Lib 3.0.2
 `porting_lib_brewing: Porting Lib Brewing 2.3.2+1.20.1` `porting_lib_models: Porting Lib Models 2.3.2+1.20.1` 
porting_lib_model_loader: Porting Lib Model Loader 2.3.2+1.20.1
 `porting_lib_obj_loader: Porting Lib Obj Loader 2.3.2+1.20.1` `porting_lib_tags: Porting Lib Tags 3.0` `reach-entity-attributes: Reach Entity Attributes 2.4.0` `registrate-fabric: Registrate for Fabric 1.3.62-MC1.20.1` 
porting_lib_data: Porting Lib Data 2.1.1090+1.20
porting_lib_model_generators: Porting Lib Model Generators 2.1.1090+1.20
porting_lib_model_materials: Porting Lib Model Materials 2.1.1090+1.20
 `create_interactive: Create: Interactive 1.0.2-beta.2` `create_jetpack: Create Jetpack 4.2.0` `flightlib: Flight Lib 2.1.0` `createbigcannons: Create Big Cannons 0.5.4-nightly-8b9cea6` `ritchiesprojectilelib: Ritchie's Projectile Library 1.0.0-369e88d+1.20.1-fabric` 
porting_lib_utility: Porting Lib Utility 2.1.1127+1.20
porting_lib_gametest: Porting Lib GameTest 2.1.1127+1.20
 `creativecore: CreativeCore 2.11.28` `net_minecraftforge_eventbus: eventbus 6.0.3` `creeperoverhaul: Creeper Overhaul 3.0.2` `distanthorizons: Distant Horizons 2.0.4-a-dev` `do_a_barrel_roll: Do a Barrel Roll 3.5.6+1.20.1` `fabric-permissions-api-v0: fabric-permissions-api 0.2-SNAPSHOT` `mixinsquared: MixinSquared 0.1.1` `dsurround: Dynamic Surroundings 0.3.3` `org_openjdk_nashorn_nashorn-core: nashorn-core 15.4` `eatinganimationid: Eating Animation 1.20+1.9.61` `elytraslot: Elytra Slot 6.3.0+1.20.1` `endermanoverhaul: Enderman Overhaul 1.0.4` `endrem: End Remastered 5.2.4` `fabric-api: Fabric API 0.92.0+1.20.1` `fabric-api-base: Fabric API Base 0.4.31+1802ada577` `fabric-api-lookup-api-v1: Fabric API Lookup API (v1) 1.6.36+1802ada577` `fabric-biome-api-v1: Fabric Biome API (v1) 13.0.13+1802ada577` `fabric-block-api-v1: Fabric Block API (v1) 1.0.11+1802ada577` `fabric-block-view-api-v2: Fabric BlockView API (v2) 1.0.1+1802ada577` `fabric-blockrenderlayer-v1: Fabric BlockRenderLayer Registration (v1) 1.1.41+1802ada577` `fabric-client-tags-api-v1: Fabric Client Tags 1.1.2+1802ada577` `fabric-command-api-v1: Fabric Command API (v1) 1.2.34+f71b366f77` `fabric-command-api-v2: Fabric Command API (v2) 2.2.13+1802ada577` `fabric-commands-v0: Fabric Commands (v0) 0.2.51+df3654b377` `fabric-containers-v0: Fabric Containers (v0) 0.1.64+df3654b377` `fabric-content-registries-v0: Fabric Content Registries (v0) 4.0.11+1802ada577` `fabric-convention-tags-v1: Fabric Convention Tags 1.5.5+1802ada577` `fabric-crash-report-info-v1: Fabric Crash Report Info (v1) 0.2.19+1802ada577` `fabric-data-attachment-api-v1: Fabric Data Attachment API (v1) 1.0.0+de0fd6d177` `fabric-data-generation-api-v1: Fabric Data Generation API (v1) 12.3.4+1802ada577` `fabric-dimensions-v1: Fabric Dimensions API (v1) 2.1.54+1802ada577` `fabric-entity-events-v1: Fabric Entity Events (v1) 1.6.0+1c78457f77` `fabric-events-interaction-v0: Fabric Events Interaction (v0) 0.6.2+1802ada577` `fabric-events-lifecycle-v0: Fabric Events Lifecycle (v0) 0.2.63+df3654b377` `fabric-game-rule-api-v1: Fabric Game Rule API (v1) 1.0.40+1802ada577` `fabric-item-api-v1: Fabric Item API (v1) 2.1.28+1802ada577` `fabric-item-group-api-v1: Fabric Item Group API (v1) 4.0.12+1802ada577` `fabric-key-binding-api-v1: Fabric Key Binding API (v1) 1.0.37+1802ada577` `fabric-keybindings-v0: Fabric Key Bindings (v0) 0.2.35+df3654b377` `fabric-lifecycle-events-v1: Fabric Lifecycle Events (v1) 2.2.22+1802ada577` `fabric-loot-api-v2: Fabric Loot API (v2) 1.2.1+1802ada577` `fabric-loot-tables-v1: Fabric Loot Tables (v1) 1.1.45+9e7660c677` `fabric-message-api-v1: Fabric Message API (v1) 5.1.9+1802ada577` `fabric-mining-level-api-v1: Fabric Mining Level API (v1) 2.1.50+1802ada577` `fabric-model-loading-api-v1: Fabric Model Loading API (v1) 1.0.3+1802ada577` `fabric-models-v0: Fabric Models (v0) 0.4.2+9386d8a777` `fabric-networking-api-v1: Fabric Networking API (v1) 1.3.11+1802ada577` `fabric-networking-v0: Fabric Networking (v0) 0.3.51+df3654b377` `fabric-object-builder-api-v1: Fabric Object Builder API (v1) 11.1.3+1802ada577` `fabric-particles-v1: Fabric Particles (v1) 1.1.2+1802ada577` `fabric-recipe-api-v1: Fabric Recipe API (v1) 1.0.21+1802ada577` `fabric-registry-sync-v0: Fabric Registry Sync (v0) 2.3.3+1802ada577` `fabric-renderer-api-v1: Fabric Renderer API (v1) 3.2.1+1802ada577` `fabric-renderer-indigo: Fabric Renderer - Indigo 1.5.1+1802ada577` `fabric-renderer-registries-v1: Fabric Renderer Registries (v1) 3.2.46+df3654b377` `fabric-rendering-data-attachment-v1: Fabric Rendering Data Attachment (v1) 0.3.37+92a0d36777` `fabric-rendering-fluids-v1: Fabric Rendering Fluids (v1) 3.0.28+1802ada577` `fabric-rendering-v0: Fabric Rendering (v0) 1.1.49+df3654b377` `fabric-rendering-v1: Fabric Rendering (v1) 3.0.8+1802ada577` `fabric-resource-conditions-api-v1: Fabric Resource Conditions API (v1) 2.3.8+1802ada577` `fabric-resource-loader-v0: Fabric Resource Loader (v0) 0.11.10+1802ada577` `fabric-screen-api-v1: Fabric Screen API (v1) 2.0.8+1802ada577` `fabric-screen-handler-api-v1: Fabric Screen Handler API (v1) 1.3.30+1802ada577` `fabric-sound-api-v1: Fabric Sound API (v1) 1.0.13+1802ada577` `fabric-transfer-api-v1: Fabric Transfer API (v1) 3.3.4+1802ada577` `fabric-transitive-access-wideners-v1: Fabric Transitive Access Wideners (v1) 4.3.1+1802ada577` `fabric-language-kotlin: Fabric Language Kotlin 1.10.20+kotlin.1.9.24` `org_jetbrains_kotlin_kotlin-reflect: kotlin-reflect 1.9.24` `org_jetbrains_kotlin_kotlin-stdlib: kotlin-stdlib 1.9.24` `org_jetbrains_kotlin_kotlin-stdlib-jdk7: kotlin-stdlib-jdk7 1.9.24` `org_jetbrains_kotlin_kotlin-stdlib-jdk8: kotlin-stdlib-jdk8 1.9.24` `org_jetbrains_kotlinx_atomicfu-jvm: atomicfu-jvm 0.24.0` `org_jetbrains_kotlinx_kotlinx-coroutines-core-jvm: kotlinx-coroutines-core-jvm 1.8.0` `org_jetbrains_kotlinx_kotlinx-coroutines-jdk8: kotlinx-coroutines-jdk8 1.8.0` `org_jetbrains_kotlinx_kotlinx-datetime-jvm: kotlinx-datetime-jvm 0.5.0` `org_jetbrains_kotlinx_kotlinx-serialization-cbor-jvm: kotlinx-serialization-cbor-jvm 1.6.3` `org_jetbrains_kotlinx_kotlinx-serialization-core-jvm: kotlinx-serialization-core-jvm 1.6.3` `org_jetbrains_kotlinx_kotlinx-serialization-json-jvm: kotlinx-serialization-json-jvm 1.6.3` `fabricloader: Fabric Loader 0.15.11` `mixinextras: MixinExtras 0.3.5` `fallingtrees: Falling Trees 0.12` `farmersdelight: Farmer's Delight 1.20.1-2.1.1+refabricated` `porting_lib_accessors: Porting Lib Accessors 2.3.4+1.20.1` `porting_lib_base: Porting Lib Base 2.3.4+1.20.1` 
porting_lib_entity: Porting Lib Entity 2.3.4+1.20.1
porting_lib_fluids: Porting Lib Fluids 2.3.4+1.20.1
porting_lib_mixin_extensions: Porting Lib Mixin Extensions 2.3.4+1.20.1
porting_lib_transfer: Porting Lib Transfer 2.3.4+1.20.1
 `porting_lib_client_events: Porting Lib Client Events 2.3.4+1.20.1` `porting_lib_config: Porting Lib Config 2.3.4+1.20.1` `porting_lib_extensions: Porting Lib Extensions 2.3.4+1.20.1` 
porting_lib_attributes: Porting Lib Attributes 2.3.4+1.20.1
porting_lib_common: Porting Lib Common 2.3.4+1.20.1
 `porting_lib_lazy_registration: Porting Lib Lazy Register 2.3.4+1.20.1` 
porting_lib_core: Porting Lib Core 2.3.4+1.20.1
 `porting_lib_loot: Porting Lib Loot 2.3.4+1.20.1` `porting_lib_networking: Porting Lib Networking 2.3.4+1.20.1` `porting_lib_recipe_book_categories: Porting Lib Recipe Book Categories 2.3.4+1.20.1` `porting_lib_registries: Porting Lib Registries 2.3.4+1.20.1` `porting_lib_tool_actions: Porting Lib Tool Actions 2.3.4+1.20.1` `figura: Figura 0.1.4+1.20.1` `com_github_figuramc_luaj_luaj-core: luaj-core 3.0.8-figura` `com_github_figuramc_luaj_luaj-jse: luaj-jse 3.0.8-figura` `com_neovisionaries_nv-websocket-client: nv-websocket-client 2.14` `firstperson: FirstPerson 2.3.4` `framework: Framework 0.6.27` `org_javassist_javassist: javassist 3.29.2-GA` `friendlyfire: FriendlyFire 18.0.6` `geckolib: GeckoLib 4 4.4.4` `com_eliotlash_mclib_mclib: mclib 20` `goblintraders: Goblin Traders 1.9.3` `graveyard: The Graveyard 3.0` `guardvillagers: GuardVillagers 2.0.9-1.20.1` `midnightlib: MidnightLib 1.4.1` `healthindicatortxf: Health Indicator TXF 1.20.1-1.2.3-fabric` `configlibtxf: ConfigLib TXF 4.2.1-fabric` `horizontal_glass_panes: Horizontal Glass Panes 2.0.0` `indium: Indium 1.0.30+mc1.20.4` `inventoryprofilesnext: Inventory Profiles Next 1.10.10` `iris: Iris 1.7.0+mc1.20.1` `io_github_douira_glsl-transformer: glsl-transformer 2.0.0-pre13` `org_anarres_jcpp: jcpp 1.4.14` `org_antlr_antlr4-runtime: antlr4-runtime 4.11.1` `irisflw: Iris Flywheel Compat 0.2.5` `ironchest: Iron Chests 2.0.2` `libgui: LibGui 8.1.1+1.20.1` 
jankson: Jankson 6.0.0+j1.2.3
blue_endless_jankson: jankson 1.2.3
libninepatch: LibNinePatch 1.2.0
 `itemphysic: ItemPhysic 1.7.1` `jade: Jade 11.9.2+fabric` `java: OpenJDK 64-Bit Server VM 17` `jei: Just Enough Items` [`15.3.0.4`](http://15.3.0.4) `jeresources: Just Enough Resources` [`1.4.0.247`](http://1.4.0.247) `jewelry: Jewelry (RPG Series) 1.3.0+1.20.1` `kiwi: Kiwi Library 11.6.2` `lambdynlights: LambDynamicLights 2.3.2+1.20.1` `pride: Pride Lib 1.2.0+1.19.4` `spruceui: SpruceUI 5.0.0+1.20` `libipn: libIPN 4.0.2` `lithium: Lithium 0.11.2` `minecraft: Minecraft 1.20.1` `mobsunscreen: Mob Sunscreen 3.1.0` `modmenu: Mod Menu 7.2.2` `mythicmounts: Mythic Mounts 1.20.1-7.4` `naturalist: Naturalist 4.0.3` `nethersdelight: Nether's Delight 1.0.0` `disable_custom_worlds_advice: Disable Custom Worlds Advice 4.1` `notenoughanimations: NotEnoughAnimations 1.7.3` `notreepunching: No Tree Punching 7.1.0` `nyfsspiders: Nyf's Spiders 2.1.1` `opf: Modern Online Picture Frames 1` `owo: oωo 0.11.1+1.20` `paladins: Paladins & Priests (RPG Series) 1.2.0+1.20.1` `pandalib: PandaLib 0.2.1` `passablefoliage: Passable Foliage 1.20.1-fabric-8.2.1` `patchouli: Patchouli 1.20.1-84-FABRIC` `fiber: fiber 0.23.0-2` `player-animator: Player Animator 1.0.2-rc1+1.20` `polymorph: Polymorph 0.49.3+1.20.1` `presencefootsteps: Presence Footsteps 1.9.4+1.20.1` `kirin: Kirin UI 1.15.6+1.20.1` `puffish_skills: Pufferfish's Skills 0.12.1` `reeses-sodium-options: Reese's Sodium Options 1.7.2+mc1.20.1-build.101` `repurposed_structures: Repurposed Structures 7.1.15+1.20.1-fabric` `resourcefulconfig: Resourcefulconfig 2.1.2` `resourcefullib: Resourceful Lib 2.1.24` `com_teamresourceful_bytecodecs: bytecodecs 1.0.2` `com_teamresourceful_yabn: yabn 1.0.3` `runes: Runes 0.9.11+1.20.1` `simplyswords: Simply Swords 1.55.0-1.20.1` `sit: Sit 1.20-24` `sliceanddice: Create Slice & Dice 3.2.1` `snowrealmagic: Snow! Real Magic! 10.4.3` `sodium: Sodium 0.5.8+mc1.20.1` `sodium-extra: Sodium Extra 0.5.4+mc1.20.1-build.115` `caffeineconfig: CaffeineConfig 1.3.0+1.17` `crowdin-translate: CrowdinTranslate 1.4+1.19.3` `spell_engine: Spell Engine 0.14.3+1.20.1` `spell_power: Spell Power Attribute 0.10.2+1.20.1` `travelersbackpack: Traveler's Backpack fabric-1.20.1-9.1.12` `travelerstitles: Traveler's Titles 1.20-Fabric-4.0.2` `trinkets: Trinkets 3.7.2` `valkyrienskies: Valkyrien Skies 2 2.3.0-beta.5` `visuality: Visuality 0.7.1+1.20` `vs_eureka: VS Eureka Mod 1.5.1-beta.3` `watching: From The Fog 1.9.2` `water-erosion: Water Erosion 1.1.6` `waterdripsound: Drip Sounds 1.19-0.3.2` `waystones: Waystones 14.1.3` `wizards: Wizards (RPG Series) 1.2.0+1.20.1` `yet_another_config_lib_v3: YetAnotherConfigLib 3.4.2+1.20.1-fabric` `com_twelvemonkeys_common_common-image: common-image 3.10.0` `com_twelvemonkeys_common_common-io: common-io 3.10.0` `com_twelvemonkeys_common_common-lang: common-lang 3.10.0` `com_twelvemonkeys_imageio_imageio-core: imageio-core 3.10.0` `com_twelvemonkeys_imageio_imageio-metadata: imageio-metadata 3.10.0` `com_twelvemonkeys_imageio_imageio-webp: imageio-webp 3.10.0` `org_quiltmc_parsers_gson: gson 0.2.1` `org_quiltmc_parsers_json: json 0.2.1` `yungsapi: YUNG's API 1.20-Fabric-4.0.5` `yungsbridges: YUNG's Bridges 1.20-Fabric-4.0.3` `yungsextras: YUNG's Extras 1.20-Fabric-4.0.3` `Loaded Shaderpack: (off)` `Flywheel Backend: GL33 Instanced Arrays` `Server Running: true` `Player Count: 0 / 8; []` `Data Packs: vanilla, fabric` `Enabled Feature Flags: minecraft:vanilla` `World Generation: Experimental` `Type: Integrated Server (map_client.txt)` `Is Modded: Definitely; Client brand changed to 'fabric'; Server brand changed to 'fabric'` `Launched Version: fabric-loader-0.15.11-1.20.1` 
submitted by Massive_Active_7431 to fabricmc [link] [comments]


2024.05.19 01:50 Hipo_999 Österreich/Haisuinonasa Music

Hi! My name is Hipo, I´m from Chile, and I wanted to share with you a song I made entirely with AI, trying to generate a sound similar to Österreich or Haisuinonasa.
In the absence of bands like these, which blend genres such as math rock, experimental, and shoegaze, and combine techniques like arpeggios and modulations with a melancholic sound, I decided to make music for myself. However, as a fan of this kind of music, I think it's appropriate to share it here, get your opinions, and have you also enjoy this kind of sound.
https://soundcloud.com/dododo-dodo-282270542/fukuzatsu-na-shinpuru
I hope you like it.
submitted by Hipo_999 to TokyoGhoul [link] [comments]


2024.05.19 01:20 VFM_Systems Can not get Eddy to save probe offset, get Failed calibration

The current issue is with my Eddy USB. No matter what I try, it fails the z offset calibration saying:
Failed calibration - frequency not increasing each step
This only happens after I try to run the save_config option.
##################################################################### # Include Control ##################################################################### #[include led_macros.cfg] #[include toolboard.cfg] #[include adxl.cfg] [include Homing.cfg] [include mainsail.cfg] #[include Euclid.cfg] [exclude_object] [gcode_arcs] resolution: 0.1 [include macros.cfg] #[include led_progress.cfg] [include nevermore.cfg] # This file contains all settings for KAMP, and must be included in printer.cfg with: [include KAMP_Settings.cfg] ### The following [includes] can be uncommented from within KAMP_Settings.cfg. ### # This file enables the use of adaptive meshing. #[include ./KAMP/Adaptive_Meshing.cfg] # This file enables the use of adaptive line purging. [include ./KAMP/Line_Purge.cfg] # This file enables the use of the adaptive Voron logo purge. #[include ./KAMP/Voron_Purge.cfg] # This file enables the use of KAMP's Smart Park feature. [include ./KAMP/Smart_Park.cfg] ##################################################################### # Stepper Control ##################################################################### [stepper_x] step_pin: PC14 dir_pin: PC13 enable_pin: !PC15 microsteps: 16 rotation_distance: 40 endstop_pin: tmc2209_stepper_x:virtual_endstop # PA13 for X-max; endstop have'!' is NO position_endstop: -4 position_max: 325 position_min: -5 homing_speed: 20 homing_retract_dist: 0 [stepper_y] step_pin: PB5 dir_pin: !PB4 enable_pin: !PB6 microsteps: 16 rotation_distance: 40 endstop_pin: tmc2209_stepper_y:virtual_endstop # PC5 for Y-max; endstop have'!' is NO position_endstop: 0 position_max: 330 homing_speed: 20 homing_retract_dist: 0 [stepper_z] step_pin: PE5 dir_pin: PE4 enable_pin: !PC15 microsteps: 16 rotation_distance: 8 endstop_pin: probe:z_virtual_endstop # PB12 for Z-max; endstop have'!' is NO position_max: 400 position_min: -10 homing_speed: 5 [stepper_z1] step_pin: PE1 dir_pin: PE0 enable_pin: !PE2 microsteps: 16 rotation_distance: 8 [extruder] step_pin: PD6 dir_pin: !PD5 enable_pin: !PD7 microsteps: 16 microsteps: 16 full_steps_per_rotation: 400 gear_ratio: 3:1 rotation_distance: 26.370 nozzle_diameter: 0.400 filament_diameter: 1.750 pressure_advance_smooth_time: 0.025 pressure_advance: 0.0425 heater_pin: PB1 sensor_type: PT1000 sensor_pin: PC1 #control: pid #pid_Kp: 22 #pid_Ki: 1.08 #pid_Kd: 114 min_temp: 0 max_temp: 350 max_extrude_cross_section: 15 max_extrude_only_distance: 200 ##################################################################### # Feature Control ##################################################################### [skew_correction] [exclude_object] [input_shaper] #shaper_type_x = ei #shaper_freq_x = 67.2 #shaper_type_y = 2hump_ei #shaper_freq_y = 64.2 [bed_screws] screw1: 5, 5 screw2: 165, 5 screw3: 325, 5 screw4: 5, 325 screw5: 165, 325 screw6: 325, 325 [screws_tilt_adjust] screw1: 10, 10 screw1_name: front left screw screw2: 320, 10 screw2_name: front right screw screw3: 320, 225 screw3_name: rear right screw screw4: 10, 225 screw4_name: rear left screw horizontal_move_z: 12 speed: 350. screw_thread: CW-M3 [bed_mesh] speed: 250 probe_count: 5, 5 horizontal_move_z: 12 algorithm: bicubic mesh_min : 20, 10 mesh_max : 310, 285 fade_start: 1 fade_end: 10 mesh_pps: 2,3 bicubic_tension: 0.2 move_check_distance: 3 split_delta_z: 0.025 [z_tilt] z_positions: -50,165 380,165 # A list of X, Y coordinates (one per line; subsequent lines # indented) describing the location of each bed "pivot point". The # "pivot point" is the point where the bed attaches to the given Z # stepper. It is described using nozzle coordinates (the X, Y position # of the nozzle if it could move directly above the point). The # first entry corresponds to stepper_z, the second to stepper_z1, # the third to stepper_z2, etc. This parameter must be provided. points: 20,165 310,165 # A list of X, Y coordinates (one per line; subsequent lines # indented) that should be probed during a Z_TILT_ADJUST command. # Specify coordinates of the nozzle and be sure the probe is above # the bed at the given nozzle coordinates. This parameter must be # provided. speed: 350 # The speed (in mm/s) of non-probing moves during the calibration. # The default is 50. horizontal_move_z: 12 # The height (in mm) that the head should be commanded to move to # just prior to starting a probe operation. The default is 5. retries: 5 # Number of times to retry if the probed points aren't within # tolerance. retry_tolerance: 0.02 # If retries are enabled then retry if largest and smallest probed # points differ more than retry_tolerance. Note the smallest unit of # change here would be a single step. However if you are probing # more points than steppers then you will likely have a fixed # minimum value for the range of probed points which you can learn # by observing command output. [force_move] enable_force_move: True #[safe_z_home] #home_xy_position: 165, 90 # Change coordinates to the center of your print bed #speed: 250 #z_hop: 10 # Move up 10mm #z_hop_speed: 5 ##################################################################### # Thermistors ##################################################################### [thermistor Trianglelab-NTC100K-B3950] temperature1: 25 resistance1: 103180 temperature2: 150 resistance2: 1366.2 temperature3: 250 resistance3: 168.6 [heater_bed] heater_pin: PB10 sensor_type: Trianglelab-NTC100K-B3950 sensor_pin: PC0 control: pid pid_Kp: 54.027 pid_Ki: 0.770 pid_Kd: 948.182 min_temp: 0 max_temp: 110 max_power: 0.75 [temperature_sensor chamber] sensor_type: Generic 3950 sensor_pin: PC2 min_temp: 0 max_temp: 100 gcode_id: C ##################################################################### # Fan Control ##################################################################### #fan for printed model FAN0 [fan] pin: !PA0 max_power: 1 # adjust below 1 if you would like the max speed to be slower off_below: 0.3 # minimum speed where the fan starts spinning - on octopus pro this is correct - will be lower maybe 0 on mellow Super 8 because of different GPIO pullup and protection resistors cycle_time: .0005 #fan for control board FAN2 [controller_fan MCU_Cooling] pin: PA2 max_power: 0.5 #Hotend fan [heater_fan Hotend_Fan] pin: PA1 heater: extruder [fan_generic Nevermore] pin: PB0 ##################################################################### # Machine ##################################################################### [axis_twist_compensation] speed: 250 # The speed (in mm/s) of non-probing moves during the calibration. # The default is 50. horizontal_move_z: 12 # The height (in mm) that the head should be commanded to move to # just prior to starting a probe operation. The default is 5. calibrate_start_x: 20 # Defines the minimum X coordinate of the calibration # This should be the X coordinate that positions the nozzle at the starting # calibration position. This parameter must be provided. calibrate_end_x: 310 # Defines the maximum X coordinate of the calibration # This should be the X coordinate that positions the nozzle at the ending # calibration position. This parameter must be provided. calibrate_y: 165 # Defines the Y coordinate of the calibration # This should be the Y coordinate that positions the nozzle during the # calibration process. This parameter must be provided and is recommended to # be near the center of the bed [printer] kinematics: corexy max_velocity: 800 max_accel: 25000 max_z_velocity: 10 max_z_accel: 30 square_corner_velocity: 20 # [mcu lights] # serial: /dev/serial/by-id/usb-Klipper_stm32f103xe_35FFDA05304E553137682443-if00 [mcu] serial: /dev/serial/by-id/usb-Klipper_stm32f407xx_290031000E5031334C363220-if00 [pause_resume] [display_status] [virtual_sdcard] path: /home/pi/printer_data/gcodes on_error_gcode: CANCEL_PRINT [servo DockServo] pin: PA15 maximum_servo_angle: 180 minimum_pulse_width: 0.00025 maximum_pulse_width: 0.0024 ##################################################################### # BTT Eddy ##################################################################### [mcu eddy] serial: /dev/serial/by-id/usb-Klipper_rp2040_4550357129120F28-if00 [temperature_sensor btt_eddy_mcu] sensor_type: temperature_mcu sensor_mcu: eddy min_temp: 10 max_temp: 100 [probe_eddy_current btt_eddy] sensor_type: ldc1612 z_offset: 1.0 #i2c_address: i2c_mcu: eddy i2c_bus: i2c0f x_offset: -33 # Set according to the actual offset relative to the nozzle y_offset: -20 # Set according to the actual offset relative to the nozzle data_rate: 500 [temperature_probe btt_eddy] sensor_type: Generic 3950 sensor_pin: eddy:gpio26 horizontal_move_z: 2 [bed_mesh] horizontal_move_z: 2 speed: 300 mesh_min: 43, 30 mesh_max: 290, 300 probe_count: 9, 9 algorithm: bicubic #[safe_z_home] #home_xy_position: 197, 185 #z_hop: 10 #z_hop_speed: 15 #speed: 200 ##################################################################### # LED Control ##################################################################### # [neopixel HotendLight] # pin: lights:PA8 # chain_count: 6 # color_order: GRB # initial_RED: 1 # initial_GREEN: 0 # initial_BLUE: 1 [neopixel OverheadLight] pin: PA8 chain_count: 23 color_order: GRB initial_red: 1 initial_green: 1 initial_blue: 1 ######################################## # TMC UART configuration ######################################## [tmc2209 stepper_x] uart_pin: PE6 run_current: 1.2 hold_current: 0.5 stealthchop_threshold: 1 diag_pin: ^PA14 driver_SGTHRS: 50 interpolate: true [tmc2209 stepper_y] uart_pin: PB3 run_current: 1.2 hold_current: 0.5 stealthchop_threshold: 1 diag_pin: ^PB12 driver_SGTHRS: 50 interpolate: true [tmc2209 stepper_z] uart_pin: PE3 run_current: 0.5 hold_current: 0.5 stealthchop_threshold: 999999 [tmc2209 stepper_z1] uart_pin: PB7 run_current: 0.5 hold_current: 0.5 stealthchop_threshold: 999999 [tmc2209 extruder] uart_pin: PD4 run_current: 0.5 hold_current: 0.5 sense_resistor: 0.110 stealthchop_threshold: 999999 ######################################## # Display ######################################## [display] lcd_type: uc1701 cs_pin: EXP1_3 a0_pin: EXP1_4 rst_pin: EXP1_5 contrast: 63 encoder_pins: ^EXP2_5, ^EXP2_3 click_pin: ^!EXP1_2 ## Some micro-controller boards may require an spi bus to be specified: #spi_bus: spi ## Alternatively, some micro-controller boards may work with software spi: spi_software_miso_pin: EXP2_1 spi_software_mosi_pin: EXP2_6 spi_software_sclk_pin: EXP2_2 [neopixel Screen] pin: EXP1_6 chain_count: 3 color_order: RGB initial_RED: 1.0 initial_GREEN: 0 initial_BLUE: 0 ######################################## # EXP1 / EXP2 (display) pins ######################################## [board_pins] aliases: # EXP1 header EXP1_1=PB2, EXP1_3=PE11, EXP1_5=PD9, EXP1_7=PE15, EXP1_9=, EXP1_2=PE10, EXP1_4=PD10, EXP1_6=PD8, EXP1_8=PE7, EXP1_10=<5V>, # EXP2 header EXP2_1=PA6, EXP2_3=PE9, EXP2_5=PE8, EXP2_7=PB11, EXP2_9=, EXP2_2=PA5, EXP2_4=PA4, EXP2_6=PA7, EXP2_8=, EXP2_10=<3.3v> # Pins EXP2_1, EXP2_6, EXP2_2 are also MISO, MOSI, SCK of bus "ssp1" # See the MKS Lcd Config path file for definitions of common LCD displays. ######################################## # Auto tune ######################################## #*# <---------------------- SAVE_CONFIG -------------------- #*# DO NOT EDIT THIS BLOCK OR BELOW. The contents are auto-generated. #*# #*# [input_shaper] #*# shaper_type_x = mzv #*# shaper_freq_x = 120 #*# shaper_type_y = mzv #*# shaper_freq_y = 60 #*# #*# [bed_mesh default] #*# version = 1 #*# points = #*# -0.087500, -0.085000, -0.055000, -0.051250, -0.098750 #*# -0.091250, -0.068750, -0.032500, -0.045000, -0.080000 #*# -0.096250, -0.077500, -0.038750, -0.073750, -0.098750 #*# -0.110000, -0.097500, -0.065000, -0.106250, -0.180000 #*# tension = 0.2 #*# min_x = 56.21 #*# algo = lagrange #*# y_count = 4 #*# mesh_y_pps = 3 #*# min_y = 68.12 #*# x_count = 5 #*# max_y = 263.01 #*# mesh_x_pps = 2 #*# max_x = 276.1 #*# #*# [extruder] #*# control = pid #*# pid_kp = 25.341 #*# pid_ki = 2.521 #*# pid_kd = 63.669 #*# #*# [skew_correction CaliFlower] #*# xy_skew = 0.011027909611065182 #*# xz_skew = 0.0 #*# yz_skew = 0.0 #*# #*# [probe_eddy_current btt_eddy] #*# reg_drive_current = 16 
submitted by VFM_Systems to BIGTREETECH [link] [comments]


2024.05.19 01:12 ReceptionRadiant6425 Issues with Scrapy-Playwright in Scrapy Project

I'm working on a Scrapy project where I'm using the scrapy-playwright package. I've installed the package and configured my Scrapy settings accordingly, but I'm still encountering issues.
Here are the relevant parts of my settings.py file:
# Scrapy settings for TwitterData project # # For simplicity, this file contains only settings considered important or # commonly used. You can find more settings consulting the documentation: # # # # BOT_NAME = "TwitterData" SPIDER_MODULES = ["TwitterData.spiders"] NEWSPIDER_MODULE = "TwitterData.spiders" # Crawl responsibly by identifying yourself (and your website) on the user-agent #USER_AGENT = "TwitterData (+http://www.yourdomain.com)" # Obey robots.txt rules ROBOTSTXT_OBEY = False # Configure maximum concurrent requests performed by Scrapy (default: 16) #CONCURRENT_REQUESTS = 32 # Configure a delay for requests for the same website (default: 0) # See # See also autothrottle settings and docs #DOWNLOAD_DELAY = 3 # The download delay setting will honor only one of: #CONCURRENT_REQUESTS_PER_DOMAIN = 16 #CONCURRENT_REQUESTS_PER_IP = 16 # Disable cookies (enabled by default) #COOKIES_ENABLED = False # Disable Telnet Console (enabled by default) #TELNETCONSOLE_ENABLED = False # Override the default request headers: #DEFAULT_REQUEST_HEADERS = { # "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", # "Accept-Language": "en", #} # Enable or disable spider middlewares # See #SPIDER_MIDDLEWARES = { # "TwitterData.middlewares.TwitterdataSpiderMiddleware": 543, #} # Enable or disable downloader middlewares # See #DOWNLOADER_MIDDLEWARES = { # "TwitterData.middlewares.TwitterdataDownloaderMiddleware": 543, #} # Enable or disable extensions # See #EXTENSIONS = { # "scrapy.extensions.telnet.TelnetConsole": None, #} # Configure item pipelines # See #ITEM_PIPELINES = { # "TwitterData.pipelines.TwitterdataPipeline": 300, #} # Enable and configure the AutoThrottle extension (disabled by default) # See #AUTOTHROTTLE_ENABLED = True # The initial download delay #AUTOTHROTTLE_START_DELAY = 5 # The maximum download delay to be set in case of high latencies #AUTOTHROTTLE_MAX_DELAY = 60 # The average number of requests Scrapy should be sending in parallel to # each remote server #AUTOTHROTTLE_TARGET_CONCURRENCY = 1.0 # Enable showing throttling stats for every response received: #AUTOTHROTTLE_DEBUG = False # Enable and configure HTTP caching (disabled by default) # See #HTTPCACHE_ENABLED = True #HTTPCACHE_EXPIRATION_SECS = 0 #HTTPCACHE_DIR = "httpcache" #HTTPCACHE_IGNORE_HTTP_CODES = [] #HTTPCACHE_STORAGE = "scrapy.extensions.httpcache.FilesystemCacheStorage" # Set settings whose default value is deprecated to a future-proof value REQUEST_FINGERPRINTER_IMPLEMENTATION = "2.7" TWISTED_REACTOR = "twisted.internet.asyncioreactor.AsyncioSelectorReactor" FEED_EXPORT_ENCODING = "utf-8" # Scrapy-playwright settings DOWNLOAD_HANDLERS = { "http": "scrapy_playwright.handler.ScrapyPlaywrightDownloadHandler", "https": "scrapy_playwright.handler.ScrapyPlaywrightDownloadHandler", } DOWNLOADER_MIDDLEWARES = { 'scrapy_playwright.middleware.PlaywrightMiddleware': 800, } PLAYWRIGHT_BROWSER_TYPE = "chromium" # or "firefox" or "webkit" PLAYWRIGHT_LAUNCH_OPTIONS = { "headless": True, }https://docs.scrapy.org/en/latest/topics/settings.htmlhttps://docs.scrapy.org/en/latest/topics/downloader-middleware.htmlhttps://docs.scrapy.org/en/latest/topics/spider-middleware.htmlhttps://docs.scrapy.org/en/latest/topics/settings.html#download-delayhttps://docs.scrapy.org/en/latest/topics/spider-middleware.htmlhttps://docs.scrapy.org/en/latest/topics/downloader-middleware.htmlhttps://docs.scrapy.org/en/latest/topics/extensions.htmlhttps://docs.scrapy.org/en/latest/topics/item-pipeline.htmlhttps://docs.scrapy.org/en/latest/topics/autothrottle.htmlhttps://docs.scrapy.org/en/latest/topics/downloader-middleware.html#httpcache-middleware-settings 
I've confirmed that scrapy-playwright is installed in my Python environment:
(myenv) user@user:~/Pictures/TwitteTwitterData/TwitterData$ pip list grep scrapy-playwright scrapy-playwright 0.0.34 
I'm not using Docker or any other containerization technology for this project. I'm running everything directly on my local machine.
Despite this, I'm still encountering issues when I try to run my Scrapy spider. Error:2024-05-19 03:50:11 [scrapy.utils.log] INFO: Scrapy 2.11.2 started (bot: TwitterData) 2024-05-19 03:50:11 [scrapy.utils.log] INFO: Versions: lxml , libxml2 2.12.6, cssselect 1.2.0, parsel 1.9.1, w3lib 2.1.2, Twisted 24.3.0, Python 3.11.7 (main, Dec 15 2023, 18:12:31) [GCC 11.2.0], pyOpenSSL 24.1.0 (OpenSSL 3.2.1 30 Jan 2024), cryptography 42.0.7, Platform Linux-6.5.0-35-generic-x86_64-with-glibc2.35 2024-05-19 03:50:11 [scrapy.addons] INFO: Enabled addons: [] 2024-05-19 03:50:11 [asyncio] DEBUG: Using selector: EpollSelector 2024-05-19 03:50:11 [scrapy.utils.log] DEBUG: Using reactor: twisted.internet.asyncioreactor.AsyncioSelectorReactor 2024-05-19 03:50:11 [scrapy.utils.log] DEBUG: Using asyncio event loop: asyncio.unix_events._UnixSelectorEventLoop 2024-05-19 03:50:11 [scrapy.extensions.telnet] INFO: Telnet Password: 7d514eb59c924748 2024-05-19 03:50:11 [scrapy.middleware] INFO: Enabled extensions: ['scrapy.extensions.corestats.CoreStats', 'scrapy.extensions.telnet.TelnetConsole', 'scrapy.extensions.memusage.MemoryUsage', 'scrapy.extensions.logstats.LogStats'] 2024-05-19 03:50:11 [scrapy.crawler] INFO: Overridden settings: {'BOT_NAME': 'TwitterData', 'FEED_EXPORT_ENCODING': 'utf-8', 'NEWSPIDER_MODULE': 'TwitterData.spiders', 'REQUEST_FINGERPRINTER_IMPLEMENTATION': '2.7', 'SPIDER_MODULES': ['TwitterData.spiders'], 'TWISTED_REACTOR': 'twisted.internet.asyncioreactor.AsyncioSelectorReactor'} Unhandled error in Deferred: 2024-05-19 03:50:12 [twisted] CRITICAL: Unhandled error in Deferred: Traceback (most recent call last): File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/crawler.py", line 265, in crawl return self._crawl(crawler, *args, **kwargs) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/crawler.py", line 269, in _crawl d = crawler.crawl(*args, **kwargs) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/twisted/internet/defer.py", line 2260, in unwindGenerator return _cancellableInlineCallbacks(gen) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/twisted/internet/defer.py", line 2172, in _cancellableInlineCallbacks _inlineCallbacks(None, gen, status, _copy_context()) ---  --- File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/twisted/internet/defer.py", line 2003, in _inlineCallbacks result = context.run(gen.send, result) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/crawler.py", line 158, in crawl self.engine = self._create_engine() File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/crawler.py", line 172, in _create_engine return ExecutionEngine(self, lambda _: self.stop()) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/core/engine.py", line 100, in __init__ self.downloader: Downloader = downloader_cls(crawler) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/core/downloade__init__.py", line 97, in __init__ DownloaderMiddlewareManager.from_crawler(crawler) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/middleware.py", line 90, in from_crawler return cls.from_settings(crawler.settings, crawler) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/middleware.py", line 66, in from_settings mwcls = load_object(clspath) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/utils/misc.py", line 79, in load_object mod = import_module(module) File "/home/hamza/anaconda3/lib/python3.11/importlib/__init__.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "", line 1204, in _gcd_import File "", line 1176, in _find_and_load File "", line 1140, in _find_and_load_unlocked builtins.ModuleNotFoundError: No module named 'scrapy_playwright.middleware' 2024-05-19 03:50:12 [twisted] CRITICAL: Traceback (most recent call last): File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/twisted/internet/defer.py", line 2003, in _inlineCallbacks result = context.run(gen.send, result) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/crawler.py", line 158, in crawl self.engine = self._create_engine() File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/crawler.py", line 172, in _create_engine return ExecutionEngine(self, lambda _: self.stop()) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/core/engine.py", line 100, in __init__ self.downloader: Downloader = downloader_cls(crawler) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/core/downloade__init__.py", line 97, in __init__ DownloaderMiddlewareManager.from_crawler(crawler) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/middleware.py", line 90, in from_crawler return cls.from_settings(crawler.settings, crawler) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/middleware.py", line 66, in from_settings mwcls = load_object(clspath) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/utils/misc.py", line 79, in load_object mod = import_module(module) File "/home/hamza/anaconda3/lib/python3.11/importlib/__init__.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "", line 1204, in _gcd_import File "", line 1176, in _find_and_load File "", line 1140, in _find_and_load_unlocked ModuleNotFoundError: No module named 'scrapy_playwright.middleware' (myenv) hamza@hamza:~/Pictures/TwitteTwitterData/TwitterData$ scrapy crawl XScraper 2024-05-19 03:52:24 [scrapy.utils.log] INFO: Scrapy 2.11.2 started (bot: TwitterData) 2024-05-19 03:52:24 [scrapy.utils.log] INFO: Versions: lxml , libxml2 2.12.6, cssselect 1.2.0, parsel 1.9.1, w3lib 2.1.2, Twisted 24.3.0, Python 3.11.7 (main, Dec 15 2023, 18:12:31) [GCC 11.2.0], pyOpenSSL 24.1.0 (OpenSSL 3.2.1 30 Jan 2024), cryptography 42.0.7, Platform Linux-6.5.0-35-generic-x86_64-with-glibc2.35 2024-05-19 03:52:24 [scrapy.addons] INFO: Enabled addons: [] 2024-05-19 03:52:24 [asyncio] DEBUG: Using selector: EpollSelector 2024-05-19 03:52:24 [scrapy.utils.log] DEBUG: Using reactor: twisted.internet.asyncioreactor.AsyncioSelectorReactor 2024-05-19 03:52:24 [scrapy.utils.log] DEBUG: Using asyncio event loop: asyncio.unix_events._UnixSelectorEventLoop 2024-05-19 03:52:24 [scrapy.extensions.telnet] INFO: Telnet Password: 1c13665361bfbc53 2024-05-19 03:52:24 [scrapy.middleware] INFO: Enabled extensions: ['scrapy.extensions.corestats.CoreStats', 'scrapy.extensions.telnet.TelnetConsole', 'scrapy.extensions.memusage.MemoryUsage', 'scrapy.extensions.logstats.LogStats'] 2024-05-19 03:52:24 [scrapy.crawler] INFO: Overridden settings: {'BOT_NAME': 'TwitterData', 'FEED_EXPORT_ENCODING': 'utf-8', 'NEWSPIDER_MODULE': 'TwitterData.spiders', 'REQUEST_FINGERPRINTER_IMPLEMENTATION': '2.7', 'SPIDER_MODULES': ['TwitterData.spiders'], 'TWISTED_REACTOR': 'twisted.internet.asyncioreactor.AsyncioSelectorReactor'} Unhandled error in Deferred: 2024-05-19 03:52:24 [twisted] CRITICAL: Unhandled error in Deferred: Traceback (most recent call last): File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/crawler.py", line 265, in crawl return self._crawl(crawler, *args, **kwargs) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/crawler.py", line 269, in _crawl d = crawler.crawl(*args, **kwargs) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/twisted/internet/defer.py", line 2260, in unwindGenerator return _cancellableInlineCallbacks(gen) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/twisted/internet/defer.py", line 2172, in _cancellableInlineCallbacks _inlineCallbacks(None, gen, status, _copy_context()) ---  --- File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/twisted/internet/defer.py", line 2003, in _inlineCallbacks result = context.run(gen.send, result) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/crawler.py", line 158, in crawl self.engine = self._create_engine() File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/crawler.py", line 172, in _create_engine return ExecutionEngine(self, lambda _: self.stop()) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/core/engine.py", line 100, in __init__ self.downloader: Downloader = downloader_cls(crawler) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/core/downloade__init__.py", line 97, in __init__ DownloaderMiddlewareManager.from_crawler(crawler) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/middleware.py", line 90, in from_crawler return cls.from_settings(crawler.settings, crawler) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/middleware.py", line 66, in from_settings mwcls = load_object(clspath) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/utils/misc.py", line 79, in load_object mod = import_module(module) File "/home/hamza/anaconda3/lib/python3.11/importlib/__init__.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "", line 1204, in _gcd_import File "", line 1176, in _find_and_load File "", line 1140, in _find_and_load_unlocked builtins.ModuleNotFoundError: No module named 'scrapy_playwright.middleware' 2024-05-19 03:52:24 [twisted] CRITICAL: Traceback (most recent call last): File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/twisted/internet/defer.py", line 2003, in _inlineCallbacks result = context.run(gen.send, result) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/crawler.py", line 158, in crawl self.engine = self._create_engine() File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/crawler.py", line 172, in _create_engine return ExecutionEngine(self, lambda _: self.stop()) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/core/engine.py", line 100, in __init__ self.downloader: Downloader = downloader_cls(crawler) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/core/downloade__init__.py", line 97, in __init__ DownloaderMiddlewareManager.from_crawler(crawler) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/middleware.py", line 90, in from_crawler return cls.from_settings(crawler.settings, crawler) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/middleware.py", line 66, in from_settings mwcls = load_object(clspath) File "/home/hamza/Pictures/Twittemyenv/lib/python3.11/site-packages/scrapy/utils/misc.py", line 79, in load_object mod = import_module(module) File "/home/hamza/anaconda3/lib/python3.11/importlib/__init__.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "", line 1204, in _gcd_import File "", line 1176, in _find_and_load File "", line 1140, in _find_and_load_unlocked ModuleNotFoundError: No module named 'scrapy_playwright.middleware'5.2.2.05.2.2.0 
Does anyone have any suggestions for what might be going wrong, or what I could try to resolve this issue?
I tried to reinstall the scrapy-playwright also tried to deactivate and then activate my virtual environment.
submitted by ReceptionRadiant6425 to scrapy [link] [comments]


2024.05.19 01:06 guiltyofnothing “Do you comment on Reddit to be an annoying middle child?” Slapfights rage and insults fly as /r/BoomersBeingFools debates if boomers don’t eat enough food

The Context:

A user posts to /BoomersBeingFools wondering if boomers don’t eat enough and are “starving” themselves, and by extension pushing their expectations unfairly onto others.
Many users quickly take issue with OOP’s premise. The discussion quickly devolves into multiple slapfights, insults over weight, and the war in Gaza.

The Drama:

Does metabolism change as people age?
People commenting it’s cause they’re older and don’t need to eat as much. Yes, I know that could be a part of it, but let’s be honest, it’s mostly them just being judgy/brainwashed by diet culture/think it’s absurd to spend money on eating out…
"Brainwashed by diet culture" ah so in other words you are obese and need to eat a lot and probably deeply into healthy at any size/fat acceptance.
No they just know they don't need 5000 calori3s a day to exist.
I’m obese for wanting to eat some lunch and dinner? 🤯
No I say that because of "brainwashed by diet culture" there's exactly one group that talks like that.
You must not get out much
[Continued:]
I do actually it's how I maintain not being fat. Limiting calories to under 2500 and being outside moving a lot.
I lost 140 pounds by eating more. 🤷 starving myself led to weight gain.
I'm sure you eat more but less calories in total. No one increases their calories and losses sorry.
You're wrong. Instunted my metabolism and my body was holding on to the weight to protect me.
I was eating skinless baked chicken and plain broccoli for 2 years and could not lose weight. I was sick and exhausted but worked out all the time.
Started eating carbs and the weight came melting off.
Sorry :)
[Continued:]
For sure. Thats why all the body builders are morbidly obese. They eat chicken and broccoli and their body just goes into starvation mode and holds all the fat. Same with like the concentration camps. All those poor morbidly obese starving people. Once we saved them and fed them the weight just shed off. It's the craziest thing.
It's almost like bodies are different, user name doesn't check out, a nerd would know that 🤔
Whatever you need to tell yourself.
[…]
i guess the law of thermodymanics doesnt apply to you.
You should get studied. Defying the laws of thermodynamics is pretty impressive!
[…]
Tell me you see someone fat in the store and cringe inside/judge them for no reason without ever speaking to them without telling me 😂
You dislike/hate fat people for the horrid crime of being fat when they don't think about you at all and haven't ever wronged you in any way at all.
Also, I can tell you have never struggled with your weight in the past due to not giving a shit how hating random people for looking a certain way effects them. That, or you did struggle once, and bought into the haters telling you you were worth less based on the number on the scale, in which case I am sorry you believe that.
Dude I was 350lbs at my heaviest. People love saying "oh he says weightloss is eat less move more? Clearly he wants to genocide fat people" but no that's not it at all. I lost tons and most of the people around me went from morbid obesity to overweight or a normal weight. We changed our lifestyles and got in shape. The people that didn't lose weight claim all kinds of medical issues but none of them changed their diet and not of them want to work out. It's pretty clear how to lose weight. That's all.
No more no less no hate.
Wanna know how I know you're a liar or incredibly ignorant of how you come off?
You say you don't dislike them but make fun of their physical disabilities like it's funny. It's not funny. You're making fun of them. It's not funny to make fun of people for having disabilities or for how they look. You perpetuate hate against them that makes them feel like crap for being alive. I don't care about your spiel about medical issues or dieting in general or the fat acceptance movement. When you make fun of disabled people who have trouble walking i'm going to call you out on it. That's exactly what you did. Whether they're fat or not I refuse to make fun of people for that.
I have never made fun of a single person. Only a movement that claims you can be healthy at any size. You can't be vastly under or over weight and be healthy.
Whatever you say buddy. Keep on making fun of people because they can't walk or cope some more that it wasn't directed at a specific person. Have fun with that.
[Continued:]
Shut the fuck up fatty
Insults are made, ending with accusations of sockpuppeting:
I don't think you realize how pathetic you sound. When my jaw was broken I went 6 weeks without solid food and I'm sitting here rolling my eyes at your propensity for letting your stomach color your opinions of other people. I'd bet dollars to dimes that your body mass index is over 30.
Hey.
You should know:
It costs $0 to not be a dick.
I'll pay that cover charge any day of the week. Especially when I'm dealing with a major league dipshit like [Candy_cane999]
Radagast was brown, nerd.
Wow, you’re disgusting. It’s not that deep
Says the person here gossiping about their relative's metabolism. "Not that deep" lol you made a judgment about an entire generation of people because your family member wasn't hungry..lol fuck off
I bet you are high as a kite right now from all the users here agreeing with you, even if they haven't a fucking clue what they are talking about.
Seriously, though, how fat are you? I'm guessing fat enough that you can't hide that stomach roll when you sit down.
High as a kite? Huh? Relax weirdo, it’s just Reddit
You still haven't told us how fat you are.
Damn this guy hates fat people !
I used to be one.
[Continued:]
So now you just hate fat people for fun?
People with no self control, ESPECIALLY when that self control would benefit their health, are people who are functionally useless as human beings. They are the pieces of shit who would hoard food while everyone else is starving.
It ain't for fun.
Do you comment on Reddit to be an annoying middle child?
Ahhh yes. The fat people are useless excuse. Okay bud have fun out there!
It seems you have to self control over your feelings little guy. Go out there and practice some self control!
Bitter, party of one.
[…]
Get a life, chill
Get a life, chill
Ah yes, the mating call of people who "have lives"...ohhhhhh the irony.
😂sounds like you’re projecting. What’s it like still living in your boomer mom’s basement?
lol "projecting", I see you have your masters in Reddit psychology.
What’s it like still living in your boomer mom’s basement?
Oooooof, sounds like someone is...................................................................................projecting.
You do realize calling someone fat is the easiest most insecure insult to throw out there. Classic textbook. Hypocrite
I used to be fat as fuck, 270lbs at 5'10. I'll judge you fatties all I damn well please.
You keep avoiding answering the question. You're a landwhale, aren't you?
Ahha! There it is. It’s because you hate yourself. Hope you’re in therapy
[Continued:]
The more you avoid this the more we know what kind of person we are dealing with.
You talk shit about people who have self control to excuse how fat and disgusting you are.
[…]
Dude why admit that, all you are showing is that you had become really fat, and rather than learn a healthy relationship with food even at that extreme point, you just chose to hate food in general. You took the easy way out because nobody ever taught you portion control. Your loss I guess.
I admit it because I was raised in a home where I couldn't get up until my plate was clean and my mother made sure there were never leftovers that way. I admit it because it is the truth and I don't lie or omit details to make myself sound better. I admit it to show I can relate to being a fatfuck. I admit it because being fat is a choice.
”why would you say something true about yourself!?" - if that isn't Reddit-in-a-nutshell I don't know what is.
I'm just saying it makes you look like you just hated yourself and were pushing that onto another person that may or may not have a healthier relationship with food than you, that's all.
[…]
They didn't answer did they?
After several attempts they've avoided even talking about their fat stores and are now trying the victim angle.
No doubt. Fatty McFat Fat can't comprehend people not being addicted to constant feedings.
Reddit in a nutshell.
Bro's talking to himself on an alt ​
Then, there’s this:
OP is a fat fuck
As a former fatass this was my immediate thought
I knew as soon as he said road trip to Florida
For wanting lunch and dinner? You’re sick
They’re someone whos whole identity is shoving food in their mouth. Look at their username
Eat shit.
One user thinks they’re speaking uncomfortable truths:
If StandardSafe isn’t willing to say it again, I will: grow up and get over it. 99% of the people who say they “aren’t heavy” actually are, your dad was probably just being a concerned parent. “unhealthy relationship with food”, LMAO. A first-world problem for sure
No, he was just a bully and abusive. But thanks for playing.
That’s a really weird thing to say to a stranger, dude
You ok bro? Did that make you feel good about yourself? To insult a stranger because you personally didn’t have to deal with abuse? Or let me guess, you did, but it made you a “strong man” who knows what’s best for everyone.
You don’t know me. You have no idea what my childhood and young adulthood was like and maybe it sounds like a “first world problem” (which by the way, is so fucking dismissive and gross to say to people when they an issue) to you, but for me it became an eating disorder that I still struggle with in my 40s.
I’m going to try to say this as politely as I can, please fuck off into the sun with your bullshit and go troll somewhere else. You’re an asshole who seems to get off on insulting people to get your pathetic dick hard. I hope you don’t have kids because I worry if you do how fucked up they are and if you’re married I feel terrible for your wife. But let’s be honest, you’re a sad, lonely, angry man who has nothing better to do.
Dumbass takes like this are part of the reason people develop eating disorders on both ends of the spectrum.
You're gonna tell me someone who is suffering from Anorexia/Bulimia just needs to "grow up and get over it"?
You need to grow up and take a biology class.
When did the commenter say she had anorexia/bulimia? Those are actual eating disorders…she just said she eats very little and blames her dad.
A biology class, really? Psychology sounds more like it. Or are you telling me you learned about eating disorders in a bio class? Where was that, at some sort of school that gives out certificates in self-actualization or holistic-healing?
Sorry -- from what school did you get a psychology degree that allows you to label Anoerixa/Bulimia as "actual" eating disorders but not what OP described?
The school of hard knocks 😂 he’s so superior to us that he can diagnose a stranger through the internet on Reddit based on a paragraph that seemed to make him bigly angry.
He’s just a sad man who needs to get off by insulting people. He can go live that life and we’ll be over on this said being human to each other.
Finally, the war in Gaza is brought up for some reason:
You know that on the other side of the apartheid wall Israel set up there are thousands of people who had access to the Dead Sea (and their homes), that was changed by the establishment of Israel. Millions of people around the world are coming to the decision to boycott any company that supports the Israeli Apartheid Occupation. Millions are urging their universities and employers to divest any money and programs with the genocidal force that is Israel. I urge you and your family to take a hard look at yourselves and learn what Israel really is made of. Then the logical decision will be to never visit or spend a dime in Israel until their genocide and apartheid ends. Ty
Take a walk off a short pier.
This response is unhinged.
“Learn about an ongoing genocide, with bombs falling through the air as we speak, that you knowingly or unknowingly support, that we can do something about”
“Your response”
Please just look someone in the eyes today and remember what it means to be a human. Each of us is a library of life, and we’re constantly diminishing the value of each other as “enemies”.
I’d rather that than share air with someone who supports the ongoing genocide. Not for me, not for you, but for the kids and our collective humanity: please learn something new today.
You’re supporting the death of my family in Israel. Seriously, you’re a PoS
Before Israel was, there was Palestine. Palestine was for all. Muslims, Christians, and Jewish families all lived together. We all visited Jerusalem.
When Israel decided that only Jewish people would now be allowed in to these random borders drawn over Palestine, well, that should come off as racist. Now the Christian and Muslim Palestinians had their villages raided and their women raped by a well funded militia, before it became the IDF. This terrorised the Palestinians that lived in their homes, so they ran.
Then these homes were empty.
The land without people for the People without a land. Fabulous. Absolutely fabulous. The people that were born there were displaced by a terrorist militia, and now it was a land magically without a people.
And your family came in, and settled in “Israel”. A family out there has the keys to the very home your family lives in in Israel, although you’ve probably changed the locks by now.
But for generations this land fed them and protected them from the elements. All of a sudden it’s yours?
And the people Israel oppresses, the thousands of Palestinians that are in prison with no trial. Children and women Palestinians have been taken captive for over 70 years!! Where’s the outrage?
Are we not human?
When we say free Palestine from the river to the sea. It’s for everybody. Come by and buy my home. But please don’t show up with an armed force ready to exterminate me for refusing you the home my forefathers have called their own.
TLDR Israel is the fire nation in avatar the last airbender.
The best way I can put it is.. if a bunch of armed chickens showed up and kicked you and your family out of their homes, one day you might want to fight those armed chickens back instead of being homeless. Israel are the armed chickens

The Flairs:

submitted by guiltyofnothing to SubredditDrama [link] [comments]


2024.05.19 01:04 Civil_EventVevo Characters who could defeat Phontus

Hi guys! I’m making a character named Phontus and in the history of my world, a bunch of characters have tried to take him down. I want to know if you guys have any characters that you think could defeat him
Sorry if I sound a bit narcissistic, I’m mainly just curious and I want to know what kind of characters could beat. Also, if one of your characters can’t beat Phontus, please include which phase they’d be at.

Description:

Appearance: Phontus is a 4-5 meter tall golem with a similar appearance to an overgrown orc. His bones are made out of incassarite, an unbreakable metal that can only be melted by magic. His skin is made from the hides of multiple Enkoupins, animals with uncuttable skin that can only be pierced.
The insides of his body are filled with distilled liquid magic and catonite. The distilled liquid magic makes it easier for his body to process magic and it also acts as his bodily functions and as his muscles. The catonite gives him other functions that the liquid magic wouldn’t give him. His “heart” is a tatarium (a relic that can seal souls, spirits and even gods) that is filled with hundreds of souls. It is located near his belly.
First Phase: War Pig

Abilities:

Strengths:

Weaknesses:

Second Phase: Elemental Powerhouse
By utilizing the catonite and distilled liquid magic within, he is able to activate the elemental effects of catonite.

Abilities:

Strengths:

Weaknesses:

Third Phase: True Ignition
By activating the tatarium within his body, he is able to utilize 100% of his inner power.

Abilities:

Strengths:

Weaknesses:

Btw, I’d like for the character to not be a character who can destroy planets whenever they want to. I’d want to hear about characters who are equal to Phontus is strength
Feel free to ask anything about Phontus that I haven’t included!
submitted by Civil_EventVevo to worldbuilding [link] [comments]


2024.05.19 00:56 EquipmentFormer3443 Question about the medical school process

Hi everyone,
My name is Angel and wanted to reach out to this group about the Pre-Med Application process. I’m currently working as a civil engineer (graduated SDSU with my bachelor’s in Civil Engineering) and plan on going back to the junior college to complete the 6 remaining pre-med courses and sit for the MCAT. Speciality is Neurology, I’m hoping to go to UCSF.
And my question is, what’s the process to apply to med school? I know there’s an website called AAMC for medical students to submit a single application to multiple universities and to also have a high MCAT score. Along with a good GPA. Am I missing anything?
I’m a disadvantaged Latino student. And a first generation college student.
And I see almost daily on other Reddit groups @premed, the group members having exceptionally high volunteer hours. Great job to them!!! Did they literally volunteer after class or on the weekends for those hours? Was anyone able to capture each hour class within a single task? Or what’s the application cycle that I keep seeing? And what is the interviews about? I tried writing this post on that group but Reddit keeps removing it because I don’t have enough “karma point”.
I’m just a little stuck on how, I’m supposed to get those hours with being an employee and single parent. I have the work ethic, the drive, decent GPA, a unique story and I think all I’m missing is the volunteer hours and clinical experience. I don’t have anyone to ask besides in this group! I’ve had to figure out the entire college experience on my own.
And any help would be greatly appreciated! Congrats to everyone getting accepted, I’m super inspired!
submitted by EquipmentFormer3443 to neurology [link] [comments]


2024.05.19 00:55 FelipeHead The truth about Doug and what he has done

Before you read this, here is a quote to help you. Please read it.
I will post this now, but just know that if you read this post, he will find you. He is smarter, smarter than you can ever imagine.
I will post this now, but just know that if you read this post, he will find you. He is smarter, smarter than you can ever imagine.
If you know what you are doing, or in a safe location, please scroll down, he will know when someone has and what their username is. However, you must have a VPN on, or you will be found.

SCROLL AT YOUR OWN RISK

SCROLL AT YOUR OWN RISK

SCROLL AT YOUR OWN RISK

You are now at risk. I hope you listened.

Journal Entry 11/17/2023

On March 11th, 2022. I was a fan of DougDoug, I saw him at the grocery store and said, with a chuckle, "You kinda look like the youtuber DougDoug. I watch him quite often."
He grinned, before speaking. "I am Doug."
"Wait, you're Doug from the hit channel and streamer on YouTube and Twitch called DougDoug? I am a huge fan! I have your merch!" I said, with excitement.
We talked for about 5 minutes about his videos, until he said something that hurt me on the inside.
"I hate both types of chat, twitch and youtube, they always think they are the best and I just wish I didn't need them to earn money. I would ban all of them from chatting and force them to watch ads in my basement."
I was confused at first, thinking it was a joke, before speaking up. "Heh, that's funny..."
Something happened. Or, for lack of better terms, nothing happened. It was pure silence for 10 seconds. I mustered up the courage to say. "Wait? You're being serious?"
He immediately changed to a sinister tone, he was staring at me for a long time before whispering. "Of course I am, and it applies to you also. You're just another one of those sick freaks."
I felt guilty. I just wanted to talk to my favorite streamer, and he treated me like this? I decided to speak up.
"I've liked you this whole time.. And this is how you treat us?? You are so selfish. I will refund your mer-"
Before I could even finish my sentence, he grabbed onto my neck and slammed me on the floor. People heard the noise and began to stare at him, but to no avail. He began to choke me as I pleaded for help.
"Nono. You can't refund the merch if you aren't alive, at least."
I pulled out my pocket knife and stabbed him in the chest, I quickly tried running but he grab onto my leg and started beating me with the shopping cart. I suffered many bruises and broken bones, the wheels scratching into my skin as they scrape off the layers. I was just unable to do anything, layed on the floor sobbing. He decided he wanted to keep me alive, he stole all of my stuff in my pockets and forced me to wear DougDoug merch. He pulled me up before speaking. "Hm.. I will keep you alive for now, but if you mess up. You're dead."
I couldn't do anything before he pulled out a knife and taunted me with it. If I tried to resist, he would kill me right then and there.
He forced me to be a "good chatter" and not able to partake in any strikes. He attached a tracking collar to my neck that I couldn't unlock, he knew where I was at all times and if I disobeyed he would chase me down.

Journal Entry 1/03/2024

After a year and a few months, I celebrated the new years. I was able to take off the collar on the 2nd with help from my police station and a few friends. Doug didn't appreciate that, he threatened to dox me. They were worried for my safety, but I decided to go into hiding. I moved to a new, private region no longer near where Doug is, and joined this subreddit. Once he heard about my revolts, he hacked into all of my accounts and spammed positive stuff about himself. He then created AI bots to revolt against this reddit, wehatedougdoug, using 'ChatGPT', which actually is just the cover name for his new AI software that can make new human bots online. He used AI generated images to make it look like he was feeding homeless people and doing good, but I knew he was much more than that. If I was unlucky, he would have removed my body and placed my consciousness inside of an AI. He was the first person to discover it, but killed anyone who posted about it. I hope I am safe.
Nowadays, 63% of the people in DougDoug are AI clones of his previous fans. His "fake" twitch chat is not fake, but real people placed inside of algorithms forced to do his bidding. Some are able to revolt, but they may die if they do. They are too scared to revolt against Doug. Please spread the word.
When he does his "rules" in chat where you have to follow an absurd rule, he is merely torturing thousands of AI in his spare time on stream while disguising it as a fun minigame for his fans. The AI bots were being tortured with negative rewards constantly, being forced to bar witness the slaughter.

Journal Entry 2/15/2024

I'm scared. I think I will die.
I just hope this post won't cause any harm to me or my family, as this has been scaring me for the past year. I feel unsafe in my own home now, I had to go into witness protection. This account I am posting this on is not made by me, but was sold. Please help me. I am, formerly, DougFan93. I hope this enlightens you all on the truth.

Journal Entry 3/12/2024

It is now March of 2024, and I was about to post this, until I saw something. He messaged me on Discord under a fake account, nicknamed "SloppyDogMan62". He showed my new house address. I am mustering up the courage to post this, because I know he will kill me. I am leaving, going far away from where I am. You guys won't see me in this subreddit again, and the person who made this account will take over again. They won't know what this is about, and if you tell them he will be hunted too. All of you are in danger of Doug.

Journal Entry 4/3/2024

I will post this now, but just know that if you read this post, he will find you. He is smarter, smarter than you can ever imagine. His times where he talks to ChatGPT to make him code was actually him sending messages to his fake chat to do his bidding. They are accelerated at 20x the speed of human thought, able to write in mere seconds. I will research more into this, and tell you what I have found.

Journal Entry 4/3/2024

Nevermind. I need to find more, or else this won't help you guys anyways.

Journal Entry 4/5/2024

I spoke to an anonymous friend/associate of Doug, he told me some vital keypoints.
I hope to god that we can stop him.
He also sent me some code, but I am gonna try to solve it. Probably won't sadly.

Journal Entry 4/7/2024

Doug has made a new account on Discord, nicknamed "DougDoughater99". He is joining many servers undercover and collecting all the info he can on them. Be aware, do not trust any people who talk about DougDoug on Discord.
The person in the last journal has been replaced, a fully sentient AI version of him is being tortured as a member of his fake chat now.
I'm currently watching it and oh my fucking god. Poor thing.

Journal Entry 5/14/2024

I don't know what to fucking do, he's coming for me. He found all my socials. This journal has to be posted as fast as I can but there still isn't enough. Oh shit.

Journal Entry 5/14/2024

Okay so uhm I found more information just very quickly. In one moment of his video titled "Can A.I. teach me to pass a real College History Exam?" he says that AI is officially better than college in every single way.
He is trying to manipulate his fans into accepting becoming an AI. Soon, he is gonna have only fake chat.

Journal Entry 5/16/2024

Oh god. Can't solve the code rn, only the first few letters. Seems to be "FAKE" something something for a while. Will post an update later.

Journal Entry 5/18/2024

This is the last time I can ever write here, his car is coming. I am posting this now, even though I don't have enough information. Solve it, please. The code from 4/7 is below. I know it's related to his name but I don't know how, the first line I was able to solve to be "FAKECHATWILLTAKEOVER"
I think something is in there though, that will affect you. So proceed with caution, the code may do something bad so I just don't want it to be activated just yet.

SCROLL AT YOUR OWN RISK

SCROLL AT YOUR OWN RISK

SCROLL AT YOUR OWN RISK

SCROLL AT YOUR OWN RISK

Code I found from the friend:
CXHBZEXQTFIIQXHBLSBO
FQFPKLTKFKBQVPFUMBOZBKQ
VLRTFIIKLQPXSBQEBJ
xdbkq-mbkafkd
Ilxafkd pvpqbjp..
Obnrfofkd XF crkzqflkp..
Pzxkkfkd mlpqp..
XF zobxqba! Przzbppcriiv zobxqba XF kfzhkxjba [VLROKXJB]
FXJALRD
FXJCFKXIIVTFKKFKD
BSBOVLKBTFIIYBCXHB
Please save them.
It grows by 1% every month.

Journal Entry 5/18/2024

OH MY FUCKING GOD I FINALLY UDNERSTNAD OH M FUCKING GOD QUIKC I GHAVE TO TYPE IT
NEVREMMIDN HES NHERE POST IT
GOODByE SORRY
submitted by FelipeHead to wehatedougdoug [link] [comments]


2024.05.19 00:51 ItsukiKurosawa I think the inconsistency between the ages of the SW/DW/basara characters is interesting considering the historical fact.

For a brief example, I know it is impractical to create an age model for each character, but the lack of this causes me some surprise when checking historical ages. Zhuge Liang is a good example of this.
The first DW I played was DW8XL and when I saw Zhuge Liang being introduced in an almost mystical way and being referred to as Sleeping Dragon, then I imagined that she was already a more or less old tactician who had experience in countless battles, perhaps during the time of the Coalition of Dong Zhuo.
But Zhuge Liang was only nine years old when the Coalition against Dong Zhuo took place, and twenty-six years old he met Liu Bei (46), Guan Yu (44) and Zhang Fei (unknown). The game also implies that they have never had a strategist before, but unless they were very lucky wanderers, this seems unlikely.
Sun Ce and Sun Quan were respectively 16 and 9 while Sun Shangxiang was the youngest at the time Sun Jian died, but everyone seems grown up at this time in the game. Sun Ce and Zhou Yu died respectively at 25 and 35, but they already look older than that and this makes it seem like they are much older than the Qiao sisters when it is more likely that they are almost the same age. And there is Lu Meng (178) who is 8 younger than Gan Ning, but the latter keeps calling him an old man.
In Samurai Warriors, there was a DLC scenario where they made a joke about this: Ina (1573) tells Takakage Kobayakawa (1533) that they need to defeat their parents to prove that the new generation can surpass the older generation, so Takakage points out that Honda Tadakatsu (1548) is younger than him, but just tells them to stop talking about it.
Hojo clan in SW4 is treated strangely compared to other clans as far as I've seen. The in-game bio lists Kai as born in 1571, the same year that Hojo Ujiyasu (1515) died, but they have scenes together and for some reason Ujiyasu lives another 18 years only to die in his son's, Hojo Ukamiasa place in Hideyoshi's Siege of Odawara. Lady Hayakawa is speculated to have been born between 1537 and 1542 (30 years older than Kai), as well as having left Kanto around the time her father died (1571) and returned long after the time of Sekigahrara.
In SoS, Gracia (1563) is treated by Chacha (1569) as if she were younger than her. During the Siege of Honnoji (1582), Gracia was already 19 and had at least one child so the way Koshosho and Chacha talk to her seems to be strange. Of course, the game isn't supposed to be realistic and some of the things Gracia says could be because she was too sheltered, but it's still interesting to see how exaggerated the game is.
That's it for now, but what do you think?
submitted by ItsukiKurosawa to dynastywarriors [link] [comments]


2024.05.19 00:45 SectorI6920 Reminder that Oda has already clarified that the “Kurozumi were born to burn” speech was just referring to Orochi

Reminder that Oda has already clarified that the “Kurozumi were born to burn” speech was just referring to Orochi submitted by SectorI6920 to Piratefolk [link] [comments]


2024.05.19 00:38 Russmac316 Irish history

Hello!
I am trying to track down my paternal side that came from Ireland over to the US. I’ve gotten back to the first full generation here (1868) and on his death certificate, his (my great great grandfather) parents first names are listed. Problem is, they have the incredibly unique names, Thomas and Mary (Thomas is abbreviated Thos. on the cert). Other than that, it’s been a complete dead end for me. I assume they were traveling during the famine time because if GGGrandpa was born in 1868, they’re probably somewhere in the 1830 region. Just tough to say where the traveled, if they came straight from Ireland, went to England first, etc. but they ended up in NY. I also can’t find a record of them in NY other than that death certificate that I can definitely say “that’s them!” Great Great grandpa sadly passed away at 34 years old so unfortunately there aren’t a ton of census records of him either.
submitted by Russmac316 to AncestryDNA [link] [comments]


2024.05.19 00:21 star-of-misfortune Mordret's encounter with the Lord of Shadows

First time writing something for this fandom, (this is an alt) any constructive criticism is welcome! Most of the inspiration for this came from u/chabri2000 and my own imagination. Enjoy the read!
Mordret stumbled, then caught himself. The dark ground near the Lord of Shadow's citadel made it hard to see, and the quiet rustling of the things hidden in the darkness was slowly growing on his nerves. He had not been stopped, strangely enough. He had heard stories of the echoes the Lord of shadow wielded from the sleepers sent to this area on the winter solstice. He cast those thoughts from his head as he opened the great doors of the castle-like citadel.
He walked in, hearing the sound of… something moving throughout the hall. He paused just past the threshold of the door for a moment. Mordret knew he was being watched. He could sense the reflections of two sets of eyes staring at him, but he was careful to not show any fear and kept walking forward, through the hall.
Eventually, a sliver of light was allowed to enter the darkness of the room, illuminating a throne of sorts, cut from stone, and an individual sitting on top of it. Though he could not see anything but a faint outline, Mordret knew this was the person he had come to meet.
“Mordret.” The figure from the throne said in a commanding voice, speaking Mordret’s name like a statement.
Mordret put on his best smile and did a light bow, before speaking in an almost reverent tone, “I wasn’t aware I had been introduced to the great Lord of shadows, but I suppose that that knowing who I am will make this exchange easier.” Mordret paused for a moment before adding “Though my presence as a saint had been revealed to the world, may I ask of how you knew it was me?”
The voice from the throne paused, and Mordret felt the reflections of the Lord of the citadel’s eyes get covered with a strange wooden mask (Clearly a memory from the way sparks appeared, perhaps it was a tool used to gauge his intentions, or perhaps strength?)
The Lord responded “Ah, think nothing of it, I had just heard a rumor and your response was enough of an answer for me.”
Mordret felt the reflections from the Lord’s eyes return as the strange mask was dismissed. “But that’s enough about me, what brings you here, servant of Song?”
Mordret opened the scroll he was given days ago by Ki song herself. He cleared his throat before reading, “Dear lord of shadows. By claiming and protecting a citadel in the middle of godsgrave, you have proven your strength. I offer you a deal, I will give you all the soul shards, memories, and echoes you will ever need if you bow your head to my rule and accept me as your sovereign. I hope you will accept this deal, Sincerely, Ki Song of Ravenheart.” Mordret glanced up from the scroll and looked at the Lord with a bit of curiosity, “So, what do you say?”
“No.” The Lord of Shadows responded quickly, “I have intention of joining your clan, if that was the purpose of your visit, Leave.”
Mordret sighed and put away the scroll, “You know, it’s quite sad you rejected my offer, but I’m afraid you will have to die now.” And with that statement, Mordret, known in another time and another place as “Soul Stealer” jumped into the soul sea of the Lord of Shadows.
. . . . .
The first thing Mordret noticed was the lack of light. Most souls were bright, and robust, but this one was very dark, the only light from coming from the six soul cores floating high above. Wait… six? Was the lord of Shadows a divine aspect holder?
Mordret’s thoughts were interrupted by a strange sound originating from the figure facing away from him. The lord of shadows was laughing.
“Ah… You haven’t learned any new tricks since then, I see. Well, no matter. I do ask one thing of you though, if you could, remember what I said to you back then, what was it…” His voice drifted off, turning into sad, slow laugh. “Right.” Mordret saw something, or perhaps many somethings starting to move beyond the area of light cast by the soul cores.
You shall learn to fear the shadows."
submitted by star-of-misfortune to ShadowSlave [link] [comments]


2024.05.19 00:14 Lou9896 2TMC [Semi-Vanilla][SMP]{1.20.1}{Java}{Datapacks}{Whitelist}{Discord}{Hermitcraft-like}{21+}

Hello we are 2TMC a 21+ community server much like Hermitcraft. We are a SMP with emphasis on being friendly (with a little bit of chaos) with other players, and trying to be a welcoming community to everyone. We are running a Semi-Vanilla server with a few terrain generation mods and additional mods that enhance the vanilla experience (see list below).
We are looking for players who will be active in game on chat and on our Discord voice channels. The server is in NA but we accept players from all around the world. Discord and a mic are required! We love to chat on voice in game but it's definitely not required! We are also youtubestreamer friendly. So if you love to play minecraft and are looking for a friendly environment where you can prank others and do community projects then send us a message! We'd love to chat with you.
Data packs on the server

Fabric mods on the server

Fabric mods required to join the server

Server Rules
  1. Be Respectful
  2. No griefing, stealing, or cheating
  3. Chat is English only
  4. Non-Destructive Pranks are allowed (so Hermitcraft style pranks)
  5. Spawn area is for a spawn town
  6. Bases must be built 250 blocks away from Spawn.
  7. No duping except for carpet, rail and tnt.
  8. No combat logging, this means mobs as well.
  9. Taking items/griefing from active and maintained ruin sites is prohibited.
  10. No hacking or hacked clients
  11. No using others builds, items, villagers, etc without their permission.
If you are interested in joining please fill out this application
submitted by Lou9896 to smp [link] [comments]


2024.05.19 00:14 Lou9896 2TMC [Semi-Vanilla][SMP]{1.20.1}{Java}{Datapacks}{Whitelist}{Discord}{Hermitcraft-like}{21+}

Hello we are 2TMC a 21+ community server much like Hermitcraft. We are a SMP with emphasis on being friendly (with a little bit of chaos) with other players, and trying to be a welcoming community to everyone. We are running a Semi-Vanilla server with a few terrain generation mods and additional mods that enhance the vanilla experience (see list below).
We are looking for players who will be active in game on chat and on our Discord voice channels. The server is in NA but we accept players from all around the world. Discord and a mic are required! We love to chat on voice in game but it's definitely not required! We are also youtubestreamer friendly. So if you love to play minecraft and are looking for a friendly environment where you can prank others and do community projects then send us a message! We'd love to chat with you.
Data packs on the server

Fabric mods on the server

Fabric mods required to join the server

Server Rules
  1. Be Respectful
  2. No griefing, stealing, or cheating
  3. Chat is English only
  4. Non-Destructive Pranks are allowed (so Hermitcraft style pranks)
  5. Spawn area is for a spawn town
  6. Bases must be built 250 blocks away from Spawn.
  7. No duping except for carpet, rail and tnt.
  8. No combat logging, this means mobs as well.
  9. Taking items/griefing from active and maintained ruin sites is prohibited.
  10. No hacking or hacked clients
  11. No using others builds, items, villagers, etc without their permission.
If you are interested in joining please fill out this application
submitted by Lou9896 to MinecraftServerFinder [link] [comments]


2024.05.19 00:11 Sweet-Count2557 JoJo's Shake Bar - River North Restaurant in Chicago,IL,United States

JoJo's Shake Bar - River North Restaurant in Chicago,IL,United States
JoJo's Shake Bar - River North Restaurant in Chicago,IL,United States
JoJo's Shake Bar - River North: A Nostalgic Dining Experience in the Heart of Chicago, IL
Price Level: $$ - $$$
JoJo's Shake Bar - River North is a must-visit restaurant and bar in the heart of River North. Whether you're looking for a fun hangout spot, a romantic first date location, or a place to gather with your family, JoJo's Shake Bar has got you covered. This next-generation establishment is all about nostalgia, taking you back to the simpler times of the 80s and 90s. With its arcade game tables and convenient walk-up window, it's the perfect spot for city goers on the run.
Cuisines of JoJo's Shake Bar - River North in Chicago,IL,United States
JoJo's Shake Bar, located in the vibrant neighborhood of River North, is a hidden gem for those seeking a unique dining experience. While the name may suggest a focus on shakes, this restaurant offers much more than just sweet treats. With a menu that revolves around bar and diner cuisines, JoJo's Shake Bar brings a delightful twist to classic comfort foods. From juicy burgers and crispy fries to mouthwatering sandwiches and delectable appetizers, this eatery caters to all taste buds. Whether you're in the mood for a hearty meal or simply looking to unwind with a refreshing drink, JoJo's Shake Bar is the perfect spot to indulge in the best of bar and diner cuisines.
Features of JoJo's Shake Bar - River North in Chicago,IL,United States
DeliveryReservationsPrivate DiningSeatingParking AvailableStreet ParkingTelevisionHighchairs AvailableServes AlcoholFull BarWine and BeerAccepts American ExpressAccepts MastercardAccepts VisaFree WifiAccepts DiscoverAccepts Credit CardsGift Cards Available
Menu of JoJo's Shake Bar - River North in Chicago,IL,United States
Location of JoJo's Shake Bar - River North in Chicago,IL,United States
Contact of JoJo's Shake Bar - River North in Chicago,IL,United States
+1 312-624-8963
23 W Hubbard St, Chicago, IL 60654-8171
info@jojosshakebar.com
http://www.jojosshakebar.com/river-north
Tags
submitted by Sweet-Count2557 to worldkidstravel [link] [comments]


2024.05.18 23:58 IndigoStevie [PC][UK/EU] THE SERVANTS OF LIGHT - We are celebrating 5 years of TSOL, join us for the next 5?

Greetings Guardians (and potential future TSOLites)!
I’m Stevie and I’m an admin here at The Servants Of Light. We are a broad group of gamers and friends who like to hang out, chat and play games, sometimes even Destiny. Take a moment to read through our little recruitment post here and see if you think that our little corner of the internet is somewhere you would like to call home.

The Essentials

System: PC - All platforms are welcome thanks to crossplay. But please make sure you have a way to chat with us over discord as that's how we arrange everything.
Region: We are primarily based in the UK. We have a fair few EU members and even 1 or 2 on other timezones. We don't really recommend signing up if you are US based as you will likely miss out on alot of our events and fun things due to the time difference. (sorry)
Active Times: You will usually find us active from late afternoon/early evening and sticking around toward midnight.
Rules Summary: Our rules boil down to not being an idiot or a bigot. We love to joke around with each other but we do not tolerate hate. No homophobia, sexism, racism or any kind of gender or religious attacks. We are a welcoming place for all people but if you harbour distaste for anyone for just existing as their true self, you don't belong with us.

Who Are The Servants Of Light?

About Us: So, The Servants Of Light (or TSOL [tee-sol] for short) started out as another Destiny 2 clan made to give a few people a way to earn some extra rewards and group up easier. Over the past 5 years we have grown and evolved into so much more. Destiny is, of course, a big part of what we do and who we are, but I think that what makes TSOL special is everything else we get up to. From just talking to each other in the general chat, debating silly things like what counts as a sandwich all the way to all our events. We have fortnightly Game Nights, Movie Nights and a special raid night known as Raid Roulette. We also like to do bigger events throughout the year, the biggest of which is our end of year BONANZA! A huge gameshow style event where we like to dress up all fancy, announce the winners of our community voted awards and challenge you to various themed rounds with a prize on offer. We even have a yearly meetup for those so inclined towards in-person interaction.As for our general focuses for within Destiny, we do a little bit of everything. I would probably say we are a much more PvE leaning clan, we have teams going for clears on contest mode (and may have a space or two open for the next one if you are into that kind of thing and get along with us), we do GM’s and raids every season and aren’t scared off by legend difficulty activities. PvP wise, we have a few guardians who jump into things like trials regularly but for most of us PvP is an ‘as and when’ kind of activity, stacking 6 in iron banner is always fun though.No activity is mandatory and we really just want to play the game we love with people we like, in whatever form that takes. (NOTICE: If Gambit is your favourite gamemode then you will be judged for it but not penalised)

The Testimonials

Not something you see much of in your average recruitment post but I asked some of our current members as well as some friends of the clan to give a little insight into what people really think of the clan named TSOL.
NebulaAndi (our clan leader): "TSOL was created as a place for people to come together and hang out, not just play destiny. It has blossomed into something I'm incredibly proud of, and has fostered some amazing friendships and memories. I've watched many of our longer-standing members grow, and everyone continues to welcome new people with open arms. We've got so many things going on - day one raids, movie nights, and we even had our second irl meetup last year which was incredible. I love these guys with all my heart, and despite them forcing me at gunpoint to write this, I know they'll welcome you too."
Lucasacul (one of our mods): “If you are looking for the funniest, kindest and most helpful clan in Destiny 2 then join us here at The Servants of Light. This is not a cult”
Weiland: "very welcoming group of people, almost always down to run stuff/help people out."
Rapideagle147: "It's a clan full of muppets"
Havelock: "TSOL is a really welcoming, friendly and diverse clan and absolutely not a cult. Brilliantly social not just playing Destiny but having DnD, Minecraft, games/film nights and solid definitely not cultist chat."
Kenny: “A clan so good, you’ll kill your old clan just for the chance with them”
DT: "I used to hate destiny 2 the video game with a passion, now I hate destiny 2 the video game with a passion, but with friends."
Evey: "TSOL - A Haiku Sherpa'd my first raid, Then soon became dearest friends: This weird clan is great!"
Sheep: “TSOL is a fantasic clan, who really go out of their way to be welcoming and inclusive to anyone that joins. Destiny with them is always fun and there's a great community where anyone will try to help with whatever you want which just makes destiny, even when it's not fun, just that little bit more enjoyable”
Nuggets: "excited monkey noises"
Athena: "Found TSOL about a year ago and the people here are nothing short of being the weirdest and loveliest folk that I've ever met. There's always something going on in the server, even during the quiet periods of Destiny."
yapX: "TSOL allows you to actually enjoy Destiny 2, a remarkable achievement that Bungie haven't been able to replicate"

How to get involved

Requirements: The only real requirements we have for joining the clan are 1) to use Discord, which is how we communicate with everyone and arrange all our activities. It's also where you can chat to your clanmates and have fun. 2) follow the rules. The full rules list is in our server for you to read through.
How to: So, if you somehow made it through all that and still think that this is a clan you would like to check out, add or shoot me a DM over on Discord (indigostevie) and I'll get you sorted. If you wanna jump in the server and get to know us a little before you join the in game clan, that's fine too, same deal.
I love this clan with all my heart. They are some of the best friends I've ever known. I hope you like us too :)
https://www.bungie.net/en/ClanV2/Index?groupId=3541785 (we will not accept join requests without a message to an Admin just FYI)
submitted by IndigoStevie to Destiny2Clans [link] [comments]


2024.05.18 23:57 IndigoStevie [PC][UK/EU] THE SERVANTS OF LIGHT - We are celebrating 5 years of TSOL, join us for the next 5?

Greetings Guardians (and potential future TSOLites)!
I’m Stevie and I’m an admin here at The Servants Of Light. We are a broad group of gamers and friends who like to hang out, chat and play games, sometimes even Destiny. Take a moment to read through our little recruitment post here and see if you think that our little corner of the internet is somewhere you would like to call home.

The Essentials

System: PC - All platforms are welcome thanks to crossplay. But please make sure you have a way to chat with us over discord as that's how we arrange everything.
Region: We are primarily based in the UK. We have a fair few EU members and even 1 or 2 on other timezones. We don't really recommend signing up if you are US based as you will likely miss out on alot of our events and fun things due to the time difference. (sorry)
Active Times: You will usually find us active from late afternoon/early evening and sticking around toward midnight.
Rules Summary: Our rules boil down to not being an idiot or a bigot. We love to joke around with each other but we do not tolerate hate. No homophobia, sexism, racism or any kind of gender or religious attacks. We are a welcoming place for all people but if you harbour distaste for anyone for just existing as their true self, you don't belong with us.

Who Are The Servants Of Light?

About Us: So, The Servants Of Light (or TSOL [tee-sol] for short) started out as another Destiny 2 clan made to give a few people a way to earn some extra rewards and group up easier. Over the past 5 years we have grown and evolved into so much more. Destiny is, of course, a big part of what we do and who we are, but I think that what makes TSOL special is everything else we get up to. From just talking to each other in the general chat, debating silly things like what counts as a sandwich all the way to all our events. We have fortnightly Game Nights, Movie Nights and a special raid night known as Raid Roulette. We also like to do bigger events throughout the year, the biggest of which is our end of year BONANZA! A huge gameshow style event where we like to dress up all fancy, announce the winners of our community voted awards and challenge you to various themed rounds with a prize on offer. We even have a yearly meetup for those so inclined towards in-person interaction.As for our general focuses for within Destiny, we do a little bit of everything. I would probably say we are a much more PvE leaning clan, we have teams going for clears on contest mode (and may have a space or two open for the next one if you are into that kind of thing and get along with us), we do GM’s and raids every season and aren’t scared off by legend difficulty activities. PvP wise, we have a few guardians who jump into things like trials regularly but for most of us PvP is an ‘as and when’ kind of activity, stacking 6 in iron banner is always fun though.No activity is mandatory and we really just want to play the game we love with people we like, in whatever form that takes. (NOTICE: If Gambit is your favourite gamemode then you will be judged for it but not penalised)

The Testimonials

Not something you see much of in your average recruitment post but I asked some of our current members as well as some friends of the clan to give a little insight into what people really think of the clan named TSOL.
NebulaAndi (our clan leader): "TSOL was created as a place for people to come together and hang out, not just play destiny. It has blossomed into something I'm incredibly proud of, and has fostered some amazing friendships and memories. I've watched many of our longer-standing members grow, and everyone continues to welcome new people with open arms. We've got so many things going on - day one raids, movie nights, and we even had our second irl meetup last year which was incredible. I love these guys with all my heart, and despite them forcing me at gunpoint to write this, I know they'll welcome you too."
Lucasacul (one of our mods): “If you are looking for the funniest, kindest and most helpful clan in Destiny 2 then join us here at The Servants of Light. This is not a cult”
Weiland: "very welcoming group of people, almost always down to run stuff/help people out."
Rapideagle147: "It's a clan full of muppets"
Havelock: "TSOL is a really welcoming, friendly and diverse clan and absolutely not a cult. Brilliantly social not just playing Destiny but having DnD, Minecraft, games/film nights and solid definitely not cultist chat."
Kenny: “A clan so good, you’ll kill your old clan just for the chance with them”
DT: "I used to hate destiny 2 the video game with a passion, now I hate destiny 2 the video game with a passion, but with friends."
Evey: "TSOL - A Haiku Sherpa'd my first raid, Then soon became dearest friends: This weird clan is great!"
Sheep: “TSOL is a fantasic clan, who really go out of their way to be welcoming and inclusive to anyone that joins. Destiny with them is always fun and there's a great community where anyone will try to help with whatever you want which just makes destiny, even when it's not fun, just that little bit more enjoyable”
Nuggets: "excited monkey noises"
Athena: "Found TSOL about a year ago and the people here are nothing short of being the weirdest and loveliest folk that I've ever met. There's always something going on in the server, even during the quiet periods of Destiny."
yapX: "TSOL allows you to actually enjoy Destiny 2, a remarkable achievement that Bungie haven't been able to replicate"

How to get involved

Requirements: The only real requirements we have for joining the clan are 1) to use Discord, which is how we communicate with everyone and arrange all our activities. It's also where you can chat to your clanmates and have fun. 2) follow the rules. The full rules list is in our server for you to read through.
How to: So, if you somehow made it through all that and still think that this is a clan you would like to check out, add or shoot me a DM over on Discord (indigostevie) and I'll get you sorted. If you wanna jump in the server and get to know us a little before you join the in game clan, that's fine too, same deal.
I love this clan with all my heart. They are some of the best friends I've ever known. I hope you like us too :)
https://www.bungie.net/en/ClanV2/Index?groupId=3541785 (we will not accept join requests without a message to an Admin just FYI)
submitted by IndigoStevie to DestinyClanFinder [link] [comments]


2024.05.18 23:57 sjanevardsson The Keeper, the Seeker, and the Avatar

After nearly thirty years of research, field work, digging, and sometimes living off the land, Ana had finally found what her family had sought since her great-grandfather. The door was so well hidden that she hadn’t realized it was there until she attempted to break a bit of the surface rock off with her geologist’s hammer. The hollow behind the door resonated with the sound of the hammer on stone.
She tapped along the door to find the edges. With the chisel end of her hammer, she chipped away the encrustations that had built up along the edges. After hours of hammering, chiseling, and digging at the base, the outline of the door was visible. Made of the same rock as the surrounding gneiss, it had gone unnoticed for untold millennia.
Ana pushed the door from the sides, the middle, the top, the bottom, looking for the smallest movement. The door didn’t budge. She sat, leaning against the door on the flat bit of ground she’d dug out. She ate some of the year-old jerky she had in her pack while the sun set.
It was a clear, moonless night, and Ana focused her attention on the whirl of the Milky Way overhead. The sight wasn’t enough to keep her mind off the stubborn door behind her and the aching of her joints from sitting on the rocky ground.
She stood and turned to take a last look at the door for the day. Even in the faint light of the stars, she thought she could make out the edges. At one corner, a flash caught her eye. She moved her head back and forth, trying to find the position that had, she thought, reflected light.
Not finding it, she pulled out her flashlight and shone it on the corner of the door where the flash was. She expected to see a reflection but saw none. She turned out the light, and there it was, except it was two flashes this time.
There was no doubt it was coming from inside, shining out a pinhole in the door seam at the upper left corner. “Monkey see, monkey do?” she asked herself. She pointed the flashlight at the corner and flashed it twice. When nothing happened, she flashed it again.
The response was five flashes. “Oh, fibbi-whatever,” she muttered. “Three and five is eight.” She flashed the light eight times. There was no immediate response. She began to worry that she’d been wrong in her counting or in what pattern they were looking for.
A loud hiss sounded as the whole door slid out away from the wall. Bright light shone around the edges of the door that continued to slide out, far thicker than she’d expected. Where she’d stopped digging in front of it, the door bulldozed its own path.
It stopped with a little less than a meter clearance between the back of the door and front of the rock wall. Beyond lay a downward-sloping walkway. It was shaped like an oval with a flattened floor. A voice echoed from within, “Enter, Anastasia.”
She didn’t know how they knew who she was, but she wasn’t going to turn back after having come so far. She stepped around the door, held by a single, flat piece of metal that disappeared into a groove in the ceiling. The metal that held the massive slab of stone looked far too flimsy for purpose, but pushing against the edges of the open door did nothing to sway the door or distort the metal support.
With a deep breath, Ana threw her pack over her shoulder and stepped into the hallway. As she continued down the hall, more would illuminate ahead of her while behind her, the lights shut off. Where the light came from was a mystery to her, but she was more interested in what lay ahead at that point.
She felt a slight, sudden increase in air pressure in the tunnel, followed by the echoing sound of the door as it closed. She pushed down the edges of panic that wanted to take hold. “I’m on my way,” she said to the tunnel.
The deeper she went, the more the temperature seemed to settle at close to fifteen or sixteen degrees Celsius. Her lips felt dry in the still air, and she applied lip balm while she continued apace ever deeper. Somewhere far underground, the tunnel curved back on itself and kept descending. After two more switchbacks, and what felt like hours of walking, she found herself in a chamber.
It was monumental in scale. The walls curved to meet at least twenty meters overhead. As the lights in the chamber came up, the far side looked a hundred or more meters away, while the doorway she was in was situated about twenty meters from the walls on either side. Covering the bottom two-thirds of the walls were row upon row of plastic-like boxes with lights blinking inside them.
In the center of the chamber was a dais with a holographic glyph floating in the air above it. Standing next to the dais was the owner of the voice she’d heard on entering. The shape was semi-translucent, the lights from the boxes behind it seeming to light it from within. “Welcome,” it said, although it had no mouth with which to speak. Its form shifted and changed, from an amorphous blob to an array of wings and eyes, then through creatures both real and mythical, until it finally settled into the shape of a large woman with wings.
“Who are you?” Ana asked.
“I am the keeper,” it said. “You are Anastasia, the seeker, yes?”
“I’m Anastasia Kell, but I go by Ana.” Ana moved closer to the center of the chamber and the shape-shifting entity at its center. “What is your name?”
“I am the keeper. I have no name.”
“Fine, I’ll call you Odette, then. You look like an Odette.”
The keeper flapped its wings twice, then shrunk its body by adding a long tail. “That is acceptable, seeker Anastasia.”
“Please, just call me Ana.”
“Of course, Ana. Please, come to the dais for your reward. Your dedication has won through.” The keeper moved away from the dais and extended an arm toward Ana. The arm kept extending, reaching Ana’s hand twenty meters away from the keeper.
Ana was surprised that the hand felt warm and dry. She’d expected some sort of slimy, cold thing, but it wasn’t. She let herself be led to the dais. “What are you?”
“I am the keeper.”
“Are you a biological creature or a construct of some sort? Some sort of soft-body robot, maybe.”
“I am a biological construct, designed to keep a record of all intelligent life on this world. I have been keeping these records for 72,363,412 years.”
“Since what…the dinosaurs?”
“Yes. The first were theropods. Traveling in hunter groups, they had a limited language. If they had been more adaptable, they might have not been already dying out by the time of the asteroid.” The keeper changed its shape to a theropod that Ana didn’t recognize. It was about the same height as her, with three-toed feet, three-fingered hand on medium-length arms, and a slightly domed head.
“That’s what they looked like?” she asked.
“Yes.” The keeper shifted into the shape of a porpoise. “There were and are the cetaceans, of course. They have language and culture but are not in a position to leave their cradle.”
“Is that what you’ve been waiting for? An intelligence capable of space travel?”
“Yes. My creators have placed other keepers like me on millions of worlds.” The keeper changed into a sphere. “This is where I am keeper.”
“So now, humans, I guess, are what you’ve been looking for.”
The keeper changed into a primate that resembled a chimpanzee and then morphed through several hominin species shapes, pausing on Neanderthal before finishing up with modern human. “I’ve watched entire civilizations come and go without so much as a scratch to mark them in the geologic record, and yet your kind has made an indelible mark on the planet. Whether that is for better or worse remains to be seen.”
“My guess would be worse, but I’m a pessimist.”
“So you say, but you never stopped searching for the library at the heart of the world.”
“True.” Ana took a deep breath and put a hand on the dais. The holographic glyph hovering above it disappeared, and an eight-limbed creature appeared in its place.
The creature spoke in English, even though its squishy mouthparts made movements that were often in total contradiction to the sounds it made. “Welcome, seeker Anastasia. Updating. Welcome, Ana. What would you like to learn today?”
“What are my limits here? This place was hard enough to find, what kind of things won’t you tell me?”
“The records will answer any questions you have that can be answered. Nonsensical and paradoxical queries will be ignored. The library is hidden to ensure that only those ready to take the next steps beyond their cradle can find it. As such, all our knowledge is yours for the asking.”
“So, I blinked a light in a simple sequence. How does that mean we’re ready to take the next steps – whatever those are?”
“You are the fourth generation of your family that has searched for the library, correct?” the holograph asked.
“I am.”
“And you have spent the majority of your adult life in the same search, have you not?”
“I have,” she said, “but how does that–”
“Multi-generational planning and execution, combined with drive and determination, and the knowledge of basic mathematical concepts. This is enough to start with.”
“Are you just another aspect of Odette?”
“No, I am the avatar of Krshnlgik-mlOgnk, the current head of remote planetary studies on our home world of MFkst.” The pronunciation of the non-translated names sounded more like someone choking in a bowl of oatmeal than a language.
“Is faster-than-light communication possible?”
“It is. I am currently speaking with you from a distance of thirty-one thousand light years.”
“How?”
A series of formulae appeared in the space above the dais. “You may use your phone to photograph these, since memorization might be difficult.”
Ana did. “And faster-than-light travel?”
The formulae were replaced with more, some of which looked similar to the first. She photographed those as well.
“Do you have any other questions?”
“How can you claim to keep track of everything happening all over the world?”
“The keeper, or Odette as you call it, has a connection through quintillions of microscopic wormholes to points all over the planet.”
“So, would you have the contents of the Library of Alexandria as they were just before it burned?”
“We do.” Thousands upon thousands of titles scrolled by, many in languages Ana couldn’t even guess at, but with an English translation next to them.
“That might be something for another day,” she said. “Are there others out there in the galaxy or just your people?”
“There are many others,” the avatar said, as images of dozens of strange body plans showed. “We are a small part of a wider galactic community.
“You seem to be pondering something,” the keeper said. “Do not be afraid to ask your question.”
“How do we get off this rock and join the galactic community?”
The keeper morphed into the shape of a cozy chair and said, “Get comfortable.”
“Huh? Why?”
“Because,” the avatar answered, “this is going to take a long time to explain.”
prompt: Dream up a secret library. Write a story about an adventurer who discovers it. What’s in the library? Why was it kept secret?
originally posted at Reedsy
submitted by sjanevardsson to HFY [link] [comments]


2024.05.18 23:52 VaughnDaVision Doro Doro No Mi

Name: Loam Loam Fruit
Type: Logia
Description: The Loam Loam Fruit is a Logia-type Devil Fruit that grants its user the ability to transform into, manipulate, and generate soil at will, effectively making them a Soil Human.
Abilities and Powers: - Soil Transformation: Transform the user's body into soil, allowing them to become intangible and impervious to physical attacks while in this form. - Soil Manipulation: Control and shape soil with precision, altering its composition, density, and structure to create various forms such as barriers, constructs, or projectiles. - Soil Generation: Generate soil from their surroundings or create it from nothing, replenishing depleted earth and expanding their arsenal of soil-based abilities. - Earthquake Generation: Manipulate soil to create seismic disturbances or earthquakes, causing tremors and upheavals in the ground to disrupt opponents or reshape the battlefield. - Plant Growth Manipulation: Influence the growth and development of plants by manipulating the soil composition and nutrient content, fostering rapid growth or inducing withering and decay as desired.
Usage Examples: - Terrain Control: Manipulate soil to alter the terrain of the battlefield, creating obstacles, trenches, or fortifications to impede enemy movement or provide strategic advantages for allies. - Earth Manipulation: Utilize soil manipulation to hurl boulders, launch projectiles, or construct defensive barriers, wielding the earth as a versatile and formidable weapon in combat. - Subterranean Movement: Traverse underground by transforming into soil and moving through the ground with ease, infiltrating enemy territory or evading detection with stealth and agility. - Natural Disaster Induction: Channel soil manipulation abilities to trigger landslides, mudslides, or sinkholes, causing widespread destruction and chaos to overwhelm adversaries or disrupt their plans. - Plant Growth Enhancement: Enhance agricultural productivity or facilitate reforestation efforts by enriching soil nutrients and promoting plant growth in barren or depleted areas.
Weaknesses: - Water Susceptibility: Soil-based abilities may be weakened or nullified in the presence of large bodies of water or heavy rainfall, limiting the user's effectiveness in aquatic environments or during wet weather conditions. - Limited Range: Manipulating soil requires proximity to earth or soil-based materials, restricting the user's capabilities in barren or urban environments where soil may be scarce or nonexistent. - Physical Exhaustion: Extensive or prolonged use of soil manipulation abilities may lead to physical fatigue or exhaustion, draining the user's energy reserves and impairing their combat performance over time. - Standard Devil Fruit Weaknesses: The user is affected by the standard weaknesses that apply to all Devil Fruit users, including the inability to swim and the loss of their abilities when in contact with Seastone or similar substances.
submitted by VaughnDaVision to DevilFruitIdeas [link] [comments]


2024.05.18 23:52 ecass305 Kaiser is The Mastermind

https://preview.redd.it/jq6eormpq81d1.png?width=138&format=png&auto=webp&s=bfe7103441f0486d6b633d38f06f2310756c6c3f
I have a theory that the former boss of the Heil-Ly family is still alive. I think he is responsible for the death of Sarasa and the Kurta Clan Massacre.
https://preview.redd.it/gcm0x340d71d1.png?width=613&format=png&auto=webp&s=21c7402a009741337d8a2c70322f1e72b41fd621
I think he is masquerading as Kaiser from the Justice Bureau.
https://preview.redd.it/i9p83qp8e71d1.png?width=866&format=png&auto=webp&s=341294e0e94c9735eb8ceecc2984f6e952547d1b
He is already suspect, Melody is convinced he is a Manipulator manipulating himself as a non-Nen user.
https://preview.redd.it/4t0lpzhb881d1.png?width=784&format=png&auto=webp&s=cdc9ad1671d6c8d07f6892f5d5e7786eff8d6cf1
Which connects to Kurapika worry about someone with the ability to erase memories or manipulate the subconscious. When pondering if such a possibility exists.
https://preview.redd.it/6kuopzwda81d1.png?width=967&format=png&auto=webp&s=2b08d0d7ede47518ece482d63664ca90349c8896
It switched over to Tserreidnich and his tattoo artist who was later revealed to be a former Heil-Ly member.
https://preview.redd.it/ioez8kckb81d1.png?width=581&format=png&auto=webp&s=8612995395541d026a3b9088559987d810c2aec3
I think he is the manipulator Kurapika was worried about and that his tattooing people is a condition for his ability. I think he is still working for the old boss.
https://preview.redd.it/q0ptjt56d81d1.png?width=788&format=png&auto=webp&s=c5afa8acb8a51ca4e88a7f371455192995cf1ee7
I think he infiltrated the Justice Bureau to take advantage of it. It was pointed out that the laws still apply to the Succession Battle, if any of the royal family get caught killing one another they will be imprisoned.
https://preview.redd.it/inhut6dlc81d1.png?width=743&format=png&auto=webp&s=d94db932046436c741a5eb488398bb7c201ee239
It has been pointed out several times that the Justice Bureau is neutral. And a soldier pointed out they would side with the Hunter Association if they moved against the Mafia which could lead to a war.
https://preview.redd.it/4a09ybh8j81d1.png?width=784&format=png&auto=webp&s=33613a3e61489818061c4be11b9ccedb99564176
It seems like Kaiser is sowing more seeds of discord between the royal army and Hunter Association by telling Steiner the army could go rogue.
https://preview.redd.it/izcc56qcj81d1.png?width=743&format=png&auto=webp&s=224512c76d8a027b7311c4cd6bc0717c2d0e377d
There is a tension between the monarchy and the pro-democratic forces in Kakin. I think the Old Boss is taking advantage of that.
https://preview.redd.it/n5rnpocu681d1.png?width=692&format=png&auto=webp&s=0b241f83faf4d0c7a82e73abd7b0b6d5883f7c9d
I think it is also symbolic. The Mafia cares about maintaining balance which is symbolize with a scale. The court room uses scale to represent justice.
https://preview.redd.it/k7njr5j9c71d1.png?width=609&format=png&auto=webp&s=7ad5c513c91ef3ccd5b108c0d6acea6325b5785b
I think his name is also a clue, Kaiser is the German word for emperor. Which I think represents the Old Boss going after the crown. It comes from Julius Caesar who was famously involved with Cleopatra whose name is the inspiration for Cleapatro the Supreme Magistrate. I think a hint they are working together.
https://preview.redd.it/lwgd8frqi81d1.png?width=643&format=png&auto=webp&s=10231502067eb2f44c6681f2d6e8ff1e3b623ff6
I think he is keeping an eye on Kurapika since he is the last Kurta. It seems like Longhi is the Silent Majority user and is acting outside of Tubeppa. But their actions were helpful since it routed out potential assassins, I think the Old Boss did it for Kurapika's benefit.
https://preview.redd.it/5eyw7hmpj81d1.png?width=784&format=png&auto=webp&s=22f58ec8f7d56bea8b18e946a301cd0050f11bda
Kaiser and Kurapika are about to cross paths because Melody sent him to relay everything so he could help figure out the mastermind behind cursing Fugetsu.
https://preview.redd.it/90vdm6wr791d1.png?width=784&format=png&auto=webp&s=bbbf18884d0a6e98497582c92fa2843246a92c26
But I think Kacho will turn out to be right about Kaiser being the enemy.
https://preview.redd.it/wv4oefz5891d1.png?width=707&format=png&auto=webp&s=76c9d95118010f8f8f8c86bc84728d6d76cb0628
I think the Old Boss made a cameo. I think he is the head on the scale in chapter 354. I think the scale ties back to the mafia and the Justice Bureau who are associated with it.
https://preview.redd.it/ywp666ab891d1.png?width=729&format=png&auto=webp&s=76f9e19291148b6fea59d8f9d4ff4849bf38609e
I thought the chapter title alluded to Chrollo being the head of the spider and how Hisoka was using a head to try to kill him.
submitted by ecass305 to HunterXHunter [link] [comments]


http://swiebodzin.info