Westell configuration page

AskOuija: Get your answers one letter at a time

2016.05.03 00:32 tacobellscannon AskOuija: Get your answers one letter at a time

AskReddit, Ouija-style.
[link]


2013.09.27 19:00 Steam Controller

***It Keeps Getting Better and Better*** The place for all Steam Input supported controllers and Steam Link users. Share innovative configs and tricks, ask for tech support, and read news about everything controller and couch gaming in the Steam ecosystem. Please put aside tribal hardwarfare instincts in discussions regarding controller differences. Everyone has a right to their opinion, and a right to disagree!
[link]


2014.07.25 06:10 Startpages

We are private in protest of the API changes. See: https://www.reddit.com/144d5l4 Come check us out on Kbin here: https://kbin.social/m/startpages
[link]


2024.05.22 00:29 kkacatin X670E Taichi Carrara 3.01

Unable to run my memory at 7600 Mhz (Running FF3D548G7600HC36EDC01 as recommended on the page) on the latest BIOS 3.01. I ran the beta of 3.01 and it runs fine with maybe a little hickup on games initally but goes away after long term. Seems that I might have to go back to 2.10 or settle running on 6000Mhz as that is stable on all three BIOS. I noticed that the timings from the XMP profile suggest 46 46 timing in middle but the RAM itself shows 47 and 47. I manually configure it and it urns fine on 2.10 and Beta 3.01 but not in stable 3.01.
submitted by kkacatin to ASRock [link] [comments]


2024.05.21 22:28 aptninja Warning message: Google Tag code

A warning message recently appeared across the top of our GA4 instance:
“Your Google Tag code isn’t configured correctly, which may soon prevent your property from measuring automatic events. To fix this, place your Google Tag configuration code in the correct location on all pages that measure events.”
We don’t know what is causing this, as there have been no recent changes to our code or Google tag.
Has anyone else experienced this or know what the issue may be?
submitted by aptninja to GoogleAnalytics [link] [comments]


2024.05.21 22:25 Straight-Ad-6389 How to begin at Fine Tuning LLMs

Hi everyone. This is my first Reddit post, so please pardon if I am using some wrong format.
I want to learn about Fine Tuning LLMs such as LLama-2, Gemma models, Llama-3. I have read plenty of medium articles and have been exposed to plenty of new topics such as LoRA, QLoRA, PEFT, etc. I have tried my best to understand them. But while implementing the code by following along the medium articles, I sometimes come across numerous parameters that are initialized without explanation which is overwhelming sometimes. I have also been exposed to Unsloth. I want to know where can I begin from. Should I begin with understanding how to fine-tune small models such as BERT, T5, etc using PyTorch and Transformers library? If you would like to provide some roadmap it would be really helpful. Thank you for your time.
I am attaching an example of the code I struggled to understand. How does one know which parameters are supposed to be used and which not?
model_name = "NousResearch/Llama-2-7b-chat-hf" dataset_name = "mlabonne/guanaco-llama2-1k" new_model = "Llama-2-7b-chat-finetune" # QLoRA parameters lora_r = 64 lora_alpha = 16 lora_dropout = 0.1 #bitsandbytes parameters #activate 4-bit precision base model loading use_4bit = True #compute dtype for 4-bit base models bnb_4bit_compute_dtype = "float16" #quantization type fp4 or nf4 bnb_4bit_quant_type = "nf4" #activate nested quantization for 4 bit base models use_nested_quant = False #training parameters #output dir output_dir = "./results" #no. of training epochs num_train_epochs = 1 fp16 = False bf16 = False per_device_train_batch_size = 4 per_device_eval_batch_size = 4 gradient_accumulation_steps = 1 gradient_checkpointing = True max_grad_norm = 0.3 learning_rate = 2e-4 weight_decay = 0.001 optim = "paged_adamw_32bit" lr_scheduler_type = "cosine" max_steps = -1 warmup_ratio = 0.03 group_by_length = True save_steps = 0 logging_steps = 25 # SFT Parameters # Maximum sequence length to use max_seq_length = None # Pack multiple short examples in the same input sequence to increase efficiency packing = False # Load the entire model on the GPU 0 device_map = {"": 0} # Load dataset (you can process it here) dataset = load_dataset(dataset_name, split="train") # Load tokenizer and model with QLoRA configuration compute_dtype = getattr(torch, bnb_4bit_compute_dtype) bnb_config = BitsAndBytesConfig( load_in_4bit=use_4bit, bnb_4bit_quant_type=bnb_4bit_quant_type, bnb_4bit_compute_dtype=compute_dtype, bnb_4bit_use_double_quant=use_nested_quant, ) # Check GPU compatibility with bfloat16 if compute_dtype == torch.float16 and use_4bit: major, _ = torch.cuda.get_device_capability() if major >= 8: print("=" * 80) print("Your GPU supports bfloat16: accelerate training with bf16=True") print("=" * 80) # Load base model model = AutoModelForCausalLM.from_pretrained( model_name, quantization_config=bnb_config, device_map=device_map ) model.config.use_cache = False model.config.pretraining_tp = 1 # Load LLaMA tokenizer tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True) tokenizer.pad_token = tokenizer.eos_token tokenizer.padding_side = "right" # Fix weird overflow issue with fp16 training # Load LoRA configuration peft_config = LoraConfig( lora_alpha=lora_alpha, lora_dropout=lora_dropout, r=lora_r, bias="none", task_type="CAUSAL_LM", ) # Set training parameters training_arguments = TrainingArguments( output_dir=output_dir, num_train_epochs=num_train_epochs, per_device_train_batch_size=per_device_train_batch_size, gradient_accumulation_steps=gradient_accumulation_steps, optim=optim, save_steps=save_steps, logging_steps=logging_steps, learning_rate=learning_rate, weight_decay=weight_decay, fp16=fp16, bf16=bf16, max_grad_norm=max_grad_norm, max_steps=max_steps, warmup_ratio=warmup_ratio, group_by_length=group_by_length, lr_scheduler_type=lr_scheduler_type, report_to="tensorboard" ) # Set supervised fine-tuning parameters trainer = SFTTrainer( model=model, train_dataset=dataset, peft_config=peft_config, dataset_text_field="text", max_seq_length=max_seq_length, tokenizer=tokenizer, args=training_arguments, packing=packing, ) # Train model trainer.train() 
submitted by Straight-Ad-6389 to deeplearning [link] [comments]


2024.05.21 21:36 fenix0000000 KDE Plasma 6.0.5 RELEASE !

Complete Changelog: Plasma 6.0.5 complete changelog - KDE Community

Bluedevil
Discover
Dr Konqi
Plasma Addons
kglobalacceld
KScreen
kscreenlocker
KWin
libksysguard
libplasma
Plasma Desktop
Plasma SDK
Plasma Systemmonitor
plasma-welcome
Plasma Workspace
polkit-kde-agent-1
Powerdevil
print-manager
System Settings
submitted by fenix0000000 to linux [link] [comments]


2024.05.21 21:18 pingsandchickenwings For Meraki admins out there

I'm sure many of you have now seen the banner at the top of your page, but do not upgrade your Meraki MX devices to version 18.211. Doing so will cause your VLANS to lose communication between them, in odd and unexplainable ways, causing you and your techs to spend hours reviewing every connection and configuration through your stack and through the OSI layers; questioning your sanity and your DNS knowledge until you find that the problems started around the time that your firmware was upgraded automatically by Meraki themselves. Dont ask me how I know this, but I hope it serves as a warning to others.
submitted by pingsandchickenwings to sysadmin [link] [comments]


2024.05.21 20:54 IReturnOfTheMac NetBox with Napalm

Hello all,
I sent this to Netbox's official Slack on their #napalm channel but no one ever commented on it. I am having trouble trying to get the Netbox Napalm plugin working.
It seems to be installed properly, however it isn't pulling information from the device. When I click Status, LLDP, etc. tabs nothing populates. I have also noticed. when I run a GET from a device I.E. api/dcim/devices/171/napalm/?method=get_environment It just pulls up a "Page Not Found" "Page Does Not Exist" error. I have confirmed the device has a Primary IP, is set to Active status, the platform is defined on the device, and the platform has the napalm driver set. The NAPALM arguments in the Web UI for the Platform config is set to just "null" which was defaulted.
If any other config is needed I can get it and post it. Under the configuration.py config, the username and password I am using for the NAPALM config is set for a username and password on the device it is connecting too.
When running a GET /api/dcim/devices/171/ it does work properly as it should, just fyi.
submitted by IReturnOfTheMac to Netbox [link] [comments]


2024.05.21 20:41 RF_IT_Services I have a plugin created. Other plugins in the admin are using it's Title in the Browser's Title Bar and/or Tab List. It's a private plugin so no big deal (now) but curiosity and OCD have me wanting to fix it. Any tips?

My original post is below. This may not be my plugin. It may be wordpress or the cache. I'm using "W3 Total Cache". The thing is, it's set to not cache for logged in users. [20 minutes later]. I've disabled this, that and the other thing and nothing's changing.
I'm going to go ahead and post this.
Maybe it's a server configuration?
Typical LAMP stack. Full access. There's so many possible things that can cause this and I'm just coming back from a 6 year break (ya) so if anyone has recent experience with this I'd appreciate it.
Even if this is a WordPress thing, I'd like to find a way to make it not happen. If this is an ongoing problem, maybe we can start a discussion. I have a lot of experience. I may be rusty but I'm more than happy to help track this down once I get back in the flow here.
In the mean time, any current info would be helpful. I'm tired if you can't tell. I'm not trying to be lazy, just doing a bunch. If you can share you can, if not good luck with your site.
I'll try to stick around here myself to be helpful when people have issues in return so I guess Hello also.
As for the site itself, I won't ever share my sites directly on here.
Thanks.
OP:
It's real simple code to add the menu link.
function REDACTED_setup_menu() { add_menu_page("menu page", "menu text", 'manage_options', "menu-link", 'menu_function'); } 
And that's it.
All normal WordPress admin areas have a normal URL.
Other areas like Google's official plugin, a cache plugin, etc .. they all show the title of my plugin.
Obviously that's not the real code but the point is, it's real simple. Nothing unusual.
Right now this plugin is personal but I may share it in the future so this little bug.
Neve theme.
submitted by RF_IT_Services to Wordpress [link] [comments]


2024.05.21 19:23 Realxt2022 Stressed out

Stressed out
This is a model of Syrotech Wadont Router You can see the full name and other details on it but the problem is like i cant login to the admin page Every time i have to do some configuration i have to visit the office of the ISP I got a laptop and lan too so any solutions?
submitted by Realxt2022 to wifi [link] [comments]


2024.05.21 19:08 Maleficent-Bass-8778 Issues with my new setup

Good day.
Recently I switched to a new configuration:
Processor - AMD Ryzen 7 5700X
GPU - ASUS GeForce RTX 3060 TUF Gaming OC Edition (LHR) 12GB GDDR6 (Samsung)
RAM - 2x8GB Samsung M378A1G43DB0-CPB
Motherboard - GIGABYTE B550M DS3H rev.1.7
PSU - SEASONIC M12II-620 80+ Bronze
Monitor - Dell U2412M
Unfortunately, since then I have been struggling with a number of problems:
Graphic artifacts in Google Chrome (which, however, are not observed in other Chromium-based applications, such as Discord). Sometimes they start appearing very often, sometimes not. Here is the video: https://www.youtube.com/shorts/SstYZ4kW1MY
Strong frame rate drops in YouTube or complete video freezing (even though a certain fragment is buffered) when the browser is open in dual window mode;
Graphics problems without hardware acceleration: in Chrome, when I turn off Hardware Acceleration, as well as in IntelliJ IDEA and Sublime Text, I observe issues with vertical synchronization: when scrolling the page, the top part of the screen does not keep up with the bottom (or vice versa);
The game Banishers: Ghosts of New Eden sometimes refuses to start citing inability to allocate video memory;
Sometimes I experience micro-freezes in several games on fairly simple scenes that were smoothly rendered on a laptop with Intel UHD Graphics 620. A funny thing is that during these spikes the fps counter often goes higher and exceeds the max VSync FPS (for example, the counter shows 63 instead of 60 FPS).
Noteworthy points:
Utilities programming4beginners.com/gpumemtest and github.com/GpuZelenograd/memtest_vulkan did not reveal any issues with video memory;
Issues 2, 3, and 5 (possibly 1) are resolved by starting screen recording through GeForce Experience. Not in the sense that the problems are not visible in the final recording, but in the sense that everything works correctly while the recording is running;
Reinstalling drivers via DDU (Display Driver Uninstaller) did not help;
Replacing RTX 3060 with an old GTX 980Ti did not help; Reinstalling Windows did not help.
What would you recommend doing?
submitted by Maleficent-Bass-8778 to techsupport [link] [comments]


