-
Posts
2,126 -
Joined
-
Last visited
-
Days Won
38
Content Type
Profiles
Forums
Events
Everything posted by Reciever
-
No such activities will be permitted here. We may all be passionate and maybe even prideful of our accrued knowledge/perspectives but attacking members for one reason or another will be struck down immediately. If a member happens to commit to that lane of engagement, report it and it will be stricken immediately. We have a good moderation team and I am thankful that they spare time for our forum. We have had our differences in the past but it was always of a professional nature. I hope to facilitate this forum into a space where hobbyists can mingle and newcomers can learn, hostile actors obviously not very conducive to that end. You can be critical of anyone whom you wish, but it better be grounded in facts. This forum stands because Charles was able to give us time to provide this landing pad for everyone. I will always be thankful to Charles even if I disagreed with him on some issues on the old forum.
-
Welcome back!
-
HowTo- QMK AutoFire (Toggle-able repeating keys)
Reciever replied to Reciever's topic in Accessories
I am familiar with macropads and I have a 9-key version of such a device but the issue with the one I have is that it seems to not work through my other devices 95% of the time as it fails to negotiate the standard handshaking process that occurs over USB. It appears (likely) due to a dependency for redistributable or .net, havent spent the time to determine. For example, I'll provide links to my current scenario. I currently have 4 Code v3/b keyboards that I use to automate a number of processes over many projects, they work well for that however they have a 32-keystroke limit not counting the delay timers. This makes systems boot-ups a time consuming task as my technicians have to sit at the stations mashing F2/F12 for (currently) Dell systems. I currently use different iterations of this device, a USB synchronizer. Link Here I have 4/8 and soon to be 16/32 port versions of this to scale up my operations. My keyboards work well with the synchronizers, but my macropad does not register at all. I did find a forum that seems to have some people testing out differing products, its a trial and error approach, I'll see if I cant get a link. Here Basically I would like for my technicians to be able to power on the systems while the Autofiring devices continually hits the desired key. Long story long, does not need to be a keyboard. As long as it has Autofire potential or can continually hit desired keys for 1-2 minutes as we cycle our production. Currently owned macropad that failed to function with my USB synchronizers Link Here On another note, I have been considering BADUSB as well, but need more time to look into how that functions- 14 replies
-
- work related
- usb
-
(and 1 more)
Tagged with:
-
Good morning everyone! I am looking for an HDTV that has the ability to crop 4 inputs at the same time on screen. I know I can get a hardware based multiplexer but was curious to if I can remove that piece if such functions are built into a television set. Thanks in advance!
- 8 replies
-
- 1
-
-
- pip
- picture in picture
-
(and 1 more)
Tagged with:
-
HowTo- QMK AutoFire (Toggle-able repeating keys)
Reciever replied to Reciever's topic in Accessories
I have altered the thread title after having learned the proper term for the function I am seeking.- 14 replies
-
- work related
- usb
-
(and 1 more)
Tagged with:
-
Witcher 3 Next Gen Delayed(hold the surprised gasps!)
Reciever replied to Hertzian56's topic in News & Announcements
I'm fine with the "get your facts straight, then distort them at your leisure" approach. I'm not a huge Witcher guy only played w3 but you can tell the source was pretty rich in its own right for the games to translate to a mass audience in the media space. Just seems odd to have people who don't like the IP write fke the show though. It would be find if they were professional and just compartmentalize the disdain but being a creative endeavor would make that kind of difficult -
As soon as I'm not working 14 hour days lol
-
Take negotiations to PM, Thank You!
-
Removed off topic posts. Carry on everyone.
-
NBRchive
-
Interesting, Thanks! :)
-
My Clevo P775TM1-G Components: RTX2080, CPU, RAM..
Reciever replied to cylix's topic in Notebooks and Desktops
same here- 19 replies
-
- 3
-
-
-
- clevo
- rtx 2080 ti
-
(and 1 more)
Tagged with:
-
Does it need the panel to post?
-
*Official Benchmark Thread* - Post it here or it didn't happen :D
Reciever replied to Mr. Fox's topic in Desktop Hardware
They still haven't been able to source a replacement? It's a been a minute without that system at this point... -
*Official Benchmark Thread* - Post it here or it didn't happen :D
Reciever replied to Mr. Fox's topic in Desktop Hardware
If it's not the same level, there should be another database for amauter leagues then no? -
Precision M4600 Owners Thread
Reciever replied to Hertzian56's topic in Pro Max & Precision Mobile Workstation
Voltage is the same which is why he connected to it. Amperage would be less though, 800ma vs the fan I think was close to 1a been a long time so I can't remember exactly -
Ah looks like it's relisted, nice
- 58 replies
-
- tempatation
- eluktronics
-
(and 1 more)
Tagged with:
-
They removed the listing before they had all sold, not sure if they have relisted elsewhere or not
- 58 replies
-
- tempatation
- eluktronics
-
(and 1 more)
Tagged with:
-
Just had my hands on 24x 7670 models with the 12950HX and not too happy about their consistency. I had 16x in sBIOS and was racking my brain after a long day trying to figure out why my tools weren't working. Turns out if I leave them in the sBIOS for 20-30minutes they all completely locked up on me lol To be fair, after reboot, most were completely fine, there were 1-2 that took about 5 minutes to get to the one time boot menu but I have that issue with all Dell equipment (mostly a Dell shop at this time) so it beyond that outlier is pretty much expected behavior. The other detail I noticed is that the lids dont handle dust and abrasion very well. I thought one of my techs slid a laptop on a table by how scuffed up it was. Wiped it down and it was back to its normal appearance. I know I know, well uhhh you wiped it clean so it looks clean, its been a long week lol
-
Good Morning Everyone! This thread was originally an inquiry regarding if there were keyboards that could do AutoFire keystrokes. The end result was QMK powered keyboards. An example of the code needed will be pasted below. #define SPAM_DELAY 50 // 50 milliseconds between spams bool spam_active = false; uint32_t spam_timer = 0; // Place the above near the beginning of the keymap enum custom_keycodes { F2TR = SAFE_RANGE, // Create a keycode to make your toggle initialize }; bool process_record_user(uint16_t keycode, keyrecord_t *record) { switch (keycode) { case F2TR: // When you press custom SPAM keycode if (record->event.pressed) { spam_active = !spam_active; // Toggle spamming spam_timer = timer_read32(); // Reset spam timer } break; } return true; } void matrix_scan_user(void){ if (spam_active) { // Check if it's been SPAM_DELAY milliseconds since the last spam if (timer_elapsed32(spam_timer) > SPAM_DELAY) { tap_code(KC_P2); // Send an F2 keystroke spam_timer = timer_read32(); // Reset spam timer } } }
- 14 replies
-
- work related
- usb
-
(and 1 more)
Tagged with:
-
Yeah it gets the job done for the most part, now I need to figure out something else which I'll make a thread for
-
Even those that didnt use FTX exchange were affected as it sent ripples throughout the space, it was essentially a second crash for a recovering crypto "economy". Its always a bummer to see your stocks and/or crypto take a dive but luckily I have limited myself to only what I mine on my GPU's and refuse to put any fiat currency from other revenue streams into crypto. Doesnt mean its value didnt tank (again) but I am not in a position where I must sell and as a result actualize the loss. Though there are plenty didnt approach as cautiously or in such a constricted manner.
- 78 replies
-
- 1
-
-
- ftx
- sam bankman-fried
-
(and 1 more)
Tagged with:
-
Witcher 3 Next Gen Delayed(hold the surprised gasps!)
Reciever replied to Hertzian56's topic in News & Announcements
I'm on the fence about that being the case. Ian mckellan did both lord of the rings and xmen. That being said I hope they have a better writing team for the dccu this go around. -
Witcher 3 Next Gen Delayed(hold the surprised gasps!)
Reciever replied to Hertzian56's topic in News & Announcements
The issue right now is that its strayed quite far from the source material, which is I guess is Cavil's main sticking point. By all outward appearances it appears to be that Cavil's disdain is writers open disdain for the IP and character choices that betray their personality and individual goals. The Director has also publicly stated something along the likes of not wanting to be locked in to the source material. They picked up Liam Hemsworth to fill the role. Honestly I am surprised the Witcher TV series happened at all, and with Cavil I thought it was a good fit. Cant seem to have nice things though.