Download runescape pin generator

Rabobank replacing Digipass

2024.06.10 02:33 slyall Rabobank replacing Digipass

Rabobank replacing Digipass submitted by slyall to PersonalFinanceNZ [link] [comments]


2024.06.10 02:01 Vicksin [Megathread] General Questions and Account Advice

Greetings Magisters!

Welcome to the General Questions Megathread of AFKJourney!
If you have a small question that doesn't warrant its own post, need some advice on your account, need teambuilding help, or otherwise, this is the thread for you!
Before you ask a question, please check the links and guides below to see if there is a guide that can help you.
See our official site for downloads and information!

Useful Links to get you started

Just starting the game and feeling overwhelmed?
Want to follow alongside an experienced player?
Stuck on an in-game puzzle, or unable to find something for completionism?
From our own Community!
As our game continues to grow, we will add/change our guide list, please feel free to suggest guides in the comments below or submit your own!

Redemption Codes

As always, be kind to others and be good people <3
submitted by Vicksin to AFKJourney [link] [comments]


2024.06.10 01:56 redAppleCore Installing ComfyUI in a Docker Container

With the recent malicious plugin news I thought it might be helpful for everyone to write a guide to help people install ComfyUI inside of a Docker container. Docker can be used to run a very stripped down version of Linux on your Windows machine that makes it much harder for malicious plugins to access your private information in Windows. It will make you "safer" but not "safe", you should still be careful when installing plugins.
Doing this can be a bit intimidating, but I will try and break things down as simply as I can, but if something isn't clear, please ask. If you're confused at some point I'm sure others are too. I'm doing this because making this user base as "unexploitable" as possible benefits all of us. The more careful we all are the less appealing it is for people to try, and they can find some other easy target. But, if you're someone who has been willing to learn how to install and use ComfyUI, I'm sure you have the skills to do this as well.
If you are someone who is more technically inclined, I'd appreciate you sanity checking this and helping less technically inclined users out.
Some disclaimers:
  1. I am a terrible writer, sorry.
  2. Docker has had vulnerabilities before that allowed an exploit in a container that allowed access to Windows. They very actively try and prevent this, but, it can and has happened. I can't guarantee anything. It is very important that you open the docker app and make sure you are up to date frequently. They make updating Docker very easy. (The bottom right of the app when opened will show a black checkmark if you are up to date and the version you are on)
  3. I'm not an expert in this, especially when it comes to Window's security. I am an expert in an adjacent field, but, it is still very possible I am not accounting for something massive, this is a genuine attempt to help but I'm not perfect. If anyone sees any part of this that feels wrong or like a mistake, please point it out.
  4. The majority of my experience is with Linux, where servers typically have very similar architecture. While I have this working on my Windows machine, I imagine there will be some machines that have quirks that I will not have any idea how to solve, but I will try!
  5. This will come with a slight hit to your speed. For me it adds around 5-10% to image generation time, but, you might be worse. (I did ask ChatGPT once if there were things I could do to reduce that penalty, and it said yes, but I've never tried it's suggestions and it might have been hallucinating. If a 5-10% increase isn't worth it to you, look into dual booting instead) - It also adds a pretty significant amount of time to the checkpoint load time. Once the checkpoint loads, you're good, but, if you swap checkpoints a lot, you'll notice it.
  6. I anticipate that some of you will run into issues I can't anticipate, you're all effectively guinea pigs. I ran this through myself on a computer I hadn't yet used for ComfyUI, but, that's the only test I have been able to do.
  7. I have changed the default port for ComfyUI in this to 8189 from 8188. If you still want 8188, edit both "ComfyUI.Dockerfile" (Line 36) and "Mounted/Scripts/StartComfyUI.sh" (Line 7) in a Linux friendly text editor (Sublime or Notepad++) after step 4. If you use the regular notepad on Windows to edit StartComfyUI.sh you are likely to run into problems.
Thanks for bearing with me through that, let's get started!
You need to have either Windows 10 or Windows 11 for these instructions... it's probably possible on Mac, but, I don't know any of the particulars.
STEP 1: Enable virtualization options in your BIOS
This is going to be different for different motherboards and is going to be one of the trickiest steps to explain. I would assume that any system able to run Stable Diffusion already will have support for it, but I might be wrong and you might have a system that can't do this... luckily if it can't, you should know on Step one! (There are some additional instructions you can look at for this here - https://support.microsoft.com/en-us/windows/enable-virtualization-on-windows-11-pcs-c5578302-6e43-4b4b-a449-8ced115f58e1 - including links to some manufacturer specific instructions)
STEP 2: Download and install Docker Desktop for Windows
STEP 3: Docker First Start
STEP 4. Downloading setup files
STEP 5: Running InitialStep.bat
STEP 6: Running Run.bat
Your created images will show up in C:\ComfyUIDocker\Mounted\Outputs - it will not exist until you create your first image.
I put a Models folder in the zip that you can use to put your checkpoints, loras, etc. I did this so if anyone does want to be able to go back to a clean slate they don't have to worry about it deleting their checkpoints, loras, etc. Because of this, you have to edit the extra_model_paths.yaml in C:\ComfyUIDockeMounted instead of in the normal ComfyUI folder if you want custom paths. You are still able to use the model/* folders inside the normal ComfyUI folder however if you'd like.
Hopefully you've made it here and everything is working. If so, congratulations! You should be able to breathe a lot easier now and you should be able to install plugins normally. Just make sure you use the "Run.bat" file going forward whenever you want to use ComfyUI. You should be able to just close the window that it opens up to shut ComfyUI down.
If you have any questions, at any point, feel free to message me. I cannot promise I will always be able to help, but I'm happy to try.
Zip File Contents
Every file can be opened with a text editor, eg: Sublime or Notepad++
  • ComfyUI.Dockerfile - This is a text file with a set of instructions for Docker for installing Linux and installing some necessary programs for ComfyUI (eg: Python)
  • InitialStep.bat - bat files are text files that contain a list of commands that Windows will execute in order. This one sets up the initial Docker container
  • Run.bat - This file starts up the Docker container created by InitialStep.bat, the container will keep the changes you make to it (eg: installing plugins)
  • Mounted folder: This folder will be read/write accessible to ComfyUI and it's plugins, your Output folder will be in here for images, as well as the ComfyUI installation - other than image files, do not open any executable files in this folder from Windows! (Though you can still open the files in a text editor in Windows, just don't run anything)
  • Mounted/extra_model_paths.yaml - This is a file ComfyUI will reads to know where to look for model files (in addition to it's defaults)
  • Mounted/HFCache folder: Some plugins download files from HuggingFace, they can be easily lost if not in a shared folder, so they will be saved here. Unless you know what you're doing, you should ignore it.
  • Mounted/Models folder: I put this here so you can put checkpoints, loras, embeddings, etc, here, so you can always wipe away your ComfyUI install if you want to start over. You can ignore it if you'd prefer.
  • Mounted/Scripts folder: I am putting the two Linux scripts that will run in here
  • Mounted/Scripts/Initial.sh: This will be started by InitialStep.bat - it downloads ComfyUI and ComfyUI-Manager from github, and installs some requirements for ComfyUI. You can open it in any text editor and review it.
  • Mounted/Scripts/StartComfyUI.sh: This file starts ComfyUI and runs every time Run.bat is run.
submitted by redAppleCore to comfyui [link] [comments]


2024.06.10 01:28 flwwhtrbt Pirate News (lighter edition)

Sorry, not reaaaally much happening these last few weeks! Unsure whether 'no news is good news' applies here? Regardless, here's a few dot-points for your (mild) amusement.

DenuvoNews?




Games?



FitGirl's top 10 repacks of this week:

  1. The Genesis Order
  2. Ghost of Tsushima
  3. GTA V
  4. Violet
  5. Night of the Dead
  6. RDR2
  7. TLoU Pt 1
  8. COD MW:3
  9. Succubus
  10. Jujutsu Kaisen: Cursed Clash



The sub here?


Random?
This site is a good resource, showing the list of DRM-free games on Steam. Just for interest's sake. As of posting this, it is 1,226 games of 41,186 which have no DRM.

If anyone's spotted anything of interest, really, share it here! <3

submitted by flwwhtrbt to SteamDeckPirates [link] [comments]


2024.06.10 01:17 Disastrous_Ruin7678 Can I download Pin/nacle Videos and HOs

Hi po. I recently enrolled sa Pin/nacle full online reviewee. Ang problem is nasa province ako the whole review and madalas may brownout sa place namin. I was planning to download the videos so I can save it and still watch it kahit brownout. Is it allowed po ba? (Technically sa confidentiality kineme bawal talaga hahaha pero has anyone tried it before?) Di po ba ma blo-block access ko sa site? 😅 Also planning to download the HOs din po. Please let me know. Thank you po!
submitted by Disastrous_Ruin7678 to AccountingPH [link] [comments]


2024.06.10 01:08 DontSayAndStuff Progressives with coding/tech experience

Do you have coding/IT experience? Would like to help drive positive, progressive change in SC? We need your help! I volunteer with a progressive group working to shine a light on corruption and bad governance in South Carolina. We need help from some tech savvy volunteers. PM if you're interested in helping.
Examples of what we're looking for help with:
Data Cleaning and Cluster Analysis Assessing how much contributors are giving to political candidates can be extremely difficult when donors self-identify using business names and/or address variations for their contributions. For example:
Open Source Web Frameworks with robust form building tools Backdrop CMS, CiviCRM, or other open source web frameworks. We're particularly interested in options outside of WordPress because extending the functionality of a WordPress website frequently involves paid plugins and other limitations.
Opposition Research No experience needed.
Web Scraping We are looking for web scraping experience to assist with various projects, for example:
Message me if you're interested!
submitted by DontSayAndStuff to summervillesc [link] [comments]


2024.06.10 00:38 PY_Jaguar Site for creating and sharing DCF valuations

Hey everyone!
I am launching a new site where you can create and share valuations for companies in the S&P 500. Here’s what you can do on the site:
Here's a sample: https://www.valuationshub.com/valuation-sample/56696d99
I also created a Twitter account to post about valuations: https://twitter.com/valuationshub
Your feedback is incredibly valuable to me, so please share your thoughts and suggestions.
Looking forward to seeing you there!
submitted by PY_Jaguar to GrowthStocks [link] [comments]


2024.06.10 00:20 paulgrey506 Tutorial : Using ~/.bashrc for custom commands & Generate color variants

Tutorial : Using ~/.bashrc for custom commands & Generate color variants
renderxcolor \"FFFFFF\" --variant 40
Adding Custom Commands to Your `~/.bashrc` File on Arch Linux
The `~/.bashrc` file is a script that is executed whenever a new terminal session is started in interactive mode. It can be used to set up environment variables, aliases, and custom functions to tailor your terminal experience.
Here's a step-by-step tutorial on how to include custom commands in your `~/.bashrc` file using the provided script as an example.
1: Open `~/.bashrc`
Open your terminal and edit the `~/.bashrc` file or using your preferred text editor. For example, you can use `nano`:
nano ~/.bashrc 
2: Add the Custom Commands
Scroll to the bottom of the `~/.bashrc` file and add the provided script.
This script includes two functions: `generate_color_variants` and `renderxcolor`.
#Function to generate color variants generate_color_variants() { main_color="$1" Expecting the color without a "#" num_variants="$2" r_adj="$3" g_adj="$4" b_adj="$5" if ((num_variants < 1 num_variants > 40)); then echo "Error: Number of variants must be between 1 and 40." return 1 fi r=$(printf '%d' "0x${main_color:0:2}") g=$(printf '%d' "0x${main_color:2:2}") b=$(printf '%d' "0x${main_color:4:2}") for ((i = 0; i < num_variants; i++)); do Adjust the RGB values by user-specified amounts to create variants new_r=$(( (r + i * r_adj) % 256 )) new_g=$(( (g + i * g_adj) % 256 )) new_b=$(( (b + i * b_adj) % 256 )) new_color=$(printf "%02x%02x%02x" $new_r $new_g $new_b) echo -n "$new_color: " perl -e 'print "\e[48;2;".join(";",unpack("C*",pack("H*","'"$new_color"'")))."m \e[49m "' if (( (i + 1) % 4 == 0 )); then echo Newline after every 4 colors else echo -n " " Separate colors with spaces fi done echo Final newline } #Function to render hex color codes to color blocks in terminal renderxcolor() { if [ "$1" == "" ] [ "$1" == "--h" ] [ "$1" == "--help" ]; then echo "Usage: renderxcolor [\"color1\"] [\"color2\"] [\"color3\"] ..." echo "Do not put the hash symbol in front of the hex codes" echo "Example: renderxcolor \"FF0000\" \"00FF00\" \"0000FF\"" echo "To fetch color variants: renderxcolor \"color\" --variant [num_variants]" elif [ "$2" == "--variant" ]; then if [ "$#" -lt 2 ]; then echo "Error: Provide a color and use --variant option." return 1 fi num_variants=10 Default number of variants if [ "$#" -eq 3 ]; then num_variants="$3" fi Prompt for RGB adjustment values read -p "Enter R adjustment value (0-9): " r_adj read -p "Enter G adjustment value (0-9): " g_adj read -p "Enter B adjustment value (0-9): " b_adj Validate that inputs are numbers between 0 and 9 if ! [[ "$r_adj" =~ ^[0-9]$ ]] ! [[ "$g_adj" =~ ^[0-9]$ ]] ! [[ "$b_adj" =~ ^[0-9]$ ]]; then echo "Error: RGB adjustment values must be between 0 and 9." return 1 fi generate_color_variants "$1" "$num_variants" "$r_adj" "$g_adj" "$b_adj" else perl -e 'foreach $a(@ARGV){print "\e[48;2;".join(";",unpack("C*",pack("H*",$a)))."m \e[49m "};print "\n"' "$@" fi } #Call the renderxcolor function with provided arguments renderxcolor "$@" 
In case I made a mistake making this post, here is the 'renderxcolor.sh' script :
https://github.com/duguayworld/xfce4/blob/main/renderxcolor.sh
3: Save and Close the File
Save the changes and exit the text editor. If you're using `nano`, you can do this by pressing `Ctrl + O` to write out the changes, then `Ctrl + X` to exit.
4: Reload `~/.bashrc`
To apply the changes made to your `~/.bashrc` file, you need to reload it. You can do this by running the following command in your terminal:
source ~/.bashrc 
5: Use Your Custom Command
Now you can use the `renderxcolor` command in your terminal to generate color variants. No # is used and always use double quotes "FFFFF". For example:
renderxcolor "bd98f9" --variant 30 
The terminal will prompt you to enter the Red, Green, and Blue adjustment values:
Enter R adjustment value (0-9): 0 Enter G adjustment value (0-9): 1 Enter B adjustment value (0-9): 0 
After entering the values, the script will generate and display the color variants based on the adjustments you specified.
renderxcolor \"bd98f9\" --variant 30 R0 G1 B0
This little script is very usefull for front-end developpers who wants to achieve outstanding styles, It is fast, accurate and manageable.
paulgrey506
submitted by paulgrey506 to EnhancingArchLinux [link] [comments]


2024.06.10 00:16 ErwinHeisenberg PSA for anyone having trouble getting PSP DLC working through Adrenaline

So, this has been bothering me for a good few weeks now and I haven't found any good solutions for this either here or anywhere else on the internet, so I want to do my part to prevent others from experiencing this difficulty. If you're wondering, yes this works for Rock Band Unplugged. It is precisely because of that game that I figured this out. This should work for you if your Vita was jailbroken recently (I did mine in May of '24) and you use a Mac to transfer files to ux0:/ through VitaShell.
I found that to get Rock Band DLC to work, it must be installed using pkgj. I'm not entirely sure why, but maybe it has something to do with applying some modification to circumvent DRM that I can't trigger manually. Those more knowledgable than me can opine about that. To allow this to happen, you must add the following line to the end of the config.txt file found in the pkgj file in ux0:/ exactly as written below.
install_psp_as_pbp 1
Then, you'll want to open up pkgj and download the DLC that you want for your particular game(s). In my case, it was Dissidia 012 Final Fantasy and Rock Band Unplugged. Feel free to delete that line from config.txt afterward. When you open up the game, either through the Adrenaline UI or from a bubble generated by Adrenaline Bubble Manager, the game should recognize the DLC. You don't need to mess with any of the options in the Adrenaline recovery menu and you don't need to install any legacy plugins to your pspemu folder.
I will note that getting this to work with Rock Band will require a couple of extra steps, which differ depending on how you got the game on your Vita in the first place. If you downloaded the game from pkgj, you actually downloaded Rock Band Unplugged Lite, which has a different GameID than the standard version of the game. After you've gotten your DLC, open up VitaShell and navigate to ux0:/pspemu/PSP/GAME and locate the folder titled ULUS10418. You will need to change this folder's name to NPUH10015. This is case-sensitive. If you got the standard version of the game like I did, you need to change the name of the .iso file to ULUS10418.iso. Again, this is case-sensitive. If you want to know where to get said ROM, you can Google it because I'm not about to let what just happened to Vimm's Lair happen to another site due to my big mouth. Lastly, for some reason, the Rock Band DLC list is incomplete for the USA region on NPS/pkgj, but not for Europe. Feel free to download the DLC from the Europe list if you're using the US version, because the DLC is region-free. But, you will need to either move the contents of the ULES01243 folder in ux0:/pspemu/PSP/GAME to the ULUS01418 folder using VitaShell, or just change the name.
submitted by ErwinHeisenberg to VitaPiracy [link] [comments]


2024.06.10 00:05 JJ6166 Pretty cool

Pretty cool
Should I use this flaaffy? I never saw 100%
submitted by JJ6166 to TheSilphArena [link] [comments]


2024.06.09 23:59 uranioo Como saber si puedo activar una clave de Instant gaming?

Como saber si puedo activar una clave de Instant gaming?
Veran, quiero comprar la ediciĂłn GOTY de Fallout 4, y he visto que en Instant Gaming estĂĄ a 8,99 euros. Sin embargo, tengo un problema: estoy en Colombia, y a diferencia de Eneba, Instant Gaming no indica si se puede activar la clave en mi paĂ­s. ÂżSaben como puedo saber si esta clave se puede activar en mi pais? Por favor y gracias
https://preview.redd.it/l560hatfbm5d1.png?width=1920&format=png&auto=webp&s=ec62aa05c794e3ed1f1646d4dde49805167f0c8c
submitted by uranioo to esGaming [link] [comments]


2024.06.09 23:29 Loudthunder34 Trying to get a tree enemy into my game, but the image isn't showing up the first image shows the file in the correct folder (I think it is the correct folder, but the 2nd shows it isn't there in the database

Trying to get a tree enemy into my game, but the image isn't showing up the first image shows the file in the correct folder (I think it is the correct folder, but the 2nd shows it isn't there in the database submitted by Loudthunder34 to RPGMaker [link] [comments]


2024.06.09 23:28 Personal_Cover_6356 Fender Hot Rod Deluxe Repair

I recently received a first generation Fender Hot Rod Deluxe from my uncle. He had it repaired a few years ago and within the first thirty minutes he got it back and started playing it it started smoking and he smelled burning. He shut it off and it hasn’t powered on since. I took it to a repairman in town who checked some of the voltages with a power meter. He said everything he checked works perfectly and that if he had to guess it would be a bad transformer. So I purchased a transformer and replaced it reattaching the wires exactly where I found them. Alas the amp still doesn’t work. So I found the schematics online and stated checking voltages in different places. Of the ones I checked Testpoint 34 or pin three measured almost 0 when it should be -13 volts. More alarmingly testpoint 2 measured 450 volts and testpoint 5 measured 455 volts. Neither of these should be higher than a couple hundred millivolts. I am not sure what could cause this problem which is why I’m turning to this form. I would greatly appreciate some help fixing this amp. I’m willing to check other test points or answer any other questions you might have about this amp.
submitted by Personal_Cover_6356 to tubeamprepair [link] [comments]


2024.06.09 23:21 GamingHearts1 Retro Gaming 10’s- WWE 2K14: (2013)

Retro Gaming 10’s- WWE 2K14: (2013)
https://preview.redd.it/davkkw4u4m5d1.jpg?width=800&format=pjpg&auto=webp&s=7e85c660da212b858f39282287e457f54b7d9df1
As many people know 2K series has been around since the early 10’s with the very first game coming out in 2012 known as WWE 2K13. While WWE 2K13 was praised for its campaign mode which revolved around the Attitude Era of the late 90’s; the theme for WWE 2K14 focused on the 30 year history of WrestleMania a pay per view which has been around since 1985. WWE 2K14 was released for the PlayStation 3 and Xbox 360 in October 2013. The campaign mode in WWE 2K14 allowed players to recreate historical moments of iconic WrestleMania matches. WWE 2K14 had included some of the most popular names of the past within the pro wrestling industry including Hulk Hogan, Ultimate Warrior, Ric Flair, Randy Savage, Undertaker, Bret Hart, The Rock, Shawn Michaels, “Stone Cold” Steve Austin, Razor Ramon and more. The WrestleMania themed campaign mode felt somewhat similar to the Legends Of WrestleMania game from ‘09 but much better with more high profile matches and wrestlers. In addition, to the 30 Years Of WrestleMania campaign mode players saw the return of Universe Mode along with Streak Mode which was a brand new feature. The purpose of Streak mode was for players to defeat the Undertaker at WrestleMania on the highest difficulty level imaginable.
https://preview.redd.it/7izndqe05m5d1.jpg?width=1600&format=pjpg&auto=webp&s=1012b35dc78896ae69c9c976724a057743edc1ed
The roster included characters from various time periods including the Golden Era, New Generation, Attitude Era, Ruthless Aggression and what was known as the PG Era back in the early 10’s. Players also had access to downloadable content which featured nWo characters from WCW during the mid to late 90’s. WWE 2K14 was definitely one of the better installments within the 2K series along the likes of WWE 13 and 2K19. In WWE 2K14 Yukes was able to create a game that casual long time pro wrestling fans can easily become attached to; making for a worth successor to the critically acclaimed WWE 13 game from 2012. One of the most unique things about WWE 2K14 was that it was the first pro wrestling title to be published by 2K Sports. It was common knowledge back then that THQ who was the publisher for WWE 13 had filed for bankruptcy which allowed Take-Two Interactive to gain the license to publish WWE games. There are many people who fans of the older THQ published WWE games from the 00’s such as Smackdown: Here Comes The Pain along with the Smackdown vs Raw series. However; 2K Sports has managed to put out some decent titles like 2K14 & 2K19 along with some bad ones during the 10’s decade. But there can be no arguments made about WWE 2K14 not being one of the better pro wrestling titles of the 2010’s.
submitted by GamingHearts1 to u/GamingHearts1 [link] [comments]


2024.06.09 23:17 MCN3WB13 We should be able to see face-up Bloon cards after our opponent plays the first copy of them.

This is just a Quality of Life thing, but when you play the first copy of a bloon card (say Swarm Blue Bloons) your opponent knows that you have the other parts of that card in hand. Your opponent should be able to see a face-up version of that bloon card in your hand, next to your other face-down cards, including the missing coin it now has.
There’s already a visual indicator showing that your opponent has seen one of the cards in your hand: the “missing coin” in the top left. You already have an up-to-date record of which bloon cards you’ve already played, so why shouldn’t your opponent?
The screen real-estate is already being taken up by you being able to see your opponent’s cards in hand at the top of the screen: besides hand size, it can also provide information on what bloon cards you know your opponent has access to. Instead of seeing 6 face-down cards, you could see 4 face-down, a Swarm Red Bloon, and a Swarm Blue Bloon (for example).
3rd party “Hand-trackers” have already been made for other card games like Hearthstone. This change will let players who don’t want to, or can’t, download them not have to memorize every card their opponent plays or write it down in a notebook or a spreadsheet.
This kinda stuff matters for things like “what bloon cards does my opponent have to generate Bloontonium” or “how many cards in my opponent’s hand might be Firestorm.”
For example, if you know your opponent is Gwendolyn, with max bloontonium, with Ceramic Bloons in hand, you won’t want to play into them setting your own Ceramics on fire with their 5 cost active, playing the remaining Ceramics, and then destroying them using their 20 cost active. But if you turned away for a second and came back, and saw a Ceramic bloon but wrongly assumed it was created by the storm increasing, you might go for a “Hail Mary” Ceramich rush play that was destined for failure
 unless you had a hand-trackethis change was implemented.
I wanted to mention this now, even though the game is in early restricted access still, because I think(?) this sort of change is the kind that is best done at the start of development, so you don’t run into issues like having to program all the previous Bloons cards to work this way.
It matters most for those Bloon cards, but I would like this to be implemented whenever both players know that a certain card is in a certain hand: if you return a Banana Farm into hand using Return 2 Sender, you should still be able to see the banana farm in your opponent’s hand, AND, as that opponent you should have some indicator letting you know that THIS is the banana farm your enemy knows about, the other banana farm is still secret info. That is (probably) more work though, but it’s another kind of thing a hand-tracker would be able to do. If this “my opponent has seen this card” indicator is deemed too much for a new player, you could make it a toggleable setting.
submitted by MCN3WB13 to bloonscardstorm [link] [comments]


2024.06.09 23:14 hi22a GPU running at x4 instead of x16. Is it time for a new motherboard?

Asus Z790-p Wifi motherboard
Like the title says, my 4090 is stuck in PCIE x4 mode, it is able to power scale through its max generation up to 16.0 GT/s though. There is some damage to the gen 5 slot, it doesn't look like pins are damaged, but I am not sure. Also, the motherboard won't boot consistently if RAM is in two of the 4 slots, but that is probably a separate issue. I updated the BIOS earlier this year and the RAM slots still have issues, so I am skeptical of the integrity of this motherboard overall. It is out of warranty and I'd rather just replace it if my components are being limited by it. I am using both GPU-Z and HWInfo to check the PCIE status of my GPU.
I already did a lot of research and testing. I took out two of the three m.2 ssd's, but one is the boot drive. With only the boot drive in there, I saw no change. I moved the GPU (4090) from the Gen 5 to a Gen 4 slot and there was no change either. I even tried putting in an old GTX 1080 in the slots to see if it would run higher, but it was set to x4 also. In the BIOS, I changed the PCIE bifurcation method from auto to 8x/8x (the only two options) and it still runs at x4.
I do video editing with Premiere Pro in addition to gaming. It seems like motion graphics work is slower than it should be. Gaming is fine, but it does benchmark on the lower end of the 4090 spectrum (I have an Asus TUF OC card).
I don't want to buy a new motherboard only to run into the same problems. Does this sound like an issue with my motherboard? The motherboard I have now was never a great one. Are there any that might be worth upgrading to that might have more robust PCIE lanes? I'd like to keep the cost under $300. I have DDR5 6000 RAM and an i9 13900k.
submitted by hi22a to buildapc [link] [comments]


2024.06.09 23:13 elezet4 Updated: Inpainting only on masked area in ComfyUI, + outpainting, + seamless blending (includes custom nodes, workflow, and video tutorial)

Updated: Inpainting only on masked area in ComfyUI, + outpainting, + seamless blending (includes custom nodes, workflow, and video tutorial)
Hi,
It's been several weeks since I published the Inpaint Crop&Stitch nodes and I've significantly improved them.
Check the updated (5--minute-long) tutorial here: https://www.youtube.com/watch?v=mI0UWm7BNtQ
The main advantages of inpainting only in a masked area with these nodes are:
  • It's much faster than sampling the whole image.
  • It enables setting the right amount of context from the image for the prompt to be more accurately represented in the generated picture.
  • It enables upscaling before sampling in order to generate more detail, then stitching back in the original picture.
  • It enables downscaling before sampling if the area is too large, in order to avoid artifacts such as double heads or double bodies.
  • It enables forcing a specific resolution (e.g. 1024x1024 for SDXL models).
  • It doesn't modify the unmasked part of the image, not even passing it through VAE encode and decode.
  • The nodes take care of good blending.
Example workflow:
Many things taking place here: note how only the area around the mask is sampled on (40x faster than sampling the whole image), it's being upscaled before sampling, then downsampled before stitching, and the mask is blurred before sampling plus the sampled image is blend in seamlessly into the original image. The tutorial shows more features.
You can download them from ComfyUI-Manager (inpaint-cropandstitch) or from GitHub: https://github.com/lquesada/ComfyUI-Inpaint-CropAndStitch.
Enjoy!!!
Luis.
submitted by elezet4 to StableDiffusion [link] [comments]


2024.06.09 23:11 fan-dragonoid Idk how to save that imige on that place

Idk how to save that imige on that place submitted by fan-dragonoid to BakuMedia [link] [comments]


2024.06.09 23:03 elezet4 Updated: Inpainting only on masked area, outpainting, and seamless blending (includes custom nodes, workflow, and video tutorial)

Updated: Inpainting only on masked area, outpainting, and seamless blending (includes custom nodes, workflow, and video tutorial)
Hi,
It's been several weeks since I published the Inpaint Crop&Stitch nodes and I've significantly improved them.
Check the updated (5--minute-long) tutorial here: https://www.youtube.com/watch?v=mI0UWm7BNtQ
The main advantages of inpainting only in a masked area with these nodes are:
  • It's much faster than sampling the whole image.
  • It enables setting the right amount of context from the image for the prompt to be more accurately represented in the generated picture.
  • It enables upscaling before sampling in order to generate more detail, then stitching back in the original picture.
  • It enables downscaling before sampling if the area is too large, in order to avoid artifacts such as double heads or double bodies.
  • It enables forcing a specific resolution (e.g. 1024x1024 for SDXL models).
  • It doesn't modify the unmasked part of the image, not even passing it through VAE encode and decode.
  • The nodes take care of good blending.
Example workflow:
Many things taking place here: note how only the area around the mask is sampled on (40x faster than sampling the whole image), it's being upscaled before sampling, then downsampled before stitching, and the mask is blurred before sampling plus the sampled image is blend in seamlessly into the original image. The tutorial shows more features.
You can download them from ComfyUI-Manager (inpaint-cropandstitch) or from GitHub: https://github.com/lquesada/ComfyUI-Inpaint-CropAndStitch.
Enjoy!!!
Luis.
submitted by elezet4 to comfyui [link] [comments]


2024.06.09 23:01 TheDreadPirateRobots [Have Gun - Will Travel] - 1.16

[INDEX]
Blackheart Bill stared at us from the porch of the tiny cabin, his eyes filled with murder. A cruel smile crept across his face, causing me to break into a sweat — this was a man who enjoyed the suffering of others.
“Well, well. If it isn’t the two bounty hunters that killed half my gang,” Bill drawled, his voice dripping malice. “What do ya think we should do with them, boys?”
“Face me like a man,” I shouted at him. “I refuse to be hung like a criminal!”
Bill’s lips twisted into a grin. “Is that so?” He said. “You think I had you brought here so you can challenge me to a duel? You’re mistaken kid.”
“I don’t want to be hung,” I said, mentally instructing Horse edge closer to Silas’ mount.
“What you want and what I want are different things, boy,” Bill said, his face relaxing into an unreadable mask. “And what I want is for you to suffer for killing my men. Jim, get a rope.”
Gap-tooth laughed like a drunken donkey and swung down from his horse.
I brushed against Silas, pulling his gun from my Inventory. Silas was fast, insanely fast. The gun appeared in my hand for a split-second before Silas had it pointed at the outlaw and was firing sizzling black bolts of energy.
Blackheart Bill was faster.
The outlaw dodged to the side in a blur, firing off three wild Kinetic bolts, one passing on each side of Silas before the final one tagged the man in the chest with the sound of shattering glass.
I pulled my gun from inventory a moment later, regretting my decision to load it with Lightning rounds as I pulled the trigger. Thunder roared as I shot the bandit behind me, then I squeezed the trigger again, clipping the other with a finger-thick bolt of electricity. Stone bullets whizzed around me as Horse hightailed it around the corner of the shack. Triggering [Aimed Shot] I fired a third round and a clap of thunder fried the man guarding the wood door set into the canyon wall.
Silas rounded the building a second later, his gun firing wildly at the remaining bandits. Quick as a flash, he ejected the spent brass and reloaded from his gun belt, picking off two more as they rounded the corner.
A Metal bullet burst from the wood next to my face, grazing my temple. I shoved my Mongoose into a gap between the weathered boards and fired off the remainder of my Lightning rounds, setting the front of the shack on fire. My fingers flickered as I reloaded unprimed rounds into the gun, slamming the cylinder closed.
Silas took one edge of the cabin and I took the other, shooting at anyone who moved, trapped in a standoff with the remaining five bandits and Bill, who continued shooting through the walls at us while screaming obscenities.
“Told you I didn’t want to hang, you scar-faced freak,” I taunted the man, firing a shot at one of the bandits scurrying to find better cover behind a broken wagon missing its rear axle. The Kinetic Bolt spread as it covered the distance, growing from a finger-sized bolt of blue energy into a basketball sized cloud that dispersed with a crackle and pop. Somewhere in the back of my head I knew the range was only about twenty yards and chastised myself for wasting the bullet.
I had less than 550BP remaining, which was a lot for unprimed shots, but only 54 [Aimed Shots] or about 100 primed shots. If I needed to use any of my other Utilities, it would drop fast. The bandit I had missed popped off a shot from his new vantage point, punching a hole in the wall above my head. I sent a Stone bullet in reply, causing him to duck from sight.
\Ding**
A popup blocked the lower half of my vision.
-=-=-
đŸ“± [New Power-Up Available!] đŸ“±
đŸ”« Pinned down behind an old shack? Bullets not packing enough punch? Try [Overcharge]! đŸ”«
đŸ’„ Just 500 credits, Limited time only! đŸ’„
🌟 Features Include: - [Overcharge] Utility**: Infuse your bullets with extra battery points and surprise everyone! - Costs 500 credits - Requires 82 Memory
⚠ Important Notes: - Cannot be stacked with active Utilities - Overcharge can severely damage firearms
[Get Overcharge Now ✅] [Maybe Later ❌]
-=-=-
The 60 second timer counted down 2 seconds before I punched accept.
[Downloading
20%
32%
68%
87%
Done!] [Installing
8%
12%
49%
52%
91%
Done!]
“You get shot?” Silas asked, sparing me a glance while I was stuck waiting for my upgrade to finish.
I shook my head. “Psychic thing,” I said once the System was done shoving data in my head. The knowledge of how to use [Overcharge], was simple enough — just push extra BP through the runestone and increase the destructive power of the bullet.
I triggered [Overcharge] and pushed an extra 5 Battery Points into the runestone, bringing the total cost of the Stone bullet to 6BP, then squeezed the trigger. The projectile impacted the broken wagon like a grenade, sending fragments of wood flying everywhere.
The screaming started a second later, followed by the bandit whose face was covered in blood and splinters. Selecting [Aimed Shot] I put a Stone bullet into his head, shocked by the spray of gore that filled the air. Hot bile burned the back of my throat, forcing me to swallow hard and refocus on the immediate situation.
The sound of hooves reached my ears, followed by Silas swearing. “They’re escaping,” He said, turning to mount his horse and swearing again. The animal was trembling in shock, bloody froth covering its mouth as it struggled to breathe. I noticed the blood covering its side then, where it had been shot when we had retreated behind the shack.
The shack was now burning quite impressively. The flames had grown to the point that it was uncomfortable to remain close, so I moved to a cooler spot and took a seat on the sandy ground. Pulling the Marlin from inventory, I popped off the leather caps that protected the scope lenses and took aim at the fleeing bandits. The scope pulled them in close enough that I felt I could reach out and snatch them with my hand even though they were over a hundred yards away now.
Bracing the rifle on my knee, I sighted through the scope and pulled the trigger, worked the lever to eject the shell and fired again. On the fourth shot I watched as Blackheart Bill’s horse stumbled and dropped to the dirt. I was aiming at Bill, but taking out his horse was good enough.
I watched as Bill took cover behind his downed horse and yelled at his men to come back and get him. They didn’t even look back, hunkering down as he started shooting at them, hitting one and dropping him from the saddle. Taking aim through the scope, I shot a few more rounds at Bill, causing him to turn his attention back to me and return fire.
A gunshot from behind me caused me to jump. Turning to see the source of the gunfire I saw Silas standing over the body of his horse. I guess he decided to end its misery.
Holstering his weapon, Silas yelled at the outlaw. “It’s over, Bill! Throw down your guns!”
Bill fired off another few rounds, none of them even coming close. A gunslinger like Bill might be deadly at close range, but he was just as accurate with a pistol as everyone else at a hundred yards.
I fired off a Metal slug from the Marlin and Bill returned fire. Our standoff continued, none of us wanting to commit to a move.
“How far you think that is?” I asked Silas.
“About a hundred ten, hundred twenty yards. Why?”
“Long as I’m here I might as well try to zero in this scope,” I replied, sighting down the barrel while adjusting the stupidly expensive piece of equipment.
“It’s a nice scope,” Silas admitted, rolling a cigarette. “You’re only as good as your gun.”
I nodded, fired off another shot, adjusted the scope, then fired off another. Until I got this thing in a vise and did it properly, this was as good as I was going to get.
The top of Bill’s hat was just visible over the ribs of the dead animal, so I used [Aimed Shot] and fired, eliciting a string of curses from the outlaw as it was knocked from his head.
I grinned at Silas, who returned it with a smile of his own. “You think this is gonna take long?” I asked.
“Put a few of those explosive rounds into that horse. That should get ‘em moving,” Silas answered.
“That was an [Overcharged] stone bullet,” I said. “Not sure it’ll have the same effect with a Metal slug.”
Silas nodded his head. “Be careful you don’t Overcharge too much, you can damage the core of your gun or even cause it to explode,” he said.
I sighted down the scope and triggered [Overcharge] with 5BP, sending another five Metal slugs downrange just as quick as I could work the lever-action. The slugs tore through the carcass, kicking up little puffs of dust as they tore into the ground beyond it.
Bills hat began to wave over the remains of the horse, then it dropped from sight.
“Let’s give him a few minutes,” Silas suggested. “If he’s playing games, he’ll lose patience. No sense endangering ourselves if he decides to pop up and start firing.”
I shot a few more [Overcharged] Metal slugs into the carcass, the last one causing the hat to fall out of Bills hand. Through the scope I could see his limp arm draped over the side of the horse.
Pushing the Marlin back into Inventory, I rose from the ground and looked at Silas. “You take the left and I’ll take the right?” I offered.
Silas loosened his pistol in its holster and began walking.
“Is it always like this?” I asked the bounty hunter.
“Like what?”
“So
messy.”
Silas tossed the remains of his cigarette onto the ground. “This was pretty bad,” He admitted. “Most times it’s just some guy in a small town saloon or holed up in a shack somewhere in the woods. Someone who thinks moving a few towns away will cover their tracks. Some even try to start their lives over. Bill was a two gold bounty, someone a posse would chase down, not two men.”
“So why did we go after him?”
“Because I thought he was in the Hardash forest, not running roughshod over the patriarch of Silvertown,” Silas laughed suddenly, shaking his head. “The plan was to locate his hideout, collect a few more men to handle his gang, and ambush them.”
We eased around the bullet-ridden horse to discover Blackheart Bill bleeding out. One of my bullets had gone through the horse, through his back and exited his chest. He gave us a bloody grin as we approached with guns drawn.
“There’s a healing potion in the saddle bag under the horse,” the bandit said, spitting out a mouthful of blood. “I’m worth more alive than dead and you don’t want to throw away good money, do ya?”
Silas pulled the hammer back on his gun, pointing it at the outlaw’s head.
“Wait,” Bill said, coughing weakly. “I got a dragon core, a real dragon core. I’ll tell you where to get it.”
“Now where would you get a dragon core?” Silas asked.
“From the Silvertown mines,” Bill rasped. “One of my boys, his brother works the mines and told him that they found dragon bones. That’s when I took the girl and made her daddy my bitch. He’d do anything to get her back.”
Silas pulled the trigger, splattering the outlaws head all over the remains of the horse.
“I’ve heard enough,” He said, holstering his pistol. “He kidnapped the girl and the others, holding them hostage so the Patriarch and other townsfolk wouldn’t interfere with his scheme. Let’s find the girl and get back to town.”
“Damn, Silas. In cold blood,” I said, turning my head from the sight of the gore. This is twice today I’ve seen the inside of a man’s skull. I should be bothered by this, like really bothered, but I’m not. Not really. It’s like there’s a disconnect and the only thing my brain can process is how smooth and efficient Silas was when he pulled the trigger. I can still taste bile in the back of my throat though.
“You want to do that thing of yours? Or you want me to dig his core out?”
“I’ll handle it,” I said, kneeling to touch the man so I could trigger [Disassembly]. “You should go see about the girl, she’s trying to use my Horse to get away and is having a nervous breakdown because he won’t move.”
I asked Horse to mosey around the burning remains of the shack with his new rider and to meet Silas. He sent back an image of him riding in a wagon with me pulling it. I’m guessing that he’s not enthused about being a taxi service.
The girl, Loretta Jurgens, was not in good shape.
The door set into the wall of the canyon covered the dead-end shaft of an abandoned moon silver mine left behind by some prospector. Loretta had been kept in there for the better part of a month and was in hysterics trying to get Horse to move. I'll let Silas deal with her while I process everything.
I collected 2100 credits for the all bandits, another 130 silver that I split with Silas, and of course, all their cores which would need to be turned in for bounties. A dozen pistols and several score of bullets were added to my inventory as well, including several knives and other personal effects that Silas assured me would fetch a few coin at a local pawnshop or general store. And gold teeth.
All that remained now was to locate the loot and leave this hell hole.
[INDEX]
submitted by TheDreadPirateRobots to redditserials [link] [comments]


2024.06.09 22:47 Mayjaplaya I briefly test-drove a 2024 (ND3) Miata

Tl;dr it's a bit better now.
Disclaimer: I've had my '93 for 7 years now and also test-drove every generation, from a 1.8 NA to a MSM with a Flyin' Miata "Li'l' Enchilada" and a 3.63 final drive ratio (very nice) to a friend's mom's slightly tired NC1 to an ND1 soft-top to an ND2 RF.
I was at a Miata meet hosted by a local Mazda dealership. Good times and all that. When the meet was over, I slid in a cheeky "so, could you hook me up with a test drive of the new one?" to the operations manager. I had read all up about the new diff, tuned steering, and bigger infotainment screen, and since I was already there I thought I might as well.
Unfortunately they only had automatics to demo there, but I had already driven the ND1 and ND2 in manual (very nice) and I mainly wanted to examine the steering, so I said yes to an auto anyway. (I gotta get the auto thing out of the way early: man, it just shifts slow even in sport mode and "M" mode. Sometimes pretty slurry too. Like, just a little better than my dad's Infiniti JX35's CVT's fake gears, but it's sadly close. I don't know if the transmission gets better with "learning", but I did one hard charge to the rev limiter after getting warmed up and the auto shifted itself, even at sport mode and "M" mode at the same time, at only 7,100 rpm. Another letdown. I get if you've got a disability or leg pain you have no choice, but it is just unsatisfying.) Got a GS-P a.k.a. the Club, in soft-top. No BBS/Brembo/Recaro package.
Now, this wasn't a proper "you're on your own for 24 hours or more" kind of test to really get the full ownership experience, but at least the salesperson-prescribed route had some twisties/hills/sweepers to kinda-sorta throw the Miata into.
Just wheeling it around the parking lot the steering felt better. I can't properly judge how well the "reduced friction" Dave Coleman talked about really came through but yeah. Felt better weighting up in corners and making small off-center corrections as well. I'd rate it above some older EPS systems like the S2000, and above some of the "weird" hydraulic systems like the VA WRX STI, both of which I've also tested. The ND1's was so light and numb, I accidentally banged my arms together just turning it out of the lot the first time. It was shocking. The only thing that was weird was that 3-4 times, when tracking mostly straight, the wheel would shimmy weirdly and I wasn't really sure it properly translated the texture of the road, or if I hit something that actually warranted that kind of steering feedback. It made me question if the steering was trying to give me "fake feel". I'm no pro test/race car driver, that's just what I felt.
Obviously, I couldn't chuck it hard enough to test the diff changes, and auto ND3s I don't think get an LSD at all anyway. The suspension was still soft enough to make me feel something even far below the limit, which I guess is "useful" in its own way. My NA's got the Gen 1 Xida Club Sports on 700/400 springs and the Flyin' Miata sway bars, so the "fun roly-polyness" is long gone from mine.
Not really much to say about the infotainment screen other than the smaller bezels are nice, the rear-view camera doesn't even come close to filling the screen (only mildly infuriating), and I like how they pull album art for your music through Gracenote, since I am a luddite who still downloads all his music, and sometimes I can't effort to tag a proper album art to each and every track, leaving either nothing at all or a crappy "bootleg compilation" picture. That was already a feature since the ND1, of course.
Bonus: at another car meet about a month ago, one of my acquaintances got a used "OG" (F87, non-Competition, non-CS) M2. Immediately I remembered the internet chatter about the driver's seat being crooked from the steering wheel so I asked him if I could sit in it. I could tell in 2 seconds it was off. Immediately I wanted to jump back into my Miata to cleanse my brain. It was that disconcerting.
submitted by Mayjaplaya to Miata [link] [comments]


2024.06.09 22:38 TempusCarpe The Confirmed Hoax Fallacy

The Confirmed Hoax Fallacy
The Confirmed Hoax Fallacy An Old Argument Raises Its Ignorant Head Yet Again TEMPORAL RECON JUN 8
I was recently invited to write an essay by someone who I respect greatly in their own personal search for truth. He asked that, while an update to Conviction of a Time Traveler is not necessarily in the offing, he did wonder if I might be amenable to a friendly reminder of the evidence provided in COATT nearly a decade ago now.
What spurred his request was that he had noticed recently that several people online had been echoing the ‘confirmed hoax’ trope when discussions would might around to the John Titor series of posts which occurred online back in 2000/2001.
His noticing of this false argument was nothing new; I had also noticed it crop up from time to time over the last 20 years. I hold the ‘confirmed hoax’ argument in special and particular disdain. Why?
Primarily because evidence exists and was provided in Conviction of a Time Traveler in 2009 that Titor was legitimate and, ironically enough, was read by many of the so-called experts espousing the ‘confirmed hoax’ lie. So when these fake experts tell you that the Titor story was a ‘confirmed hoax,’ they are lying to you.
Conviction of a Time Traveler provided new and original evidence that has never, to date, been debunked since its publication; a full 14 years. The evidence provided (which many of these lazy forum participants are aware of) pointed to one, inexorable and inescapable conclusion: Titor was legit. But this evidence, while never disproven, is always ignored. Why is that? We’ll put a pin in that

Pledge your support
Ironically, not only has the evidence documented in Conviction of a Time Traveler never been debunked, but it has also even been plagiarized by lazy authors who can’t be bothered to do original research or, lacking the intellectual horsepower necessary to do even that, fail to provide appropriate attribution to their source material.
So what of this, ‘Confirmed Hoax’ claim? Is it true? HAS the John Titor episode actually been ‘confirmed’ as a hoax?
When someone in a position of pretend authority declares from their cardboard pedestal that the John Titor story is a ‘Confirmed Hoax,’ have you ever noticed they never provide the person who did the confirming?
“Confirmed hoax?” ‘Confirmed’ by whom, pray tell?
When the term ‘Confirmed Hoax’ is used, what imagery comes to mind? I dare say it implies that some sort of shadowy group of learned scholars sat around a big wooden table, carefully assessed and addressed the claims. All the evidence and counter-arguments were carefully measured while hidden away in some stone castle somewhere until a white puff of smoke curls over its stone-tiled rooftops, declaring to the world once and for all,
“Our confirmation is complete. John Titor was a hoax!”
Bullshit.
Here’s the dirty little secret of the ‘Confirmed Hoax’ statements: they are actually shorthand for,
“I don’t have the intellectual capacity to argue in favor or against, so in order to come off like some sort of authority and maintain my fake position of authority, I’ll just take the safest position and simply declare that the Titor story is a hoax, that it was ‘confirmed’ and let’s please just move on to some other topic.”
‘Confirmed Hoax,’ is a coward’s gambit, a bet, that there won’t be anyone to come along to rock the boat and topple these posers off their flimsy stage of pretend authority.
This was the environment I walked into when I first published Conviction of a Time Traveler in 2010, and apparently, it hasn’t changed in 15 years.
When I first posted on Paranormalis (IIRC) announcing that I had written a book that documented the evidence in favor of Titor’s veracity, the then-reigning Titor authority (‘Darby’) haughtily pronounced, “Present your evidence and we’ll discuss it.”
Share
It was in that moment that I chose a path that nobody before me had ever embarked upon. I said, “No.”
Nobody had ever said ‘no’ before. There are pages and pages of forum posts by people before me who discovered some of the same bits and pieces that I discovered that pointed to Titor’s truth. And they were excited to show what they had discovered! And, owing to their excitement, and unfortunately, their naivete, they excitedly shared their evidence, wrongfully believing that the forums’ leadership was interested in getting to the bottom of the Titor episode.
Little did they suspect that ‘Darby’ and others were acting as gatekeepers of truth, whose sole purpose was to establish and maintain a lid on the narrative that was the John Titor episode. He, and his ilk gaslighted and bullied these poor naifs into silence by using their fake authority to debunk and explain away the very real evidence they had discovered.
That is, until COATT was published.
Unfortunately for these enemies of Truth, the internet is forever. In my research leading up to the publication of Conviction of a Time Traveler, I had the benefit of not only studying Titor’s posts, but also all the follow-on discussions after their departure.
I reviewed literally years of online forum content and, as I did so, I made a very curious observation: in all the years of discussion after Titor departed, not one piece of evidence ever (ever) caused ‘Darby’ or any of the other fake authorities to question their ‘it’s a hoax!’ position. They NEVER saw a piece of evidence that they didn’t dismiss, mock, ignore or explain away with contortions of logic that would make Wetzel’s Pretzels blush. This is in stark contrast to how someone who was truly in search of truth would act.
If ‘Darby’ and the others truly were curious, isn’t this a little odd? Really? Not ONE piece of evidence ever caused ‘Darby’ to pause and say, “hmm, that’s interesting
”
Not once, ever.
And there are years of forum posts to confirm this.
So, when Darby commanded from his perch of fake authority that I ‘present my evidence so that we might discuss it’ I laughed in his face [paraphrasing],
“No. A real discussion of the evidence hasn’t occurred here for years, and I do not recognize your so-called position as some sort of ‘expert’ on the Titor story. LITERALLY EVERYTHING there is to learn, or study, is published in the Titor posts for all to read. You hold no special knowledge, no special position, no special nothing. I do not submit to your fake authority. You want to learn about Titor, read the book.”
Or words to that effect, anyway

In the end, the evidence provided in COATT was so unassailable and the argument so solid that ‘Darby’ and his ilk suddenly became more and more quiet as they slowly realized I wasn’t going to wilt under their “authoritay.” Eventually, they slinked away with their rhetorical tails tucked.
But this was not the end of the story! Because ‘time travel’ had become quite the pet interest of mine (owing to the further evidence I discovered after publication), that I continued to post online in various discussion forums. I even wrote numerous essays on a variety of topics, all spurred on by the ‘time travel’ question and all its implications.
Fast Forward Fast forwarding to today, we’re back at the ‘confirmed hoax’ argument again. What was once offered up (“HOAX!”) by Darby and others, is now cold soup served by the latest crop of fake authorities. And what happens when fake authority utters the ‘Confirmed Hoax’ discussion-brake? The same thing that happened a decade ago: the earnest neophyte shrugs their shoulders secure in the false belief that others smarter than they have studied the topic and arrived at some irrefutable conclusion; no further discussion necessary (or allowed). They have no idea just how close they came to uncovering something truly fantastic, had they only relied on their own judgment instead of the know-nothing proclamations of others.
Pledge your support
Which brings me to why I wrote COATT in the first place. Instead of simply doing my research and arriving at my own (private) conclusion, I realized that too many people were believing fake authority and ignoring Titor’s warnings about our future. Once I realized that Titor was legitimate (caveated, of course), how could I NOT share my findings? The stakes were simply too high.
IF what Titor said were true 24 years ago, that the world was heading for an upending change in the status quo, and that many people would die as a result of it, how could I remain silent and not inform others that his warnings were something to be listened to? Perhaps people with ears to hear might take heed and make the appropriate preparations. I know I did.
But, as my friend has informed me, it appears that the fake experts have reared their ugly and useless heads once again telling us that there is ‘nothing to the Titor story’ and that it is a “confirmed hoax.”
THIS was the reason that I was recently asked to provide my evidence once again. And THIS is the reason this essay is dragging on. These pretenders to authority are like roaches; as soon as the exterminator leaves, they come out of the woodwork intent on dismantling the Truth once again. God’s work never ends, it seems, even with a 99% success rate

So, now that we’ve got all THAT out of the way, and as a sort of transition, I’d like to bring you up to speed on what I’ve been up to since I published Conviction of a Time Traveler in 2010.
To be perfectly frank, after COATT’s publication, I thought I was done with the Titor story; I had said my piece and was perfectly willing to move on with my life and prepare for the event that causes the change in the status quo. But the annoying fact was that the Titor story itself didn’t end with the cessation of Titor’s posts in 2001.
As new evidence appeared in the months and years following publication, like dog shit on my shoe that I can’t scrape off, I could never cleanly cleave myself from the Titor story. Not that I wanted to, mind you, it is a fascinating topic, regardless of your opinion.
But what surprised me the most was that new evidence continued to appear, year after year. And, as more evidence appeared, my curiosity was consistently kept piqued and on alert. Trust me, it is exhausting.
To give you a sense of what I discovered, I can tell you that your experts are wrong and that ‘time travel’ is neither novel nor unusual; we are very literally awash in ‘time travelers.’ My research suggests that ‘time machines’ have been present in our past going as far back as 850AD. But I digress.
Share
Suffice it to say that the Titor rabbit hole is but one example of a massively large group of programs from an unknown number of organizations from across time. The ‘time travel’ question runs much deeper (and much farther back in time) and crosses over into more (so-called) esoteric topics than anyone gives it credit for. As I said, it’s exhausting.
My whole point here is that, even after I published in 2009, my curiosity in the topic (and its implications of yet larger vistas) did not wane. And, because of this continued and unabating curiosity, I discovered yet more evidence, crafted more theories and came to more conclusions.
A philosopher once described the acquisition of new information as an ever-expanding circle surrounding the man; a horizon where known and unknown meet where new answers only beget new questions which push the circle farther and farther out. This has been my experience over the last 15 years re the Titor narrative and the larger ‘time travel’ question. How could it be otherwise?
Unfortunately for you, you are being convinced by fools that the Titor episode is a ‘Confirmed Hoax.’ You haven’t even made the leap to the possibility that ‘time travel’ is even possible. How can you explore the implications of ‘time travel’ when you can’t even consider its reality, a fundamental starting point? I have a very strong (ehem) conviction that our collective naĂŻvetĂ© on the subject will be violently revoked in the very near ‘future.’
The Two Camps, The Two Mistakes During my research, I observed that within the Titor commentariat there are two basic camps: the Debunkers and the True Believers.
The Debunking camp will provide any contortion of logic to maintain the ‘Titor was a hoax’ narrative.
The True Believers, on the other hand, will believe any contortion of logic that maintains their belief in The Gospel of John.
What if I told you both camps were wrong?
Now, the debunking camp will tell you that Titor must be a hoax because his predictions didn’t come true. Oh, well
his predictions didn’t come true? I guess we’re done then? Obviously, his whole purpose for posting was to make predictions like some Magic Eight Ball, right? And if those don’t pan out, well, ‘CONFIRMED HOAX!’
Get the Book
On the other side of that coin, the True Believers out there, who never saw a confirmation bias they didn’t love, will tell you that Titor’s predictions didn’t come true because he changed the future. This of course is a recipe for explaining away literally any detracting evidence thus making Titor true no matter any evidence to the contrary.
Let’s take the True Believers first:
The concept of Divergence, while a handy explanation, does not/cannot explain all differences in histories away. In fact, were what Titor said was true (remember, we are True Believers for the moment and are taking Titor’s words as gospel) he absolutely must take measures to minimize divergence as much as possible and NOT allow it to span wildly. Otherwise, the entire power of the ‘time machine’ is rendered moot. I accept that Divergence is likely a real measurement necessary for the efficient execution of ‘time travel’ missions, but it should, by no means, be the magic skeleton key to explain away every question.
In fact, while divergence is very likely a real ‘thing’ or artifact or measurement of difference between world lines, the Truth is that divergence must absolutely be kept to a minimum to make any practical use of the gravity engine sitting in the back seat of your old blue Geo Metro.
So, no. Divergence cannot be the handy tool we need to contort ourselves into believing, as much as we might like to.
Now for the debunkers:
The debunkers have a variety of options available to them to argue that Titor was a ‘confirmed hoax.’ Regardless, these arguments typically boil down to two primary classes:
He has special training or knowledge, and/or
He’s just a lucky guesser.
Unfortunately for the debunkers (and those who listen to them), these explanations make a very serious error: that predictions are a relevant metric to judge Titor’s truth at all. They are not.
Serious question: Why should a ‘time traveler’ be subject to the same metrics that a psychic is to determine if his claims of ‘time travel’ are true?
The point here is that you can’t compare a horse to a whale and complain that the horse can’t swim. They are two completely different animals, and the same goes for ‘time travelers’ and psychics or tarot readers or any other domain whose reputation is dependent on the true-ness of the information they provide. Comparing Titor’s predictions to actual, experienced history is also an imperfect and inappropriate metric if one is to objectively assess Titor from a blank slate starting point. This points to a much deeper insight into the true purpose of the Titor posts, but that’s for a different day.
So, because of both these problems, any real researcher worth their salt would have to find some other way to determine the truth/falsity of the Titor narrative.
Remember, when first approaching the Titor question as an objective investigator, Titor is both equally a hoax and legitimate. Imagine Schrodinger’s cat meets Columbo

I’ll give you this observation for free, just to get your juices flowing:
Did you notice that absolutely none of John’s predictions (event + date) came true, but all his statements concerning conditions about our future did?
Don’t you find this interesting? Or hadn’t you noticed, too blinded by the bright and shiny, attention-grabbing predictions of nuclear war?
But I am getting ahead of myself; we still haven’t provided the evidence that it’s simply more likely that Titor was an actual time traveler than some ‘hoaxer genius.’ And so we finally get to the whole point of this essay in the first place, a reminder and summary of the evidence first provided in Conviction of a Time Traveler all the way back in those halcyon days of 2010:
  1. Wireless Internet: Titor correctly predicted the advent of wireless internet when we were still using dial-up modems and America Online. Cable internet connections had only just been introduced.
“My closest friend raises horses and another works for a company that maintains “wireless” Internet nodes.”
– J. Titor, Nov 7, 2000
  1. YouTube becoming like ‘live theatre’: Titor correctly predicted the social evolution of YouTube and the decentralization of entertainment away from Hollywood evolving from short videos of grannies and cute kittens on Youtube to a sort of “live theatre” where actual shows would be presented by literally anyone, online, in a world that hadn’t even seen streaming services or video sharing services such as Rumble, etc.
“Yes, there is an entertainment industry. Again, it is very decentralized. The technology to express yourself with video is so readily available that many people do it all by themselves or in small groups. Much of the distribution is over the web. I would compare it theater here.”
-J. Titor
  1. IBM 5100 special capabilities: The statement that kicked everything off. Titor correctly identified the secret capabilities of the very first desktop computer manufactured by IBM in the 1970’s. These capabilities were utterly unknown and unacknowledged until Titor’s appearance in 2000. Interestingly, using this information, I was able to determine the most likely candidate of Titor’s grandfather which, upon this identification, also explained why Titor had to go all the way back to 1975 to pick up a copy of the 5100 and not 1985, 1995, or ‘elsewhen.’
“I was “sent” to get an IBM computer system called the 5100. It was one the first portable computers made and it has the ability to read the older IBM programming languages in addition to APL and Basic.”
– J. Titor, Nov 15, 2000
  1. VOIP: Titor correctly predicted the development of phone calls being run across the internet, again, in a time where downloading a picture over dial-up took minutes.
“Many people use the Internet for communication and entertainment. I would say that affects our speech. We type very fast.”
– J. Titor, Feb 15, 2001
  1. Soldier’s Winter Poem: Titor correctly predicted the poem, by name, “A Soldier’s Winter” and its topic. There is more to this particular prediction and statement about “A Soldier’s Winter“ than meets the eye, however.
“A Soldier’s Winter.”
-J. Titor, Feb 21, 2001
  1. Second gulf war: Titor correctly predicted a second incursion into Iraq by allied forces. There is also more to this statement by Titor as well. But that’s a little advanced for right now.
“Are you really surprised to find out that Iraq has nukes now or is that just BS to whip everyone up into accepting the next war?”
-J. Titor, Feb 25, 2001
  1. WMD and ‘hype’: Titor correctly predicted that the WMD story was hype and not to be believed (also, there is more to this statement than is visible on the surface). This statement’s purpose is closely related to statements #6 and #9.
“Are you really surprised to find out that Iraq has nukes now or is that just BS to whip everyone up into accepting the next war?”
-J. Titor, Feb 25, 2001
  1. Optical Measurement for atomic clock: A biggie. Titor correctly predicted the development of a new sort of atomic clock and the reasons why it was an improvement over the then-current ‘radio’ method of atomic measurement (more precise).
Specifically, atomic clocks determine the length of a second by measuring the frequency of a particular atom. Cesium, Rhodium, etc. Measuring this frequency is done using something called the “radio method” which makes use of a gas and hitting that gas and atom with a microwave (the ‘radio’ part of the measurement). However, Titor claimed that a new ‘time machine’ had been developed that makes use of an optical means of measuring the atom’s frequency, an improvement. The Optical Frequency Comb was developed after Titor’s departure which enabled the measurement of an atom’s frequency optically, and which also allowed for greater precision in that measurement. Titor’s statement is a 3-fer:
He predicts an optical measurement system for atomic clocks.
He predicts the new system measures oscillation and not some other aspect.
He predicts this new system increases measurement precision and not some other aspect.
“The C206 uses 6 cesium clocks but they use an optical system to check the oscillation frequency. This makes the worldline divergence confidence much higher.”
– J. Titor, Nov 7, 2000
  1. Ginger: The most enigmatic piece of evidence and what originally spurred me to look closer at this ‘confirmed hoax’ in 2010. In the very opening of Titor’s posts in 2000, someone asked three questions to allow Titor to ‘prove’ he was legitimate. Those questions were:
“1. What was the final death count in the recent India earthquake?
  1. What is the "Ginger" (IT) invention?
  2. Who wins the Stanley Cup (Hockey) this year?”
  • M. Kolesnik, Jan 29, 2001
As you see, questions 1 and 3 are of the magic eight ball variety and are wholly inappropriate to assess Titor’s truthfulness. But we’ll extend some grace to Mr. Kolesnik as it was so early on in their discourse. And Titor demurred on answering these two questions anyway. He refused to answer the first question because he claimed he simply didn’t know. And he refused to answer the third question because he felt it to be unfair for someone to earn money using his information (pointing to a larger context of rules by which they operate).
But, the middle question, ‘
what is Ginger
’ did not violate either of those two questions so he acquiesced and answered it. He answered by saying,
“It looks like a sort of motorized scooter. What do you think IT is?”
– J. Titor, Jan 29, 2001
This answer immediately got my attention because, in 2000 when the question was asked, the answer was truly unknown, thus Mr. Kolesnik’s question. However, in 2009 when I was first looking into the Titor narrative, I knew what Ginger was because I remembered it. Hindsight truly was 20/20.
As a bit of background, during 1999 (the exact timing escapes me), a ‘viral’ marketing campaign was underway by an inventor named Dean Kamen. While never revealing what this new product was, the billboards merely asked,
“What is IT?”
or
“What is Ginger?”
That was all they said. It is obvious now, and was obvious even then, that Kamen was attempting to create a buzz for his new invention. Fair enough. It also explains why it was asked of Titor in 2000. Kamen’s ad campaign was working! People were truly wondering.
Now understand, the hype (and I use that term specifically) surrounding the Ginger ad campaign was fairly strong. Kamen predicted that his invention would reinvent how people moved about cities; it would cause their utter redesign and how they were laid out and organized. Big claims, to be sure. So strong in fact that Kamen was able to land a spot on Good Morning America where he finally revealed what his invention was.
In December of 2001, and live on the air, Kamen, with Katie Couric, revealed Ginger to the world. Ginger was none other than the Segway.
And what did Titor say it was?
“A type of motorized scooter”
And Stella says there’s nothing more to learn

Get the Book
Titor’s absolute spot-on declaration of what Kamen’s invention was nearly a year before it was unveiled hit me right between the eyes. Eight years later, I already knew that Ginger was the Segway because I remembered the event.
Here was a maniac on the internet claiming to be a ‘time traveler’ and he correctly ‘guessed’ what Ginger was a mere 2 Âœ hours after it was asked and 11 months before it was officially unveiled?
It was Titor’s statement here that caused me to look deeper (much deeper, in fact) into the Titor narrative and, after exhaustive research and extensive supporting evidence, I concluded that Titor was in fact, legitimate.
Now here’s the truly interesting part of this piece of the Titor saga: you can’t find this statement about Ginger online anywhere anymore. It has been scrubbed from online sources everywhere.
Now, when I first discovered the Titor story, I saw that there appeared to be a couple different versions of the posts and I just, by chance, found a version of the posts with the Ginger reference in it. I saw that some versions had the Ginger reference, and some did not. At the time, I did not know how to understand this. But I do now.
Revisiting Old Theories As I mentioned before, hindsight is 20/20, and that is especially true when discussing ‘time travel’ and ‘time travelers.’ So, it seems oddly appropriate to provide a few examples of updated information that only revealed themselves with the fullness of time after publication.
‘leader’ In Conviction of a Time Traveler, I found the following quote especially interesting:
“The President or “leader” in 2005 I believe tried desperately to be the next Lincoln and hold the country together but many of their policies drove a larger wedge into the Bill of Rights. The President in 2009 was interested only in keeping his/her power base.”
  • J. Titor, Feb 19, 2001
And it wasn’t necessarily the full content of Titor’s statement here, it was those damn quotes around the word ‘leader.’ Why would he put quotes around a word so simple in its definition? In COATT, I surmised that Titor was referring to Obama at the time for a variety of reasons. Namely the very high coincidence factor between facts surrounding Obama and Lincoln. My own belief also was that Titor would not consider Obama as the rightful leader of the United States due to the known problems with his birth certificate, thus making him ineligible for the Presidency. Thus, Titor wrote ‘leader’ with those quotes around it indicating his misgivings.
Of course, here we are 24 years after Titor’s statement and 12 years after I wrote COATT, and I have now come to a different conclusion about the quotation marks around the word ‘leader’. I now surmise that Titor was referring to Biden and not Obama when he wrote that. Because I personally didn’t have a ‘time machine’ at the time, I never could have expected the dementia patient currently ‘in’ the White House and supposedly ‘leading’ the country. For anyone watching, it is patently obvious that Mr. Biden isn’t ‘leading’ anything. So, in the context of this and our current national situation, those quotation marks sure make a hell of a lot more sense now, don’t you think? This reassessment obviously puts a giant bullseye on the 2024-2025 time period for what Titor commented upon in 2000.
So, yes. I have reassessed this particular conclusion since publishing Conviction of a Time Traveler due to the slow passage of time and its equally slow revelation of Truth.
Gates Another interesting comment by Titor had to do with Bill Gates. Recall that in 2000/2001, Bill Gates was ‘merely’ the CEO of Microsoft. He was among the richest men in the world and many news stories of the time commented upon this fact. Almost kind of like Elon Musk’s notoriety in both scope and scale. So, as such, a forum participant named ‘Joe’ asked Titor for any information regarding Bill Gates’ future. Titor’s response?
“This I do know but I won’t discuss.”
-J. Titor, Feb 23, 2001
An interesting, if not completely unhelpful, answer. Wouldn’t you say?
Considering we now know how Gates has morphed from Tech Titan selling mediocre products to Farmland baron, GMO mosquito breeder and mRNA advocate and (alleged) mass murderer in India and elsewhere in the third world, Titor’s statement that he does know about Gates’ future rings true.
In fact, what was also a bit interesting was when someone later pressed him on any information regarding Gates’ future. To which he responded,
Just curious, why is he of such interest?
-J Titor, Mar 5, 2001
Considering what we know now about Gates and his predilections (his ‘wife’ deserted him upon revelation of his visits to Epstein Island), I’m willing to bet that John was naturally curious as to why Gates, of all people, was of such interest to the forum participants that they would ask twice about him. Coincidence? Or did Titor suspect a mole from a different program in the forum? Who knows. His curiosity about their curiosity in Gates is interesting, nothing more.
Conclusion And there you have (some of) it. A summary of some of the evidence documented in Conviction of a Time Traveler written nearly 15 years ago. The evidence contained in that small book has never been debunked or disproven. It has been plagiarized by some and ignored by others. If you were unaware of COATT and are a regular participant in the online discussions about ‘time travel,’ you should ask yourself why the ‘leadership’ on those forums never mention COATT. Curious, don’t you think?
The reason I wrote COATT in the first place was because, after I had done my own research to satiate my own personal curiosity, I realized that some people online were downplaying his posts’ importance in the hopes that they could dissuade people from believing in Titor and the possibility of ‘time travel.’
I saw this dishonesty and decided to fight back against it by merely providing the information I discovered. From my point of view, Titor was warning us about a very severe time in our future that would upend the status quo and was to be a highly dangerous one.
Taken at face value (always a good starting point), Titor’s warnings merited being taken seriously. Had the naysayer’s deceit been left unanswered, how many of you would have failed to prepare for what is just around the corner? You have prepared, haven’t you?
And yes, as is readily obvious to many, those hard times are right around the corner. Looking at Titor’s statements 24 years later and simply looking around at the state of America and the world, do his statements seem so outlandish now?
John’s ‘final’ words to the forum in March of 2001 ring eerily prescient now:
Bring a gas can with you when the car dies on the side of the road.
-J. Titor, Mar 23, 2001
It is my sincerest hope that my small book project (and the essays that followed) spurred you to think twice about the world we live in and take the necessary actions you feel you should to keep you and your family safe for the world’s awakening and rebirth.
As Ever,
Temporal Recon Share
As Ever
submitted by TempusCarpe to JohnTitor [link] [comments]


http://rodzice.org/