2024.05.21 19:07 upquarkspin Really happy with my Remarkable & Split screen

Really happy with my Remarkable & Split screen
I've been using my Remarkable tablet for a while now, and I have to say it's been a game-changer for my note-taking and reading habits. But, I wanted to take my experience to the next level, and that's where RM-hacks come in.
RM-hacks is a collection of hacks and customizations for the Remarkable tablet, available on GitHub. With these hacks, you can unlock new features, improve performance, and tailor your tablet to your specific needs.
mb1986/rm-hacks: This repository offers a brand new settings page to configure which hacks should be enabled and which should not. It also includes a range of other features and improvements.
https://github.com/mb1986/rm-hacks
submitted by upquarkspin to RemarkableTablet [link] [comments]


2024.05.21 19:00 helpmeoutplease920 App not showing up in emulator?

This is my logcat output, a bit confused on whats going on here:
2024-05-21 12:45:29.368 14444-14444 orkoutgenerator com...mple.bodypartworkoutgenerator I Late-enabling -Xcheck:jni
2024-05-21 12:45:29.489 14444-14444 orkoutgenerator com...mple.bodypartworkoutgenerator I Using CollectorTypeCC GC.
2024-05-21 12:45:29.491 14444-14444 orkoutgenerator com...mple.bodypartworkoutgenerator W Unexpected CPU variant for x86: x86_64.
Known variants: atom, sandybridge, silvermont, goldmont, goldmont-plus, tremont, kabylake, default
2024-05-21 12:45:33.991 14444-14444 Compatibil...geReporter com...mple.bodypartworkoutgenerator D Compat change id reported: 171979766; UID 10190; state: ENABLED
2024-05-21 12:45:33.994 14444-14444 Compatibil...geReporter com...mple.bodypartworkoutgenerator D Compat change id reported: 242716250; UID 10190; state: ENABLED
2024-05-21 12:45:34.527 14444-14444 ziparchive com...mple.bodypartworkoutgenerator W Unable to open '/data/app/~~7Ri2jlni0A4K8y6WxuAD1g==/com.example.bodypartworkoutgenerator-iqXpAxZzmBfP8gj3FijQuA==/base.dm': No such file or directory
2024-05-21 12:45:34.527 14444-14444 ziparchive com...mple.bodypartworkoutgenerator W Unable to open '/data/app/~~7Ri2jlni0A4K8y6WxuAD1g==/com.example.bodypartworkoutgenerator-iqXpAxZzmBfP8gj3FijQuA==/base.dm': No such file or directory
2024-05-21 12:45:35.014 14444-14444 nativeloader com...mple.bodypartworkoutgenerator D Configuring clns-6 for other apk /data/app/~~7Ri2jlni0A4K8y6WxuAD1g==/com.example.bodypartworkoutgenerator-iqXpAxZzmBfP8gj3FijQuA==/base.apk. target_sdk_version=34, uses_libraries=, library_path=/data/app/~~7Ri2jlni0A4K8y6WxuAD1g==/com.example.bodypartworkoutgenerator-iqXpAxZzmBfP8gj3FijQuA==/lib/x86_64, permitted_path=/data:/mnt/expand:/data/use0/com.example.bodypartworkoutgenerator
2024-05-21 12:45:35.031 14444-14444 GraphicsEnvironment com...mple.bodypartworkoutgenerator V Currently set values for:
2024-05-21 12:45:35.031 14444-14444 GraphicsEnvironment com...mple.bodypartworkoutgenerator V angle_gl_driver_selection_pkgs=[]
2024-05-21 12:45:35.032 14444-14444 GraphicsEnvironment com...mple.bodypartworkoutgenerator V angle_gl_driver_selection_values=[]
2024-05-21 12:45:35.033 14444-14444 GraphicsEnvironment com...mple.bodypartworkoutgenerator V ANGLE GameManagerService for com.example.bodypartworkoutgenerator: false
2024-05-21 12:45:35.033 14444-14444 GraphicsEnvironment com...mple.bodypartworkoutgenerator V com.example.bodypartworkoutgenerator is not listed in per-application setting
2024-05-21 12:45:35.033 14444-14444 GraphicsEnvironment com...mple.bodypartworkoutgenerator V Neither updatable production driver nor prerelease driver is supported.
2024-05-21 12:45:35.046 14444-14444 AndroidRuntime com...mple.bodypartworkoutgenerator D Shutting down VM
2024-05-21 12:45:35.053 14444-14444 AndroidRuntime com...mple.bodypartworkoutgenerator E FATAL EXCEPTION: main
Process: com.example.bodypartworkoutgenerator, PID: 14444
java.lang.RuntimeException: Unable to get provider com.google.android.gms.ads.MobileAdsInitProvider: java.lang.IllegalStateException:
******************************************************************************
* Missing application ID. AdMob publishers should follow the instructions *
* here: *
* https://googlemobileadssdk.page.link/admob-android-update-manifest *
* to add a valid App ID inside the AndroidManifest. *
* Google Ad Manager publishers should follow instructions here: *
* https://googlemobileadssdk.page.link/ad-manager-android-update-manifest. *
******************************************************************************
at android.app.ActivityThread.installProvider(ActivityThread.java:7770)
at android.app.ActivityThread.installContentProviders(ActivityThread.java:7276)
at android.app.ActivityThread.handleBindApplication(ActivityThread.java:6983)
at android.app.ActivityThread.-$$Nest$mhandleBindApplication(Unknown Source:0)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2236)
at android.os.Handler.dispatchMessage(Handler.java:106)
at android.os.Looper.loopOnce(Looper.java:205)
at android.os.Looper.loop(Looper.java:294)
at android.app.ActivityThread.main(ActivityThread.java:8177)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:552)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:971)
Caused by: java.lang.IllegalStateException:
******************************************************************************
* Missing application ID. AdMob publishers should follow the instructions *
* here: *
* https://googlemobileadssdk.page.link/admob-android-update-manifest *
* to add a valid App ID inside the AndroidManifest. *
* Google Ad Manager publishers should follow instructions here: *
* https://googlemobileadssdk.page.link/ad-manager-android-update-manifest. *
******************************************************************************
at com.google.android.gms.ads.internal.client.zzek.attachInfo(com.google.android.gms:play-services-ads-lite@@23.1.0:26)
at com.google.android.gms.ads.MobileAdsInitProvider.attachInfo(com.google.android.gms:play-services-ads-lite@@23.1.0:1)
at android.app.ActivityThread.installProvider(ActivityThread.java:7765)
... 11 more
2024-05-21 12:45:35.883 14444-14444 Process com...mple.bodypartworkoutgenerator I Sending signal. PID: 14444 SIG: 9
2024-05-21 12:47:10.642 14530-14530 orkoutgenerator com...mple.bodypartworkoutgenerator I Late-enabling -Xcheck:jni
2024-05-21 12:47:10.711 14530-14530 orkoutgenerator com...mple.bodypartworkoutgenerator I Using CollectorTypeCC GC.
2024-05-21 12:47:10.713 14530-14530 orkoutgenerator com...mple.bodypartworkoutgenerator W Unexpected CPU variant for x86: x86_64.
Known variants: atom, sandybridge, silvermont, goldmont, goldmont-plus, tremont, kabylake, default
2024-05-21 12:47:11.262 14530-14530 re-initialized> com...mple.bodypartworkoutgenerator W type=1400 audit(0.0:99): avc: granted { execute } for path="/data/data/com.example.bodypartworkoutgeneratocode_cache/startup_agents/0b0c1899-agent.so" dev="dm-40" ino=320360 scontext=u:r:untrusted_app:s0:c190,c256,c512,c768 tcontext=u:object_r:app_data_file:s0:c190,c256,c512,c768 tclass=file app=com.example.bodypartworkoutgenerator
2024-05-21 12:47:11.286 14530-14530 orkoutgenerator com...mple.bodypartworkoutgenerator W DexFile /data/data/com.example.bodypartworkoutgeneratocode_cache/.studio/instruments-ac9f170b.jar is in boot class path but is not in a known location
2024-05-21 12:47:11.352 14530-14530 orkoutgenerator com...mple.bodypartworkoutgenerator W Current dex file has more than one class in it. Calling RetransformClasses on this class might fail if no transformations are applied to it!
2024-05-21 12:47:11.359 14530-14530 orkoutgenerator com...mple.bodypartworkoutgenerator W Current dex file has more than one class in it. Calling RetransformClasses on this class might fail if no transformations are applied to it!
2024-05-21 12:47:11.366 14530-14530 orkoutgenerator com...mple.bodypartworkoutgenerator W Redefining intrinsic method java.lang.Thread java.lang.Thread.currentThread(). This may cause the unexpected use of the original definition of java.lang.Thread java.lang.Thread.currentThread()in methods that have already been compiled.
2024-05-21 12:47:11.366 14530-14530 orkoutgenerator com...mple.bodypartworkoutgenerator W Redefining intrinsic method boolean java.lang.Thread.interrupted(). This may cause the unexpected use of the original definition of boolean java.lang.Thread.interrupted()in methods that have already been compiled.
2024-05-21 12:47:11.370 14530-14530 orkoutgenerator com...mple.bodypartworkoutgenerator W Current dex file has more than one class in it. Calling RetransformClasses on this class might fail if no transformations are applied to it!
2024-05-21 12:47:11.382 14530-14530 orkoutgenerator com...mple.bodypartworkoutgenerator W Current dex file has more than one class in it. Calling RetransformClasses on this class might fail if no transformations are applied to it!
2024-05-21 12:47:11.402 14530-14530 orkoutgenerator com...mple.bodypartworkoutgenerator W Current dex file has more than one class in it. Calling RetransformClasses on this class might fail if no transformations are applied to it!
2024-05-21 12:47:11.424 14530-14530 Compatibil...geReporter com...mple.bodypartworkoutgenerator D Compat change id reported: 171979766; UID 10190; state: ENABLED
2024-05-21 12:47:11.426 14530-14530 Compatibil...geReporter com...mple.bodypartworkoutgenerator D Compat change id reported: 242716250; UID 10190; state: ENABLED
2024-05-21 12:47:11.503 14530-14530 ziparchive com...mple.bodypartworkoutgenerator W Unable to open '/data/app/~~7Ri2jlni0A4K8y6WxuAD1g==/com.example.bodypartworkoutgenerator-iqXpAxZzmBfP8gj3FijQuA==/base.dm': No such file or directory
2024-05-21 12:47:11.503 14530-14530 ziparchive com...mple.bodypartworkoutgenerator W Unable to open '/data/app/~~7Ri2jlni0A4K8y6WxuAD1g==/com.example.bodypartworkoutgenerator-iqXpAxZzmBfP8gj3FijQuA==/base.dm': No such file or directory
2024-05-21 12:47:11.940 14530-14530 nativeloader com...mple.bodypartworkoutgenerator D Configuring clns-6 for other apk /data/app/~~7Ri2jlni0A4K8y6WxuAD1g==/com.example.bodypartworkoutgenerator-iqXpAxZzmBfP8gj3FijQuA==/base.apk. target_sdk_version=34, uses_libraries=, library_path=/data/app/~~7Ri2jlni0A4K8y6WxuAD1g==/com.example.bodypartworkoutgenerator-iqXpAxZzmBfP8gj3FijQuA==/lib/x86_64, permitted_path=/data:/mnt/expand:/data/use0/com.example.bodypartworkoutgenerator
2024-05-21 12:47:11.977 14530-14530 GraphicsEnvironment com...mple.bodypartworkoutgenerator V Currently set values for:
2024-05-21 12:47:11.978 14530-14530 GraphicsEnvironment com...mple.bodypartworkoutgenerator V angle_gl_driver_selection_pkgs=[]
2024-05-21 12:47:11.979 14530-14530 GraphicsEnvironment com...mple.bodypartworkoutgenerator V angle_gl_driver_selection_values=[]
2024-05-21 12:47:11.981 14530-14530 GraphicsEnvironment com...mple.bodypartworkoutgenerator V ANGLE GameManagerService for com.example.bodypartworkoutgenerator: false
2024-05-21 12:47:11.981 14530-14530 GraphicsEnvironment com...mple.bodypartworkoutgenerator V com.example.bodypartworkoutgenerator is not listed in per-application setting
2024-05-21 12:47:11.982 14530-14530 GraphicsEnvironment com...mple.bodypartworkoutgenerator V Neither updatable production driver nor prerelease driver is supported.
2024-05-21 12:47:12.012 14530-14530 AndroidRuntime com...mple.bodypartworkoutgenerator D Shutting down VM
2024-05-21 12:47:12.025 14530-14530 AndroidRuntime com...mple.bodypartworkoutgenerator E FATAL EXCEPTION: main
Process: com.example.bodypartworkoutgenerator, PID: 14530
java.lang.RuntimeException: Unable to get provider com.google.android.gms.ads.MobileAdsInitProvider: java.lang.IllegalStateException:
******************************************************************************
* Missing application ID. AdMob publishers should follow the instructions *
* here: *
* https://googlemobileadssdk.page.link/admob-android-update-manifest *
* to add a valid App ID inside the AndroidManifest. *
* Google Ad Manager publishers should follow instructions here: *
* https://googlemobileadssdk.page.link/ad-manager-android-update-manifest. *
******************************************************************************
at android.app.ActivityThread.installProvider(ActivityThread.java:7770)
at android.app.ActivityThread.installContentProviders(ActivityThread.java:7276)
at android.app.ActivityThread.handleBindApplication(ActivityThread.java:6983)
at android.app.ActivityThread.-$$Nest$mhandleBindApplication(Unknown Source:0)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2236)
at android.os.Handler.dispatchMessage(Handler.java:106)
at android.os.Looper.loopOnce(Looper.java:205)
at android.os.Looper.loop(Looper.java:294)
at android.app.ActivityThread.main(ActivityThread.java:8177)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:552)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:971)
Caused by: java.lang.IllegalStateException:
******************************************************************************
* Missing application ID. AdMob publishers should follow the instructions *
* here: *
* https://googlemobileadssdk.page.link/admob-android-update-manifest *
* to add a valid App ID inside the AndroidManifest. *
* Google Ad Manager publishers should follow instructions here: *
* https://googlemobileadssdk.page.link/ad-manager-android-update-manifest. *
******************************************************************************
at com.google.android.gms.ads.internal.client.zzek.attachInfo(com.google.android.gms:play-services-ads-lite@@23.1.0:26)
at com.google.android.gms.ads.MobileAdsInitProvider.attachInfo(com.google.android.gms:play-services-ads-lite@@23.1.0:1)
at android.app.ActivityThread.installProvider(ActivityThread.java:7765)
... 11 more
2024-05-21 12:49:25.826 14587-14587 orkoutgenerator com...mple.bodypartworkoutgenerator I Late-enabling -Xcheck:jni
2024-05-21 12:49:25.871 14587-14587 orkoutgenerator com...mple.bodypartworkoutgenerator I Using CollectorTypeCC GC.
2024-05-21 12:49:25.874 14587-14587 orkoutgenerator com...mple.bodypartworkoutgenerator W Unexpected CPU variant for x86: x86_64.
Known variants: atom, sandybridge, silvermont, goldmont, goldmont-plus, tremont, kabylake, default
2024-05-21 12:49:26.198 14587-14587 orkoutgenerator com...mple.bodypartworkoutgenerator W DexFile /data/data/com.example.bodypartworkoutgeneratocode_cache/.studio/instruments-ac9f170b.jar is in boot class path but is not in a known location
2024-05-21 12:49:26.174 14587-14587 re-initialized> com...mple.bodypartworkoutgenerator W type=1400 audit(0.0:134): avc: granted { execute } for path="/data/data/com.example.bodypartworkoutgeneratocode_cache/startup_agents/0b0c1899-agent.so" dev="dm-40" ino=320360 scontext=u:r:untrusted_app:s0:c190,c256,c512,c768 tcontext=u:object_r:app_data_file:s0:c190,c256,c512,c768 tclass=file app=com.example.bodypartworkoutgenerator
2024-05-21 12:49:26.266 14587-14587 orkoutgenerator com...mple.bodypartworkoutgenerator W Redefining intrinsic method java.lang.Thread java.lang.Thread.currentThread(). This may cause the unexpected use of the original definition of java.lang.Thread java.lang.Thread.currentThread()in methods that have already been compiled.
2024-05-21 12:49:26.266 14587-14587 orkoutgenerator com...mple.bodypartworkoutgenerator W Redefining intrinsic method boolean java.lang.Thread.interrupted(). This may cause the unexpected use of the original definition of boolean java.lang.Thread.interrupted()in methods that have already been compiled.
2024-05-21 12:49:26.278 14587-14587 Compatibil...geReporter com...mple.bodypartworkoutgenerator D Compat change id reported: 171979766; UID 10190; state: ENABLED
2024-05-21 12:49:26.279 14587-14587 Compatibil...geReporter com...mple.bodypartworkoutgenerator D Compat change id reported: 242716250; UID 10190; state: ENABLED
2024-05-21 12:49:26.516 14587-14587 ziparchive com...mple.bodypartworkoutgenerator W Unable to open '/data/app/~~7Ri2jlni0A4K8y6WxuAD1g==/com.example.bodypartworkoutgenerator-iqXpAxZzmBfP8gj3FijQuA==/base.dm': No such file or directory
2024-05-21 12:49:26.517 14587-14587 ziparchive com...mple.bodypartworkoutgenerator W Unable to open '/data/app/~~7Ri2jlni0A4K8y6WxuAD1g==/com.example.bodypartworkoutgenerator-iqXpAxZzmBfP8gj3FijQuA==/base.dm': No such file or directory
2024-05-21 12:49:33.674 14587-14587 nativeloader com...mple.bodypartworkoutgenerator D Configuring clns-6 for other apk /data/app/~~7Ri2jlni0A4K8y6WxuAD1g==/com.example.bodypartworkoutgenerator-iqXpAxZzmBfP8gj3FijQuA==/base.apk. target_sdk_version=34, uses_libraries=, library_path=/data/app/~~7Ri2jlni0A4K8y6WxuAD1g==/com.example.bodypartworkoutgenerator-iqXpAxZzmBfP8gj3FijQuA==/lib/x86_64, permitted_path=/data:/mnt/expand:/data/use0/com.example.bodypartworkoutgenerator
2024-05-21 12:49:33.896 14587-14587 GraphicsEnvironment com...mple.bodypartworkoutgenerator V Currently set values for:
2024-05-21 12:49:33.897 14587-14587 GraphicsEnvironment com...mple.bodypartworkoutgenerator V angle_gl_driver_selection_pkgs=[]
2024-05-21 12:49:33.897 14587-14587 GraphicsEnvironment com...mple.bodypartworkoutgenerator V angle_gl_driver_selection_values=[]
2024-05-21 12:49:33.899 14587-14587 GraphicsEnvironment com...mple.bodypartworkoutgenerator V ANGLE GameManagerService for com.example.bodypartworkoutgenerator: false
2024-05-21 12:49:33.899 14587-14587 GraphicsEnvironment com...mple.bodypartworkoutgenerator V com.example.bodypartworkoutgenerator is not listed in per-application setting
2024-05-21 12:49:33.900 14587-14587 GraphicsEnvironment com...mple.bodypartworkoutgenerator V Neither updatable production driver nor prerelease driver is supported.
2024-05-21 12:49:33.929 14587-14587 AndroidRuntime com...mple.bodypartworkoutgenerator D Shutting down VM
2024-05-21 12:49:33.938 14587-14587 AndroidRuntime com...mple.bodypartworkoutgenerator E FATAL EXCEPTION: main
Process: com.example.bodypartworkoutgenerator, PID: 14587
java.lang.RuntimeException: Unable to get provider com.google.android.gms.ads.MobileAdsInitProvider: java.lang.IllegalStateException:
******************************************************************************
* Missing application ID. AdMob publishers should follow the instructions *
* here: *
* https://googlemobileadssdk.page.link/admob-android-update-manifest *
* to add a valid App ID inside the AndroidManifest. *
* Google Ad Manager publishers should follow instructions here: *
* https://googlemobileadssdk.page.link/ad-manager-android-update-manifest. *
******************************************************************************
at android.app.ActivityThread.installProvider(ActivityThread.java:7770)
at android.app.ActivityThread.installContentProviders(ActivityThread.java:7276)
at android.app.ActivityThread.handleBindApplication(ActivityThread.java:6983)
at android.app.ActivityThread.-$$Nest$mhandleBindApplication(Unknown Source:0)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2236)
at android.os.Handler.dispatchMessage(Handler.java:106)
at android.os.Looper.loopOnce(Looper.java:205)
at android.os.Looper.loop(Looper.java:294)
at android.app.ActivityThread.main(ActivityThread.java:8177)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:552)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:971)
Caused by: java.lang.IllegalStateException:
******************************************************************************
* Missing application ID. AdMob publishers should follow the instructions *
* here: *
* https://googlemobileadssdk.page.link/admob-android-update-manifest *
* to add a valid App ID inside the AndroidManifest. *
* Google Ad Manager publishers should follow instructions here: *
* https://googlemobileadssdk.page.link/ad-manager-android-update-manifest. *
******************************************************************************
at com.google.android.gms.ads.internal.client.zzek.attachInfo(com.google.android.gms:play-services-ads-lite@@23.1.0:26)
at com.google.android.gms.ads.MobileAdsInitProvider.attachInfo(com.google.android.gms:play-services-ads-lite@@23.1.0:1)
at android.app.ActivityThread.installProvider(ActivityThread.java:7765)
... 11 more
2024-05-21 12:49:33.964 14587-14587 Process com...mple.bodypartworkoutgenerator I Sending signal. PID: 14587 SIG: 9
2024-05-21 12:51:47.556 14658-14658 ziparchive com...mple.bodypartworkoutgenerator W Unable to open '/data/app/~~7Ri2jlni0A4K8y6WxuAD1g==/com.example.bodypartworkoutgenerator-iqXpAxZzmBfP8gj3FijQuA==/base.dm': No such file or directory
2024-05-21 12:51:47.556 14658-14658 ziparchive com...mple.bodypartworkoutgenerator W Unable to open '/data/app/~~7Ri2jlni0A4K8y6WxuAD1g==/com.example.bodypartworkoutgenerator-iqXpAxZzmBfP8gj3FijQuA==/base.dm': No such file or directory
2024-05-21 12:51:52.553 14658-14658 nativeloader com...mple.bodypartworkoutgenerator D Configuring clns-6 for other apk /data/app/~~7Ri2jlni0A4K8y6WxuAD1g==/com.example.bodypartworkoutgenerator-iqXpAxZzmBfP8gj3FijQuA==/base.apk. target_sdk_version=34, uses_libraries=, library_path=/data/app/~~7Ri2jlni0A4K8y6WxuAD1g==/com.example.bodypartworkoutgenerator-iqXpAxZzmBfP8gj3FijQuA==/lib/x86_64, permitted_path=/data:/mnt/expand:/data/use0/com.example.bodypartworkoutgenerator
2024-05-21 12:51:52.579 14658-14658 GraphicsEnvironment com...mple.bodypartworkoutgenerator V Currently set values for:
2024-05-21 12:51:52.580 14658-14658 GraphicsEnvironment com...mple.bodypartworkoutgenerator V angle_gl_driver_selection_pkgs=[]
2024-05-21 12:51:52.580 14658-14658 GraphicsEnvironment com...mple.bodypartworkoutgenerator V angle_gl_driver_selection_values=[]
2024-05-21 12:51:52.582 14658-14658 GraphicsEnvironment com...mple.bodypartworkoutgenerator V ANGLE GameManagerService for com.example.bodypartworkoutgenerator: false
2024-05-21 12:51:52.582 14658-14658 GraphicsEnvironment com...mple.bodypartworkoutgenerator V com.example.bodypartworkoutgenerator is not listed in per-application setting
2024-05-21 12:51:52.582 14658-14658 GraphicsEnvironment com...mple.bodypartworkoutgenerator V Neither updatable production driver nor prerelease driver is supported.
2024-05-21 12:51:52.586 14658-14658 ActivityThread com...mple.bodypartworkoutgenerator W Application com.example.bodypartworkoutgenerator is suspending. Debugger needs to resume to continue.
2024-05-21 12:51:52.603 14658-14658 System.out com...mple.bodypartworkoutgenerator I Sending WAIT chunk
2024-05-21 12:51:52.734 14658-14658 System.out com...mple.bodypartworkoutgenerator I Waiting for debugger first packet
2024-05-21 12:51:56.725 14658-14658 System.out com...mple.bodypartworkoutgenerator I Debug.suspendAllAndSentVmStart
2024-05-21 12:52:08.721 14658-14668 orkoutgenerator com...mple.bodypartworkoutgenerator I Background concurrent copying GC freed 8240(456KB) AllocSpace objects, 0(0B) LOS objects, 49% free, 2235KB/4470KB, paused 8.651ms,747us total 2.538s
2024-05-21 12:52:16.526 14658-14658 System.out com...mple.bodypartworkoutgenerator I Debug.suspendAllAndSendVmStart, resumed
2024-05-21 12:52:16.637 14658-14658 AndroidRuntime com...mple.bodypartworkoutgenerator D Shutting down VM
2024-05-21 12:52:16.678 14658-14658 AndroidRuntime com...mple.bodypartworkoutgenerator E FATAL EXCEPTION: main
Process: com.example.bodypartworkoutgenerator, PID: 14658
java.lang.RuntimeException: Unable to get provider com.google.android.gms.ads.MobileAdsInitProvider: java.lang.IllegalStateException:
******************************************************************************
* Missing application ID. AdMob publishers should follow the instructions *
* here: *
* https://googlemobileadssdk.page.link/admob-android-update-manifest *
* to add a valid App ID inside the AndroidManifest. *
* Google Ad Manager publishers should follow instructions here: *
* https://googlemobileadssdk.page.link/ad-manager-android-update-manifest. *
******************************************************************************
at android.app.ActivityThread.installProvider(ActivityThread.java:7770)
at android.app.ActivityThread.installContentProviders(ActivityThread.java:7276)
at android.app.ActivityThread.handleBindApplication(ActivityThread.java:6983)
at android.app.ActivityThread.-$$Nest$mhandleBindApplication(Unknown Source:0)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2236)
at android.os.Handler.dispatchMessage(Handler.java:106)
at android.os.Looper.loopOnce(Looper.java:205)
at android.os.Looper.loop(Looper.java:294)
at android.app.ActivityThread.main(ActivityThread.java:8177)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:552)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:971)
Caused by: java.lang.IllegalStateException:
******************************************************************************
* Missing application ID. AdMob publishers should follow the instructions *
* here: *
* https://googlemobileadssdk.page.link/admob-android-update-manifest *
* to add a valid App ID inside the AndroidManifest. *
* Google Ad Manager publishers should follow instructions here: *
* https://googlemobileadssdk.page.link/ad-manager-android-update-manifest. *
******************************************************************************
at com.google.android.gms.ads.internal.client.zzek.attachInfo(com.google.android.gms:play-services-ads-lite@@23.1.0:26)
at com.google.android.gms.ads.MobileAdsInitProvider.attachInfo(com.google.android.gms:play-services-ads-lite@@23.1.0:1)
at android.app.ActivityThread.installProvider(ActivityThread.java:7765)
... 11 more
2024-05-21 12:52:17.287 14658-14658 Process com...mple.bodypartworkoutgenerator I Sending signal. PID: 14658 SIG: 9
submitted by helpmeoutplease920 to androiddev [link] [comments]


