Well, on a bit of a lark I started looking into bidding on Mini Trucks in Japan. Little did I know I would end up actually winning one. After several months, I now have it here at my house, but not without a number of stories to go along with it. The big thing is, …
Blog
-
Influencers – WONKO.NET
Discover a practical approach to filing taxes as an Amazon Vine member and avoid hefty tax bills. This guide breaks down the process, dispels common misconceptions, and provides step-by-step instructions for filling out your 1040 C form.
-
Vine – WONKO.NET
Discover a practical approach to filing taxes as an Amazon Vine member and avoid hefty tax bills. This guide breaks down the process, dispels common misconceptions, and provides step-by-step instructions for filling out your 1040 C form.
In this open letter, I address sellers using the Amazon Vine program, offering crucial advice on how to effectively navigate the system. By highlighting common mistakes and providing practical tips, I aim to help sellers understand what Vine reviewers look for and how to avoid pitfalls. This article serves as a guide to foster better relationships between sellers and Vine reviewers, ensuring honest and constructive feedback for product improvement.
In this follow-up article, I delve deeper into my experiences with the Amazon Vine program. As a seasoned reviewer, I share my evolving opinions on the program, other Vine users, reviews, and sellers. From the thrill of receiving products to the challenges of managing an influx of items, I explore the highs and lows of being a part of Vine. This article provides a candid look at the reality of the Vine experience, shedding light on the dedication and effort required to participate effectively.
Discover the inside scoop on the Amazon Vine program, where reviewers like me navigate the intriguing world of free products in exchange for honest feedback. It’s not just about scoring freebies; it’s a serious commitment to quality and transparency. Dive into my personal rating system, where I debunk myths and share how Vine reviewers are incentivized not by stars, but by integrity. Whether it’s a ‘Vine Customer Review of Free Product’ or a critical 1-star rating, understand why these reviews deserve your attention.
-
artificial intelligence – WONKO.NET
I found I need to upload text over multiple entries to get it all into ChatGPT. Guessing how many chunks to break it into based on the number of tokens is not an easy thing to do. I have created this to help simplify the process. Just drop in your text, select the chunk size …
-
connection – WONKO.NET
I have been looking for days trying to solve an issue with connecting my NextCloud instance with a SharePoint instance. The problem is, while there is a module, there is very little documentation, and it doesn’t even tell you how to format the information in the blocks. Right now I am focused on dealing with …
-
Proxmox missing GUI – WONKO.NET
When my Proxmox server failed to boot properly and my /etc/pve/ directory was empty, panic set in. With no backup in sight, I scoured the forums until I found a solution that brought everything back to life. If you’ve ever faced a similar disaster, this guide could save your day—and your VMs!
-
AI – WONKO.NET
This article is an attempt to organize my thoughts on the open letter issued by well over a thousand high profile IT pioneers and AI luminaries including Elon Musk, Steve Wozniak, Yoshua Bengio(Founder and Scientific Director at Mila and a Turing Prize winner), Stuart Russell (Berkeley, Professor of Computer Science, director of the Center for …
-
Linux server recovery – WONKO.NET
When my Proxmox server failed to boot properly and my /etc/pve/ directory was empty, panic set in. With no backup in sight, I scoured the forums until I found a solution that brought everything back to life. If you’ve ever faced a similar disaster, this guide could save your day—and your VMs!
-
Removing DKMS Drivers – WONKO.NET
I’m writing this as much a reminder to myself as a help for others. DKMS is a great tool. It really makes getting drivers in and out of Linux a much easier process than it previously was.
I guarantee if you mess with WiFi hacking, you will be dealing with drivers at some point in time, so here is what I know:
The first thing to do is get the status of what is installed:
$ dkms status
From here you should get a response that looks something like this:
8812au, 4.2.3, 5.3.0-23-generic, x86_64: installed (WARNING! Diff between built and installed module!)
It may be blank, or there may be multiple items, but in this case, this is all I had there.
The next step is to remove the item. The two pieces of info you need to take from the list are the name of the driver (8812au in this case) and the version number (4.2.3 in this case). You will then format your command this way:
$ sudo dkms remove 8812au/4.2.3 --all
At this point you will get a whole bunch of text looking something like this:
-------- Uninstall Beginning -------- Module: 8812au Version: 4.2.3 Kernel: 5.3.0-23-generic (x86_64) ------------------------------------- Status: Before uninstall, this module version was ACTIVE on this kernel. 8812au.ko: - Uninstallation - Deleting from: /lib/modules/5.3.0-23-generic/ rmdir: failed to remove '': No such file or directory - Original module - No original module was found for this module on this kernel. - Use the dkms install command to reinstall any previous module version. depmod…. DKMS: uninstall completed. ------------------------------------- Deleting module version: 4.2.3 completely from the DKMS tree. ------------------------------------- Done. wonko@wifiwasp:~$ 8812au, 4.2.3, 5.3.0-23-generic, x86_64: installed (WARNING! Diff between built and installed module!) -bash: !: event not found
I would recommend running the
sudo dkms status
command again just to confirm that the driver is removed. You can then proceed to add in the new driver. -
Server hardware troubleshooting – WONKO.NET
Struggling with a Proxmox server issue that seemed unsolvable, I spent weeks troubleshooting only to discover the problem was hardware-related all along. If you’re dealing with hard drives that just won’t cooperate, this story might save you some headaches—and a lot of time.