2024.05.21 18:50 oldaccountdoesntwork Consistent BSOD Caused by ntoskrnl.exe that I have been unable to fix

Hi, since about a year ago my computer has suffered from completely random BSODs, usually with memory/driver related BSODs like SYSTEM_SERVICE_EXEMPTION or PAGE_FAULT_NONPAGED_AREA - the actual message is inconsistent. The issue itself isn't caused by any specific task, it's completely random and often happens during web browsing or while the computer is idle. When I pull Blue Screen Viewer, all of the errors point to ntoskrnl.exe.
Since it started I've basically swapped or reconfigured every relevant piece of hardware I can. So far I have:
At this point all I have left to swap would be CPU, MOBO and PSU, all of which are difficult swaps since I don't readily have replacements available. I'm leaning towards the issue either being CPU-related or MOBO related, but I'm not quite sure how to prove that so I can start an RMA process.
Specs below:
Ryzen 5600
MSI MECH AMD 6650XT
32gb Kingston Fury ram (2x16)
1tb Crucial P5 SSD
MSI PRO B550M-VC WIFI Mobo
Seagate Barracuda HDD (D:/ Drive)
Phanteks AMP 750 PSU (A-Tier)
submitted by oldaccountdoesntwork to pcmasterrace [link] [comments]


2024.05.21 18:06 CodingWithFirey Installation stuck on window

I am trying to download Ubuntu on an external SSD. It has 512GB of space and 300MB/S read and 400MB/s write speed, I have very fast internet.
I was watching a tutorial on YouTube on how to do this for which the link is here https://youtu.be/bfWdnCIrcxk?si=GmiN5yhdoJztl21-
I did almost everything he said, I just didn't turn safe boot off cause that seemed sketch for me. While installing this page did hang for some time because the ssd got disconnected from my pc somehow but I restarted my pc and continued installing.
Before anyone says 'try dual booting' or related, I do not find that safe since my family will ask me for help whenever they turn on the pc and I have to go to collage in a few months.
My pc specs (if it helps):- CPU: I5 11th gen GPU: RTX 3060 TI RAM: 16 gb single slot DDR4 Motherboard: I have no clue but I have 4 isb slots in the front and back with a c port and a micro card ssd reader built it, if any1 can find the model pls lmk.
So what should be my next move as it has been stuck on this configuration/installing window for the past 6 hours or more.
submitted by CodingWithFirey to Ubuntu [link] [comments]


2024.05.21 17:10 oldaccountdoesntwork Consistent BSOD Caused by ntoskrnl.exe that I have been unable to fix

Hi, since about a year ago my computer has suffered from completely random BSODs, usually with memory/driver related BSODs like SYSTEM_SERVICE_EXEMPTION or PAGE_FAULT_NONPAGED_AREA - the actual message is inconsistent. The issue itself isn't caused by any specific task, it's completely random and often happens during web browsing or while the computer is idle. When I pull Blue Screen Viewer, all of the errors point to ntoskrnl.exe.
Since it started I've basically swapped or reconfigured every relevant piece of hardware I can. So far I have:
At this point all I have left to swap would be CPU, MOBO and PSU, all of which are difficult swaps since I don't readily have replacements available. I'm leaning towards the issue either being CPU-related or MOBO related, but I'm not quite sure how to prove that so I can start an RMA process.
Specs below:
Ryzen 5600
MSI MECH AMD 6650XT
32gb Kingston Fury ram (2x16)
1tb Crucial P5 SSD
MSI PRO B550M-VC WIFI Mobo
Seagate Barracuda HDD (D:/ Drive)
Phanteks AMP 750 PSU (A-Tier)
submitted by oldaccountdoesntwork to buildapc [link] [comments]


2024.05.21 16:50 crackjack83 Difference in the wording on Canada PR's NOC page and my experience letter.

One is a list of duties as mentioned on Canada PR's NOC website and the other is a list of duties as written on my experience letter. My occupation was that of a video game tester. The wording is rather different as you can see.
On Canada's NOC page the main duties are:
1) Develop and document software testing plans
2) Install software and hardware and configure operating system software in preparation for testing
3) Execute, analyze and document results of software application tests and information and telecommunication systems tests
4) Develop and implement software and information system testing policies, procedures and scripts
5) Identify, report, track and propose solutions to product defects.
And these are the duties on my experience letter:
1) Test Case Execution
2) Bug Reporting Test
3) Case Management
4) Test reporting
I know that exact word-to-word is not expected. In fact, it is recommended that it shouldn't be exactly word-to-word and there should be some differences or paraphrasing. But with such a difference will it be accepted by the immigration officer?
submitted by crackjack83 to ImmigrationCanada [link] [comments]


2024.05.21 16:49 arc_menace Company wants to add Kaseya VSA to all computers. Should I push back?

Hi all.
First off, I want to say that I am not a sysadmin. I am a developer at a smaller tech company with under 100 employees. We do not have an IT system or department at the moment and management has stated they are going to be installing Kaseya VSA (an RMM) onto every company machine to help with monitoring and remote support. I have raised concerns about how these systems can interfere with development as well as personal privacy/security concerns. I stated that I am uncomfortable with any software being installed on a computer I use or that gets connected to my home network that monitors my activity. I am not stupid enough to do anything questionable on a work computer, so it isn't because I'm worried about being caught doing something wrong.
My concerns feel like they have been brushed off and I was told that they will make sure to configure it in a way that doesn't interfere with work or "compromise personal information" (to quote the response).
I am unfamiliar with this software and honestly am having a hard time finding concrete information about its capabilities other than from the product's main page. But I do know better than to take software like this at it's word and just trust that it will not be monitoring activity, web usage or even keylogging. So, I'm wondering if any of you have experience with it and would be able to tell me if I should push back hardeget more developers submitting concerns against it as that actually probably would have some sway in my company.
Thanks in advance.

PS, for those wondering I am writing this on a personal device. Again, I'm not stupid
submitted by arc_menace to sysadmin [link] [comments]


2024.05.21 16:40 Nestledrink Game Ready & Studio Driver 555.85 FAQ/Discussion

Game Ready & Studio Driver 555.85 has been released.

Article Here: https://www.nvidia.com/en-us/geforce/news/f1-24-senuas-saga-hellblade-2-geforce-game-ready-drive
Game Ready Driver Download Link: Link Here
Studio Driver Download Link: Link Here
New feature and fixes in driver 555.85:
Game Ready - This new Game Ready Driver provides the best gaming experience for the latest new games supporting DLSS 3 technology including F1 24, Senua's Saga: Hellblade II, and Serum. Further support for new titles includes the launch of XDefiant which supports NVIDIA Reflex.
Applications - The May NVIDIA Studio Driver provides optimal support for the latest new creative applications and updates including Mozilla Firefox which now supports RTX Video Super Resolution and HDR.
Fixed Gaming Bugs
Fixed General Bugs
Open Issues
Additional Open Issues from GeForce Forums
Driver Downloads and Tools
Driver Download Page: Nvidia Download Page
Latest Game Ready Driver: 555.85 WHQL
Latest Studio Driver: 555.85 WHQL
DDU Download: Source 1 or Source 2
DDU Guide: Guide Here
DDU/WagnardSoft Patreon: Link Here
Documentation: Game Ready Driver 555.85 Release Notes Studio Driver 555.85 Release Notes
NVIDIA Driver Forum for Feedback: Driver 555.85 Forum Link
Submit driver feedback directly to NVIDIA: Link Here
RodroG's Driver Benchmark: TBD
NVIDIA Discord Driver Feedback: Invite Link Here
Having Issues with your driver? Read here!
Before you start - Make sure you Submit Feedback for your Nvidia Driver Issue
There is only one real way for any of these problems to get solved, and that’s if the Driver Team at Nvidia knows what those problems are. So in order for them to know what’s going on it would be good for any users who are having problems with the drivers to Submit Feedback to Nvidia. A guide to the information that is needed to submit feedback can be found here.
Additionally, if you see someone having the same issue you are having in this thread, reply and mention you are having the same issue. The more people that are affected by a particular bug, the higher the priority that bug will receive from NVIDIA!!
Common Troubleshooting Steps
If it still crashes, we have a few other troubleshooting steps but this is fairly involved and you should not do it if you do not feel comfortable. Proceed below at your own risk:
If you are still having issue at this point, visit GeForce Forum for support or contact your manufacturer for RMA.
Common Questions
Bear in mind that people who have no issues tend to not post on Reddit or forums. Unless there is significant coverage about specific driver issue, chances are they are fine. Try it yourself and you can always DDU and reinstall old driver if needed.
Remember, driver codes are extremely complex and there are billions of different possible configurations. The software will not be perfect and there will be issues for some people. For a more comprehensive list of open issues, please take a look at the Release Notes. Again, I encourage folks who installed the driver to post their experience here... good or bad.
Did you know NVIDIA has a Developer Program with 150+ free SDKs, state-of-the-art Deep Learning courses, certification, and access to expert help. Sound interesting? Learn more here.
submitted by Nestledrink to nvidia [link] [comments]


2024.05.21 16:37 Internal_Break_7289 my roblox doesnt work propely

i checked my logs and this is what it said:
2024-05-21T14:08:00.829Z,0.829604,3f68,6 [FLog::Output] Loading AppSettings.xml from C:\Users\apina\AppData\Local\Roblox\Versions\version-d8aa63d3654646d0\AppSettings.xml
2024-05-21T14:08:00.868Z,0.868627,3f68,6,Info [FLog::UpdateController] UpdateController: versionQueryUrl: https://clientsettingscdn.roblox.com/v2/client-version/WindowsPlayer
2024-05-21T14:08:00.868Z,0.868627,3f68,6,Info [FLog::UpdateController] WindowsUpdateController: updaterFullPath: C:\Users\apina\AppData\Local\Roblox\Versions\version-d8aa63d3654646d0\RobloxPlayerInstaller.exe
2024-05-21T14:08:00.869Z,0.869627,2f98,6,Info [FLog::UpdateController] Update thread: started with protStr
2024-05-21T14:08:00.869Z,0.869627,2f98,6,Info [FLog::UpdateController] Checking if updater exists at C:\Users\apina\AppData\Local\Roblox\Versions\version-d8aa63d3654646d0\RobloxPlayerInstaller.exe. Returning true
2024-05-21T14:08:01.107Z,1.107141,2f98,6,Debug [FLog::UpdateController] version response: {"version":"0.625.0.6250509","clientVersionUpload":"version-d8aa63d3654646d0","bootstrapperVersion":"1, 6, 0, 6250509"}
2024-05-21T14:08:01.107Z,1.107141,2f98,6,Info [FLog::UpdateController] Update thread: isUpdateRequired FALSE
2024-05-21T14:08:01.246Z,1.246241,3f68,6 [FLog::Output] Settings Date header was Tue, 21 May 2024 14:07:58 GMT
2024-05-21T14:08:01.246Z,1.246241,3f68,6 [FLog::Output] Settings Date timestamp is 1716300478
2024-05-21T14:08:01.293Z,1.293436,3f68,6 [FLog::ClientRunInfo] RobloxGitHash: d2f995026f4963b40bd37e1eada84a7698834d8f
2024-05-21T14:08:01.294Z,1.294434,3f68,6 [FLog::ClientRunInfo] The base url is http://www.roblox.com/
2024-05-21T14:08:01.294Z,1.294434,3f68,6 [FLog::ClientRunInfo] The channel is production
2024-05-21T14:08:01.319Z,1.319400,3f68,6 [FLog::Output] *******
** Validated reflection database in 7.988976 ms, found 4934 entries with the following skipped: 0 enums, 0 properties, 0 functions, 0 events, 0 callbacks, 0 classes.
*******
2024-05-21T14:08:01.321Z,1.321397,3f68,6 [FLog::Output] setAssetFolder content
2024-05-21T14:08:01.323Z,1.323394,3f68,6 [FLog::Output] setExtraAssetFolder C:/Users\apina\AppData\Local\Roblox\Versions\version-d8aa63d3654646d0\ExtraContent
2024-05-21T14:08:01.324Z,1.324393,3f68,6 [FLog::Output] DUAR is on.
2024-05-21T14:08:01.740Z,1.740090,3f68,6 [FLog::WindowsLuaApp] (Win-AuthToken) loadAuthTokenFromDisk:
2024-05-21T14:08:01.756Z,1.756106,3f68,6 [FLog::LogWin32BTId] LogWin32BTId, App, cookie Native => Engine set RBXEventTrackerV2 as CreateDate=05/17/2024 08:16:06&rbxid=2260091992&browserid=1715786824685022
2024-05-21T14:08:01.756Z,1.756106,3f68,6 [FLog::LogWin32BTId] LogWin32BTId, App, local launch, localBtid is 1715786824685022
2024-05-21T14:08:01.781Z,1.781344,3f68,6 [FLog::WindowsLuaApp] StartupController finished starting: stage = 2, BTID = 1715786824685022, upgradeStatus = 3.
2024-05-21T14:08:01.781Z,1.781344,3f68,6 [FLog::LogWin32BTId] LogWin32BTId, App, after initialize the websiteBTId is -1, and localBtid is 1715786824685022
2024-05-21T14:08:01.781Z,1.781344,3f68,6 [FLog::WindowsLuaApp] (Win-AuthToken) saveAuthTokenToDisk:size:1317.
2024-05-21T14:08:01.781Z,1.781344,3f68,6 [FLog::LogWin32BTId] LogWin32BTId, App, cookie Engine => Native set RBXEventTrackerV2 as CreateDate=05/17/2024 08:16:06&rbxid=2260091992&browserid=1715786824685022
2024-05-21T14:08:02.204Z,2.204281,3f68,6 [FLog::Warning] UserAgentString Mozilla/5.0 (Windows NT 10.0; Win64; x64; Trident/7.0; rv:11.0) like GeckoRoblox/WinInetRobloxApp/0.625.0.6250509 (GlobalDist; RobloxDirectDownload) is set
2024-05-21T14:08:02.204Z,2.204281,3f68,6 [FLog::WindowsLuaApp] (Win-AuthToken) loadAuthTokenFromDisk:
2024-05-21T14:08:02.205Z,2.205284,3f68,6 [FLog::LogWin32BTId] LogWin32BTId, App, cookie Native => Engine set RBXEventTrackerV2 as CreateDate=05/17/2024 08:16:06&rbxid=2260091992&browserid=1715786824685022
2024-05-21T14:08:03.424Z,3.424384,3f68,6 [FLog::WindowsLuaApp] Set WebView linking marshaller
2024-05-21T14:08:03.425Z,3.425377,3f68,6 [FLog::SingleSurfaceApp] initializeWithAppStarter
2024-05-21T14:08:03.425Z,3.425377,3f68,6 [FLog::SingleSurfaceApp] initializeSingleton
2024-05-21T14:08:03.426Z,3.426371,3f68,6 [FLog::Output] Evaluating deferred inferred crashes
2024-05-21T14:08:03.433Z,3.433326,3f68,6 [FLog::SingleSurfaceApp] setStage: (stage:Native)
2024-05-21T14:08:03.433Z,3.433326,3f68,6 [FLog::SingleSurfaceApp] instantiate controllers
2024-05-21T14:08:03.433Z,3.433326,3f68,6 [FLog::SurfaceController] SurfaceController[_:1]::SurfaceController, count: 1
2024-05-21T14:08:03.433Z,3.433326,3f68,6 [FLog::WindowsLuaApp] Launching univeral app in-app
2024-05-21T14:08:03.434Z,3.434320,3f68,6 [FLog::SingleSurfaceApp] initializeLuaAppWithLoggedInUser: (stage:Native).
2024-05-21T14:08:03.434Z,3.434320,3f68,6 [FLog::SingleSurfaceApp] applyLocale
2024-05-21T14:08:03.436Z,3.436307,3f68,100 [FLog::DataModelPatchConfigurer] OTAPollingEnabled set to: false
2024-05-21T14:08:03.436Z,3.436307,3f68,100 [FLog::DataModelPatchConfigurer] [_DataModelPatch] Load configs for user key: app:774642265928349735
2024-05-21T14:08:03.438Z,3.438294,3f68,100 [FLog::DataModelPatchConfigurer] [_DataModelPatch] Retrieving patch
2024-05-21T14:08:03.438Z,3.438294,3f68,100 [FLog::DataModelPatchConfigurer] getCachedPatch DataModelPatchConfig : type=1, assetId=5345954812, assetVersion=8905, maxAppVersion=625, localAssetURI=rbxasset://models/DataModelPatch/DataModelPatch.rbxm
2024-05-21T14:08:03.438Z,3.438294,3f68,100 [FLog::DataModelPatchConfigurer] getCachedPatch : numAttempts=10
2024-05-21T14:08:03.439Z,3.439288,3f68,100 [FLog::DataModelPatchConfigurer] getCachedPatch : contentId=rbxasset://models/DataModelPatch/DataModelPatch.rbxm
2024-05-21T14:08:03.439Z,3.439288,3f68,100 [FLog::DataModelPatchConfigurer] getCachedPatch : get patch from content provider for Model
2024-05-21T14:08:03.439Z,3.439288,3f68,100 [FLog::DataModelPatchConfigurer] deserializeAndVerifyPatch with blake3
2024-05-21T14:08:03.806Z,3.806711,0e6c,6 [FLog::Output] Studio D3D9 GPU: NVIDIA GeForce GTX 980
2024-05-21T14:08:03.806Z,3.806711,0e6c,6 [FLog::Output] Studio D3D9 GPU: Vendor 10de Device 13c0
2024-05-21T14:08:03.806Z,3.806711,0e6c,6 [FLog::Output] Studio D3D9 Driver: nvldumdx.dll 31.0.15.5222
2024-05-21T14:08:04.169Z,4.169836,0e6c,6 [FLog::Output] ESGamePerfMonitor GPU: Vendor 000010de Device 000013c0
2024-05-21T14:08:04.169Z,4.169836,0e6c,6 [FLog::Output] ESGamePerfMonitor GPU: SubSys 111610de Revision 000000a1
2024-05-21T14:08:04.169Z,4.169836,0e6c,6 [FLog::Output] ESGamePerfMonitor GPU: DedicatedVidMem 4237033472 DedicatedSysMem 0 SharedSystemMemory 8556070912
2024-05-21T14:08:04.171Z,4.171831,0e6c,6,Info [FLog::CrashReportLog] added file C:\Users\apina\AppData\Local\Roblox\logs\0.625.0.6250509_20240521T140800Z_Player_01CC2_last.log as attachment 0.625.0.6250509_20240521T140800Z_Player_01CC2_last.log
2024-05-21T14:08:04.216Z,4.216707,46f8,6 [FLog::Output] Info: DataModel Loading rbxasset://places/Mobile.rbxl
2024-05-21T14:08:04.231Z,4.231666,3f68,6 [FLog::SingleSurfaceApp] setStage: (stage:InitializedLuaApp)
2024-05-21T14:08:04.231Z,4.231666,3f68,6 [FLog::SingleSurfaceApp] startLuaApp: (stage:InitializedLuaApp).
2024-05-21T14:08:04.231Z,4.231666,3f68,6 [FLog::SingleSurfaceApp] returnToLuaApp: (stage:InitializedLuaApp).
2024-05-21T14:08:04.231Z,4.231666,3f68,6 [FLog::SingleSurfaceApp] returnToLuaApp: ... disable videoRecorder.
2024-05-21T14:08:04.231Z,4.231666,3f68,6 [FLog::SingleSurfaceApp] returnToLuaAppInternal: ... App has been initialized, returning from game.
2024-05-21T14:08:04.231Z,4.231666,3f68,6 [FLog::SurfaceController] [_:1]::replaceDataModel: (stage:0, window = 0xd0800) [tid:0x29f7d577540]
2024-05-21T14:08:04.495Z,4.495785,46f8,100 [FLog::DataModelPatchConfigurer] [discovery-ota] Load configs for user key: user:2260486916
2024-05-21T14:08:04.496Z,4.496782,46f8,100 [FLog::DataModelPatchConfigurer] [discovery-ota] Retrieving patch
2024-05-21T14:08:04.496Z,4.496782,46f8,100 [FLog::DataModelPatchConfigurer] getCachedPatch DataModelPatchConfig : type=1, assetId=16639814581, assetVersion=145, maxAppVersion=625, localAssetURI=
2024-05-21T14:08:04.817Z,4.817729,46f8,100 [FLog::DataModelPatchConfigurer] [discovery-ota] Update OTA config
2024-05-21T14:08:04.864Z,4.864590,3f68,6 [FLog::Graphics] D3D11 Adapter: NVIDIA GeForce GTX 980
2024-05-21T14:08:04.864Z,4.864590,3f68,6 [FLog::Graphics] D3D11 Adapter: Vendor 10de Device 13c0 VRAM 4040 RAM 8159
2024-05-21T14:08:04.864Z,4.864590,3f68,6 [channel] Caps: ThreadSafe 0 Framebuffer 1 FpFramebuffer 1 Shaders 1 Compute 1 Instancing 1 PerInstanceStream 1 ConstBuffers 1
2024-05-21T14:08:04.864Z,4.864590,3f68,6 [channel] Caps: Framebuffer: MRT 8 MSAA 8 Stencil 1
2024-05-21T14:08:04.864Z,4.864590,3f68,6 [channel] Caps: Framebuffer: Depth16 1 Depth24 1 DepthFloat 1 DepthClamp 1
2024-05-21T14:08:04.864Z,4.864590,3f68,6 [channel] Caps: Border Color 1
2024-05-21T14:08:04.864Z,4.864590,3f68,6 [channel] Caps: Texture: RGB10A2 1 RG11B10F 1 R16I 1
2024-05-21T14:08:04.864Z,4.864590,3f68,6 [channel] Caps: Texture: DXT 1 PVR 0 ETC1 0 ETC2 0 Half 1
2024-05-21T14:08:04.864Z,4.864590,3f68,6 [channel] Caps: Texture: 3D 1 Array 1 Depth 1 MSAA 1 MSAAFP16 0
2024-05-21T14:08:04.864Z,4.864590,3f68,6 [channel] Caps: Texture: NPOT 1 PartialMips 1 CubeMipGen 1 CubeFramebuffer 1
2024-05-21T14:08:04.865Z,4.865587,3f68,6 [channel] Caps: Texture: Size 16384 Units 32 VertexUnits 16
2024-05-21T14:08:04.865Z,4.865587,3f68,6 [channel] Caps: ConstantBufferSize 65536
2024-05-21T14:08:04.865Z,4.865587,3f68,6 [channel] Caps: isAppleGPU 0
2024-05-21T14:08:04.865Z,4.865587,3f68,6 [channel] Caps: 32bIdx 1 Memoryless 0
2024-05-21T14:08:04.865Z,4.865587,3f68,6 [channel] Caps: ColorBGR 0 RTFlip 0 MinusOneToOneDepth 0
2024-05-21T14:08:04.901Z,4.901476,3f68,6 [FLog::Graphics] Video memory size: 2147483648
2024-05-21T14:08:04.967Z,4.967358,3f68,6 [FLog::Graphics] Loaded 848 shaders from pack d3d11 variant default (4507676 bytes)
2024-05-21T14:08:04.967Z,4.967358,3f68,6 [FLog::Graphics] Compiled 597 shaders in 64 ms
2024-05-21T14:08:04.971Z,4.971385,2124,6 [FLog::WindowsLuaApp] Application did receive notification, type(APP_READY, 10), data(PlatformAccountRouter)
2024-05-21T14:08:05.000Z,5.000584,1478,100 [FLog::DataModelPatchConfigurer] [discovery-ota] Update OTA succeeded: {"SchemaVersion":"1","CanaryUserIds":[],"CanaryPercentage":0}
2024-05-21T14:08:05.000Z,5.000584,1478,100 [FLog::DataModelPatchConfigurer] [discovery-ota] Update OTA config not deployed
2024-05-21T14:08:05.027Z,5.027769,0a48,6 [FLog::WindowsLuaApp] Application did receive notification, type(APP_READY, 10), data(Startup)
2024-05-21T14:08:05.033Z,5.033810,0a48,100 [FLog::DataModelPatchConfigurer] [_DataModelPatch] Update OTA config
2024-05-21T14:08:05.038Z,5.038844,3f68,6 [FLog::SurfaceController] SurfaceController::disableVR
2024-05-21T14:08:05.038Z,5.038844,3f68,6 [FLog::SurfaceController] SurfaceController[_:1]::initialize view(0000029F25AAB2A0)
2024-05-21T14:08:05.038Z,5.038844,3f68,6 [FLog::SurfaceController] SurfaceController[_:1]::start dataModel(0000029F1E5424B0)
2024-05-21T14:08:05.038Z,5.038844,3f68,6 [FLog::SurfaceController] SurfaceController::RenderJob[_:1]::RenderJob
2024-05-21T14:08:05.038Z,5.038844,3f68,6 [FLog::SurfaceController] SurfaceController[_:1]::run dataModel(0000029F1E5424B0)
2024-05-21T14:08:05.039Z,5.039851,0a48,6 [FLog::SurfaceController] SurfaceController::RenderJob::stepDataModelJob: No DM yet. Continue...
2024-05-21T14:08:05.039Z,5.039851,3f68,6 [FLog::SingleSurfaceApp] setStage: (stage:LuaApp)
2024-05-21T14:08:05.039Z,5.039851,3f68,6 [FLog::SingleSurfaceApp] userDidLogin
2024-05-21T14:08:05.039Z,5.039851,3f68,6 [FLog::SingleSurfaceApp] applyLocale
2024-05-21T14:08:05.042Z,5.042871,0834,6 [FLog::Output] Begin machine id check
2024-05-21T14:08:05.044Z,5.044885,46f8,6,Info [FLog::CrashReportLog] Set hang detection to: true
2024-05-21T14:08:05.044Z,5.044885,3f68,6 [FLog::SurfaceController] SurfaceController::RenderJob::scheduleRender: No data model. Bind workspace now...
2024-05-21T14:08:05.121Z,5.121855,3f68,6 [FLog::Graphics] LayeredClothingMode updated: LC=1 HSR=1
2024-05-21T14:08:05.121Z,5.121855,3f68,6 [FLog::Graphics] Future is bright shadows
2024-05-21T14:08:05.128Z,5.128837,3f68,6 [FLog::Graphics] SmoothCluster::initSolidTextures()
2024-05-21T14:08:05.129Z,5.129834,3f68,6 [FLog::Graphics] Terrain TextureArray 512x512, arraySize: 36, mip: 10
2024-05-21T14:08:05.135Z,5.135818,3f68,6 [FLog::Graphics] SceneManager: resizing main targets to 808x607
2024-05-21T14:08:05.321Z,5.321296,1478,100 [FLog::DataModelPatchConfigurer] [_DataModelPatch] Update OTA succeeded: {"SchemaVersion":"1","CanaryUserIds":[],"CanaryPercentage":0}
2024-05-21T14:08:05.321Z,5.321296,1478,100 [FLog::DataModelPatchConfigurer] [_DataModelPatch] Update OTA config not deployed
2024-05-21T14:08:05.860Z,5.860782,3f68,6 [FLog::Graphics] SceneManager: resizing main targets to 1920x1009
2024-05-21T14:08:05.869Z,5.869757,0a48,6 [FLog::WindowsLuaApp] Application did receive notification, type(APP_READY, 10), data(Home)
2024-05-21T14:08:05.869Z,5.869757,0a48,6 [FLog::WindowsLuaApp] Application did receive notification, type(APP_READY, 10), data(RootSwitchNavigator)
2024-05-21T14:08:06.025Z,6.025307,46f8,6 [FLog::WindowsLuaApp] Application did receive notification, type(DID_LOG_IN, 28), data({"username":"joonuska8","membershipType":4,"isUnder13":true,"countryCode":"FI","userId":2260486916,"displayName":"JonskuZ10"})
2024-05-21T14:08:06.033Z,6.033284,3f68,6 [FLog::WindowsLuaApp] (Win-AuthToken) saveAuthTokenToDisk:size:1317.
2024-05-21T14:08:06.033Z,6.033284,3f68,6 [FLog::LogWin32BTId] LogWin32BTId, App, cookie Engine => Native set RBXEventTrackerV2 as CreateDate=05/17/2024 08:16:06&rbxid=2260091992&browserid=1715786824685022
2024-05-21T14:08:06.036Z,6.036275,3f68,6 [DFLog::SignalRCoreError] ID: 1 Disconnected - stop() called
2024-05-21T14:08:13.503Z,13.503502,46f8,6 [FLog::WindowsLuaApp] Application did receive notification, type(APP_READY, 10), data(ExperienceDetail)
2024-05-21T14:08:13.863Z,13.863633,1478,12 [DFLog::HttpTraceError] HttpResponse(#209 0000029F37DB3E70) time:154.0ms (net:153.4ms callback:0.0ms timeInRetryQueue:0.0ms)status:403 Forbidden bodySize:145 url:{ "https://games.roblox.com/v1/games/4827815098/social-links/list" } ip:128.116.44.3 external:0 numberOfTimesRetried:0
2024-05-21T14:08:13.864Z,13.864635,2124,6 [FLog::Warning] Warning: HTTP error url:`https://games.roblox.com/v1/games/4827815098/social-links/list\`
2024-05-21T14:08:13.864Z,13.864635,2124,6 [FLog::Warning] Warning: HTTP error code:`403`
2024-05-21T14:08:13.864Z,13.864635,2124,6 [FLog::Warning] Warning: HTTP error body:`{"errors":[{"code":3,"message":"Only users who are over twelve years of age may view social links.","userFacingMessage":"Something went wrong"}]}`
2024-05-21T14:08:13.881Z,13.881659,46f8,6 [FLog::Warning] Warning: Unhandled Promise rejection:
table: 0x346dea18df26c33d
CoreGui.RobloxGui.Modules.LuaApp.Thunks.Games.ApiFetchGameSocialLinks:19
CorePackages.Packages._Index.Rodux.Rodux.makeThunkMiddleware:18
CorePackages.Packages._Index.Rodux.Rodux.makeThunkMiddleware:17
CorePackages.Packages._Index.Rodux.Rodux.Store:116
CoreGui.RobloxGui.Modules.LuaApp.Thunks.Games.FetchGameDetailsPageData:95 function startSecondClassFetchPromises
CoreGui.RobloxGui.Modules.LuaApp.Thunks.Games.FetchGameDetailsPageData:184
CorePackages.Packages._Index.Promise340.Promise340:175 function runExecutor
CorePackages.Packages._Index.Promise340.Promise340:184
2024-05-21T14:08:15.303Z,15.303412,2124,6 [FLog::WindowsLuaApp] Application did receive notification, type(APP_READY, 10), data(GenericWebPage)
2024-05-21T14:08:15.364Z,15.364557,385c,6 [FLog::WindowsLuaApp] WebProtocol OpenBrowser
2024-05-21T14:08:19.149Z,19.149271,3f68,6 [FLog::SingleSurfaceApp] launchUGCGame: (stage:LuaApp).
2024-05-21T14:08:19.149Z,19.149271,3f68,6 [FLog::SingleSurfaceApp] launchUGCGameInternal
2024-05-21T14:08:19.150Z,19.150272,3f68,6 [FLog::SingleSurfaceApp] applyLocale
2024-05-21T14:08:19.155Z,19.155279,3f68,100 [FLog::DataModelPatchConfigurer] [_DataModelPatch] Retrieving patch
2024-05-21T14:08:19.155Z,19.155279,3f68,100 [FLog::DataModelPatchConfigurer] getCachedPatch DataModelPatchConfig : type=1, assetId=5345954812, assetVersion=8905, maxAppVersion=625, localAssetURI=rbxasset://models/DataModelPatch/DataModelPatch.rbxm
2024-05-21T14:08:19.155Z,19.155279,3f68,100 [FLog::DataModelPatchConfigurer] getCachedPatch : numAttempts=10
2024-05-21T14:08:19.155Z,19.155279,3f68,100 [FLog::DataModelPatchConfigurer] getCachedPatch : contentId=rbxasset://models/DataModelPatch/DataModelPatch.rbxm
2024-05-21T14:08:19.155Z,19.155279,3f68,100 [FLog::DataModelPatchConfigurer] getCachedPatch : get patch from content provider for Model
2024-05-21T14:08:19.156Z,19.156281,3f68,100 [FLog::DataModelPatchConfigurer] deserializeAndVerifyPatch with blake3
2024-05-21T14:08:19.161Z,19.161741,2124,6 [FLog::WindowsLuaApp] Application did receive notification, type(APP_READY, 10), data(ExperienceDetail)
2024-05-21T14:08:19.627Z,19.627350,3f68,6,Info [FLog::Audio] OutputDevice 0: Kaiuttimet (Razer Kraken V3 X) [USB] 48000/2
2024-05-21T14:08:19.652Z,19.652264,3f68,6 [FLog::Audio] InputDevice 0: Microphone (Razer Kraken V3 X)({{7a43ddc8-ecbf-4f13-9e9dd1d28a8b15a1}}) 48000/2/4
2024-05-21T14:08:19.652Z,19.652264,3f68,6 [FLog::Audio] InputDevice 1: Mikrofoni (Steam Streaming Microphone)({{15617781-f46e-4b6d-9ebb182fafecb69e}}) 44100/1/4
2024-05-21T14:08:19.669Z,19.669367,3f68,6 [FLog::VIPTeleport] new DM, after gameLoadedSignal connect
2024-05-21T14:08:19.676Z,19.676414,3f68,6 [FLog::UGCGameController] UGCGameController, initialized DataModel(0000029F38921970)
2024-05-21T14:08:19.676Z,19.676414,3f68,6 [FLog::GameJoinUtil] GameJoinUtil::joinGame
2024-05-21T14:08:19.677Z,19.677422,3f68,6 [FLog::GameJoinUtil] GameJoinUtil::joinGamePostPrivateServer: URL: https://gamejoin.roblox.com/v1/join-private-game BODY: {"placeId":13928941253,"gameJoinAttemptId":"4809a4e1-5e03-4d11-8214-9499d0958a19","accessCode":"a7d6eee6-4293-4665-9a3a-ff3040b2dddc"}
2024-05-21T14:08:19.677Z,19.677422,385c,6 [FLog::SurfaceController] SurfaceController::enableVR
2024-05-21T14:08:19.677Z,19.677422,3f68,6 [FLog::GameJoinUtil] GameJoinUtil::makePlaceLauncherRequest: requestCount: 0, url: https://gamejoin.roblox.com/v1/join-private-game.
2024-05-21T14:08:19.677Z,19.677422,3f68,6 [FLog::GameJoinUtil] Delaying request by 0.00 seconds
2024-05-21T14:08:19.678Z,19.678429,3f68,6 [FLog::SurfaceController] [_:1]::replaceDataModel: (stage:3, window = 0xd0800) [tid:0x29f7d577540]
2024-05-21T14:08:19.678Z,19.678429,3f68,6 [FLog::SurfaceController] SurfaceController[_:1]::pause dataModel(0000029F1E5424B0), view(0000029F25AAB2A0), destroyView:0.
2024-05-21T14:08:19.678Z,19.678429,3f68,6 [FLog::SurfaceController] stop
2024-05-21T14:08:19.678Z,19.678429,3f68,6 [FLog::SurfaceController] drainRenderingJobs
2024-05-21T14:08:19.680Z,19.680443,3f68,6 [FLog::SurfaceController] SurfaceController::RenderJob[_:1]::~RenderJob
2024-05-21T14:08:19.696Z,19.696554,3f68,6 [FLog::SurfaceController] SurfaceController[_:1]::start dataModel(0000029F38921970)
2024-05-21T14:08:19.696Z,19.696554,3f68,6 [FLog::SurfaceController] SurfaceController::RenderJob[_:2]::RenderJob
2024-05-21T14:08:19.696Z,19.696554,3f68,6 [FLog::SurfaceController] SurfaceController[_:1]::run dataModel(0000029F38921970)
2024-05-21T14:08:19.696Z,19.696554,3f68,6 [FLog::SingleSurfaceApp] setStage: (stage:UGCGame)
2024-05-21T14:08:19.758Z,19.758978,385c,6 [FLog::UGCGameController] Game Scripts are loaded
2024-05-21T14:08:19.758Z,19.758978,385c,6 [FLog::SurfaceController] SurfaceController::RenderJob::stepDataModelJob: No DM yet. Continue...
2024-05-21T14:08:19.759Z,19.759975,3f68,6 [FLog::SurfaceController] SurfaceController::RenderJob::scheduleRender: No data model. Bind workspace now...
2024-05-21T14:08:20.140Z,20.140045,2124,6 [FLog::GameJoinUtil] GameJoinUtil::makePlaceLauncherRequest, response:
{"jobId":"c5785430-a54d-462f-9d21-f12d254df339","status":2,"statusData":null,"joinScriptUrl":"https://assetgame.roblox.com/Game/Join.ashx?ticketVersion=2&ticket={\\"UserId\\"%3a2260486916%2c\\"UserName\\"%3a\\"joonuska8\\"%2c\\"DisplayName\\"%3a\\"JonskuZ10\\"%2c\\"CharacterFetchUrl\\"%3a\\"https%3a%2f%2fapi.roblox.com%2fv1.1%2favatar-fetch%2f%3fplaceId%3d13928941253%26userId%3d2260486916\\"%2c\\"GameId\\"%3a\\"c5785430-a54d-462f-9d21-f12d254df339\\"%2c\\"PlaceId\\"%3a13928941253%2c\\"UniverseId\\"%3a4827815098%2c\\"ServerId\\"%3a1047938%2c\\"ServerPort\\"%3a60803%2c\\"IsTeleport\\"%3afalse%2c\\"FollowUserId\\"%3anull%2c\\"TimeStamp\\"%3a\\"05%2f21%2f2024+14%3a08%3a17\\"%2c\\"CharacterAppearanceId\\"%3a2260486916%2c\\"AlternateName\\"%3anull%2c\\"JoinTypeId\\"%3a4%2c\\"MatchmakingDecisionId\\"%3anull%2c\\"GameJoinMetadata\\"%3a{\\"JoinSource\\"%3a0%2c\\"RequestType\\"%3a1%2c\\"MatchmakingDecisionId\\"%3a\\"00000000-0000-0000-0000-000000000000\\"%2
2024-05-21T14:08:20.140Z,20.140045,2124,6 [FLog::GameJoinUtil] Game join succeeded.
2024-05-21T14:08:20.140Z,20.140045,2124,6 [FLog::GameJoinUtil] GameJoinUtil::processing join parameters
2024-05-21T14:08:20.141Z,20.141043,2124,7 [FLog::Network] NetworkClient:Create
2024-05-21T14:08:20.142Z,20.142040,2124,10 [DFLog::KeyRing] Parsed config created at: 11:59 4/1/2024.
2024-05-21T14:08:20.145Z,20.145037,2124,6 [FLog::Output] AnalyticsSessionId is 0f0560f6-633c-4931-ba8a-455dadb87ce7.
2024-05-21T14:08:20.146Z,20.146034,2124,6 [FLog::Output] ! Joining game 'c5785430-a54d-462f-9d21-f12d254df339' place 13928941253 at 10.17.7.155
2024-05-21T14:08:20.146Z,20.146034,2124,6 [FLog::GameJoinLoadTime] Report game_join_loadtime: placeid:13928941253, join_time:0.99978098400089976394, universeid:4827815098, referral_page:GameDetailPageJSHybridEvent, sid:0f0560f6-633c-4931-ba8a-455dadb87ce7, clienttime:1716300499.8559999466, userid:2260486916,
2024-05-21T14:08:20.149Z,20.149029,2124,7 [FLog::Network] Client will attempt to connect following server endpoints with threadSleepTime(-1)
2024-05-21T14:08:20.149Z,20.149029,2124,7 [FLog::Network] UDMUX Address = 128.116.21.33, Port = 60803 RCC Server Address = 10.17.7.155, Port = 60803
2024-05-21T14:08:20.150Z,20.150028,2124,7 [FLog::Network] binding socket on inaddr_any:0
2024-05-21T14:08:20.162Z,20.162868,2124,6 [FLog::Output] Connecting to UDMUX server 128.116.21.33:60803, and RCC server 10.17.7.155:60803
2024-05-21T14:08:20.362Z,20.362783,46f8,6 [FLog::Output] Connection accepted from 128.116.21.3360803
2024-05-21T14:08:20.365Z,20.365788,46f8,7 [FLog::Network] serverId: 128.116.21.3360803
2024-05-21T14:08:20.366Z,20.366791,46f8,7 [FLog::Network] Replicator created for player 128.116.21.3360803
2024-05-21T14:08:20.366Z,20.366791,46f8,7 [FLog::Network] Replicator created: 0000029F50335670
2024-05-21T14:08:20.694Z,20.694845,2124,7 [FLog::Network] Time taken to initialize schema = 12.483300 ms
2024-05-21T14:08:20.696Z,20.696840,2124,7 [FLog::Network] Assigned peer id = 4
2024-05-21T14:08:20.697Z,20.697836,2124,7 [FLog::Network] Join snapshot timer: 1.500500
2024-05-21T14:08:23.614Z,23.614683,3f68,6 [FLog::Graphics] SmoothCluster::initSolidTextures()
2024-05-21T14:08:23.614Z,23.614683,3f68,6 [FLog::Graphics] Terrain TextureArray 512x512, arraySize: 36, mip: 10
2024-05-21T14:08:24.203Z,24.203489,1cac,6 [FLog::Error] Asset (Image) "https://assetdelivery.roblox.com/v1/asset?id=0" load failed in Workspace.Map.Map.BossZone.BossIslandsDECO.Boss8Deco.BossDec.bossshrimp.Shrimp.Body.Part.Mesh.TextureId: Request failed
2024-05-21T14:08:26.452Z,26.452301,46f8,6 [FLog::Warning] Warning: Infinite yield possible on 'RobloxReplicatedStorage:WaitForChild("RequestDeviceCameraCFrame")'
2024-05-21T14:08:26.452Z,26.452301,46f8,6 [FLog::Output] Info: Stack Begin
2024-05-21T14:08:26.452Z,26.452301,46f8,6 [FLog::Output] Info: Script 'CoreGui.RobloxGui.CoreScripts/PlayerView', Line 5
2024-05-21T14:08:26.452Z,26.452301,46f8,6 [FLog::Output] Info: Stack End
2024-05-21T14:08:36.058Z,36.058613,385c,6 [FLog::VIPTeleport] made it to inside gameLoadedSignal without teleportParams
2024-05-21T14:08:36.072Z,36.072498,385c,6 [FLog::Output] Server RobloxGitHash: d2f995026f4963b40bd37e1eada84a7698834d8f
2024-05-21T14:08:36.072Z,36.072498,385c,6 [FLog::Output] Server Prefix: 0.625.0.6250509_20240521T140601Z_RCC_16ba8
2024-05-21T14:08:36.073Z,36.073490,385c,6 [FLog::VIPTeleport] create! we were able to get the vip on client: a7d6eee6-4293-4665-9a3a-ff3040b2dddc placeid: 13928941253
2024-05-21T14:08:37.018Z,37.018616,385c,6,Info [FLog::VoiceChatLogs] [C:\buildAgent\work\ci_ninja_client-x64_git\Client\App\v8datamodel\src\VoiceChatService.cpp:L497] VoiceChatService::IsVoiceEnabledForUserIdAsync caching new value: false
2024-05-21T14:08:59.514Z,59.514191,3f68,6 [FLog::Graphics] SceneManager: resizing main targets to 1920x1009
2024-05-21T14:09:02.015Z,62.015125,3f68,6 [FLog::Graphics] SceneManager: resizing main targets to 1920x1009
2024-05-21T14:09:04.512Z,64.512604,3f68,6 [FLog::Graphics] SceneManager: resizing main targets to 1920x1009
2024-05-21T14:10:01.557Z,121.557869,1478,6 [FLog::Output] Settings Date header was Tue, 21 May 2024 14:09:59 GMT
2024-05-21T14:10:01.557Z,121.557869,1478,6 [FLog::Output] Settings Date timestamp is 1716300599
2024-05-21T14:10:21.329Z,141.329895,3f68,6 [FLog::Graphics] WARNING: D3D Frame query timed out, has device hung?
2024-05-21T14:10:26.329Z,146.329269,3f68,6 [FLog::Graphics] WARNING: D3D Frame query timed out, has device hung?
2024-05-21T14:10:31.329Z,151.329605,3f68,6 [FLog::Graphics] WARNING: D3D Frame query timed out, has device hung?
2024-05-21T14:10:36.328Z,156.328629,3f68,6 [FLog::Graphics] WARNING: D3D Frame query timed out, has device hung?
2024-05-21T14:10:36.355Z,156.355270,1478,6 [DFLog::SignalRCoreError] ID: 1 Disconnected - Websocket closed
2024-05-21T14:10:41.329Z,161.329422,3f68,6 [FLog::Graphics] WARNING: D3D Frame query timed out, has device hung?
2024-05-21T14:10:46.330Z,166.330185,3f68,6 [FLog::Graphics] WARNING: D3D Frame query timed out, has device hung?
2024-05-21T14:10:51.328Z,171.328995,3f68,6 [FLog::Graphics] WARNING: D3D Frame query timed out, has device hung?
2024-05-21T14:10:56.329Z,176.329788,3f68,6 [FLog::Graphics] WARNING: D3D Frame query timed out, has device hung?
2024-05-21T14:11:01.330Z,181.330475,3f68,6 [FLog::Graphics] WARNING: D3D Frame query timed out, has device hung?
2024-05-21T14:11:06.330Z,186.330658,3f68,6 [FLog::Graphics] WARNING: D3D Frame query timed out, has device hung?
2024-05-21T14:11:11.330Z,191.330292,3f68,6 [FLog::Graphics] WARNING: D3D Frame query timed out, has device hung?
2024-05-21T14:11:16.331Z,196.331696,3f68,6 [FLog::Graphics] WARNING: D3D Frame query timed out, has device hung?
2024-05-21T14:11:21.331Z,201.331482,3f68,6 [FLog::Graphics] WARNING: D3D Frame query timed out, has device hung?
2024-05-21T14:11:26.331Z,206.331696,3f68,6 [FLog::Graphics] WARNING: D3D Frame query timed out, has device hung?
2024-05-21T14:11:31.330Z,211.330429,3f68,6 [FLog::Graphics] WARNING: D3D Frame query timed out, has device hung?
2024-05-21T14:11:36.331Z,216.331345,3f68,6 [FLog::Graphics] WARNING: D3D Frame query timed out, has device hung?
2024-05-21T14:11:41.331Z,221.331284,3f68,6 [FLog::Graphics] WARNING: D3D Frame query timed out, has device hung?
2024-05-21T14:11:46.332Z,226.332275,3f68,6 [FLog::Graphics] WARNING: D3D Frame query timed out, has device hung?
2024-05-21T14:11:51.331Z,231.331390,3f68,6 [FLog::Graphics] WARNING: D3D Frame query timed out, has device hung?
2024-05-21T14:11:56.331Z,236.331772,3f68,6 [FLog::Graphics] WARNING: D3D Frame query timed out, has device hung?
2024-05-21T14:12:01.332Z,241.332123,3f68,6 [FLog::Graphics] WARNING: D3D Frame query timed out, has device hung?
2024-05-21T14:12:01.760Z,241.760773,1478,6 [FLog::Output] Settings Date header was Tue, 21 May 2024 14:11:59 GMT
2024-05-21T14:12:01.761Z,241.761780,1478,6 [FLog::Output] Settings Date timestamp is 1716300719
2024-05-21T14:12:06.332Z,246.332657,3f68,6 [FLog::Graphics] WARNING: D3D Frame query timed out, has device hung?
specs:
gtx 980
i3-9100F
16 gb ram ddr4
please help.
submitted by Internal_Break_7289 to RobloxHelp [link] [comments]


2024.05.21 14:53 matiyassolutions Matiyas Solutions: Your Frappe & ERPNext Certified Partner

Introduction:

Matiyas Solutions proudly announces its recent accomplishment: being recognized as a Frappe & ERPNext Certified Partner on March 4, 2024. This milestone underscores our commitment to delivering cutting-edge Enterprise Resource Planning (ERP) solutions to businesses across various sectors.

About Matiyas Solutions:

Matiyas Solutions is a dynamic and innovative company dedicated to providing cutting-edge Enterprise Resource Planning (ERP) solutions to a diverse range of industries. With a steadfast commitment to excellence, we empower businesses across the Manufacturing, Healthcare, Oil & Gas, Retail, Trading & Distribution, Non-Profit, and more sectors to streamline their operations,enhance productivity, and achieve sustainable growth.

Becoming a Frappe & ERPNext Certified Partner:

Our journey to becoming a Frappe & ERPNext Certified Partner involved rigorous training and adherence to the highest standards of ERPNext features, Implementation Process, and Technical Support. This certification validates our expertise and commitment to providing top-notch ERP solutions tailored to meet the unique needs of our clients.

ERP Services Offered by Matiyas Solutions:

As a Frappe & ERPNext Certified Partner, Matiyas Solutions offers a comprehensive suite of services including:
Business Consulting, Implementation & Configuration, Customization, Training & Support, Localization & Upgrade, Integration & Backup, Data Migration Services

Why Choose Matiyas Solutions?

Feature-rich ERP solutions designed for diverse industries Expertise in ERPNext implementation and project management Tailored solutions for the retail, manufacturing, healthcare, and non-profit sectors dedicated technical support and maintenance services seamless data migration and integration capabilities

Conclusion:

At Matiyas Solutions, we are committed to leveraging our expertise and experience to help businesses thrive in today’s dynamic market landscape. As a Frappe Certified Partner, we stand ready to collaborate with organizations seeking to streamline their operations, enhance productivity, and achieve sustainable growth. Partner with us and unlock the full potential of your business with our industry-leading ERP solutions.
Contact Matiyas Solutions today to learn more about our ERP services and how we can help transform your business![](https://medium.com/@matiyasolutions?source=post_page-----b47c945eafce--------------------------------)
submitted by matiyassolutions to u/matiyassolutions [link] [comments]


2024.05.21 14:39 StrugglingHippo Kiosk Mode not working

Hey everyone
I got some issues with the Kiosk Mode over Intune.
First to the initial situation. The management has purchased a solution for a cash register system (not sure if it is the right word in English) which I now have to implement. The idea is as follows: - Normal laptops are used as cash registers - One device is used by several people. The users each work with the same account - The cash register system is opened via a shortcut in Explorer. No program is installed for this Since I am not a fan of multiple users using the same, non-personalized domain account, I had the idea of providing a kiosk device on which the Explorer can be opened, but not much more. I have now started the first tests, but am already failing with the kiosk mode. The problem: no autologin is performed.
---------------------------------------------------------------------------------------- Here is my configuration:
Select a kiosk mode : Multi app kiosk User logon type : Auto logon (Windows 10, version 1803 and later, or Windows 11)
Microsoft Edge kiosk mode type : Digital/Interactive signage
Default home page URL : http://bing.com
Specify Maintenance Window for App Restarts : Require
Maintenance Window Start Time : 2024-05-28T16:00:00Z
Maintenance Window Recurrence:
Monthly
Day of week
Sunday
Day of month
28
Target devices running Windows 10/11 in S mode : No
Browsers and Applications : File Explorer (Win32 App / Configured / No Autolaunch)
Windows Taskbar : Show
Allow access to Downloads folder : No
----------------------------------------------------------------------------------------
Additionally, the following policies are applied:
StandbyTimeoutPluggedIn [./Device/VendoMSFT/Policy/Config/PoweStandbyTimeoutPluggedIn]
ConfigStorageSenseDownloadsCleanupThreshold
[./Device/VendoMSFT/Policy/Config/Storage/ConfigStorageSenseDownloadsCleanupThreshold]
AllowStorageSenseGlobal [./Device/VendoMSFT/Policy/Config/Storage/AllowStorageSenseGlobal]
MDMWinsOverGP [./Device/VendoMSFT/Policy/Config/ControlPolicyConflict/MDMWinsOverGP]
LetAppsAccessLocation [./Device/VendoMSFT/Policy/Config/Privacy/LetAppsAccessLocation]
DesktopImageUrl [./VendoMSFT/Personalization/DesktopImageUrl]
----------------------------------------------------------------------------------------
In the reporting section, it says that both policies are applied successfully. But the auto logon does not work. It just stays in the logon screen. Multiple reboots done, checked the event log and I saw some errors but I could not relate them to the kiosk mode. What I am doing wrong?
Appreciate every input from you guys. Thanks!
submitted by StrugglingHippo to Intune [link] [comments]


2024.05.21 13:38 Jabaxaro How are storage\archives\0\ directories populated?

Over the past 5 years I've come to understand a few things about how Mozilla Firefox (current version 126.0 64bit) manages its profiles on my Windows file systems and especially what to keep in mind when using Roaming-Profiles within a Windows Domain.
The most common problem is the path length limitation which causes issues, generally within the \storage\default\ folder which I solved by forcing all my clients to clear their Offline Website Data for all pages on closing, excluding content for our own domain.
In the past two weeks however I noticed two users having the same issues as before with this configuration active and working.
Upon further inspection I see \storage\archives\0\yyyy-mm-dd\default\ folders with several dates and default folders with their full extent of saved Offline Website Data. Several of these folders had contents breaching the path length limitation.
Can someone explain to me how these folders are generated and/or can be prevented (via GPO or defaults.json)? My personal attempts to provoke it in my own profile didn't yield any results.
submitted by Jabaxaro to firefox [link] [comments]


2024.05.21 13:31 EldritchIT Adding a few sites to Trusted Sites without overwriting users existing settings

I have tried making a device configuration profile that add a few sites to intranet and trusted sites zones company wide:
Administrative Templates:
Windows Components > Internet Explorer > Internet Control Panel > Security Page Intranet Sites: Include all network paths (UNCs) (User) - Enabled Site to Zone Assignment List (User) - Enabled
And the sites show up as expected. However when I enable this, the sites added by the user previously is removed, until I disable the profile. I have tried both applying it to both user and device groups and tried the same settings with and without (User) at the end.
Is there a better way to do this where the managed sites are appended instead of overwriting?
submitted by EldritchIT to Intune [link] [comments]


http://activeproperty.pl/