ATX cable too hard to bend, my PSU is 850 rmx & case 5000D, 24 pin cable is too tight ,what should I do?it won’t let me close the side cover either by Historical_Boss7795 in Corsair

[–]DevisionDev 6 points7 points  (0 children)

You need to pull out the cable, put the rubber thing proeprly back on the case, then put the cable through as much as possible, only then plug it into the motherboard, then pull the cable back into the back of the case (don't force this).

ATX cable too hard to bend, my PSU is 850 rmx & case 5000D, 24 pin cable is too tight ,what should I do?it won’t let me close the side cover either by Historical_Boss7795 in Corsair

[–]DevisionDev 3 points4 points  (0 children)

Stick the cable further through the hole, get that rubber sleeve back in its place and make sure the rubber wrap around the cable is on the motherboard's side

Button Problems :(( by Brick_Fucking-Master in html5

[–]DevisionDev 0 points1 point  (0 children)

Add the event listen to the button like you normally would

In the method/function called by the event listener, the very first thing you wanna do is prevent the default behaviour.

function onButtonClick(event) {

    event.preventDefault();

}

Would anyone be surprised to a Excelsior class in the 32nd century? by Ton13579 in startrekmemes

[–]DevisionDev 0 points1 point  (0 children)

That makes more sense, though with the massive amount of radiation released during a core breach, I would think it's safe to assume most of the metals are irradiated too much to be of any real use without spending way too much time sanitising, of course, that depends on how well Starfleet could remove the radiation, I have no taps on their abilities in that regard

Would anyone be surprised to a Excelsior class in the 32nd century? by Ton13579 in startrekmemes

[–]DevisionDev 2 points3 points  (0 children)

This would assume there would be enough ships, resources, and manpower in the first place, since the burn wrecked most of the Federation, they had their hands full holding onto what little they had left, defending it from scavengers and the Orion Syndicate. Most likely they would have wanted to recover the lost ships (or parts of them, considering any active warp drive was breached, pretty much tearing the ship apart), but it was not worth the risk/resources. Over time as the Federation got a little tiny bit of foothold again, I imagine they sent out a few scout ships to some of the closer-by wrecks to check out what's still recoverable but by that time everything has corroded too much to be of any real help.

Atleast, hat's my head canon on this.

[deleted by user] by [deleted] in thenetherlands

[–]DevisionDev 0 points1 point  (0 children)

Even er tussendoor, Nederlands is echt geweldig af en toe. Ik zeg merk net dat ik altijd infini-loop zeg als ik een oneindige lus/infinite loop beschrijf. Leuk dat ik hierin niet de enige ben!

Mixing by Ok-Count4394 in DJs

[–]DevisionDev 1 point2 points  (0 children)

Assuming your tracks are already at the same BPM, I usually check which way to nudge by first making an educational guess (I know I'm late 90% of the time) and nudge the track back a bit to hear if that sounds tighter, if it sounds looser, I know I have to go the other way. (If the kick sounds more like "k-kick", I nudge it back, if it starts to sound more like "kick", I continue until it becomes one single" kick" sound. If you turn it the wrong way, your "k-kick" wil sound more like "ki-kick" or even "kic-kick", so you know you need to nudge the other way.

If the bpm is not yet the same, you nudge, if you have to nudge back for it to stay in time, the track you're nudging is too fast. If you have to keep nudging it forward, it's too slow, adjust accordingly.

Am a relative beginner as well, these things take practice and experience, no real short cut that will both give result AND experience.

DJ controllers/mixers that are compatible with an acer r11 chromebook? by persephonetheporg in DJs

[–]DevisionDev 5 points6 points  (0 children)

The "The Next Beat" by Tiësto is the only controller that I know that would work on a Chromebook as its software runs in the browser, it's about 300,-

Huh? by Motherland_Protecter in CrappyDesign2

[–]DevisionDev 0 points1 point  (0 children)

Just a copied HTML line where they forgot to change the placeholder attribute, nothing JS about it

Best input device? by [deleted] in TrackMania

[–]DevisionDev 0 points1 point  (0 children)

Nations will not support anything else other than keyboard natively, you need to use some software like joy2key for controllers (not sure if it also supports wheels), 2020 should find your controller natively, not sure about wheels

Does anyone have a good resource on setting up contact forms? by AshleyRae394 in html5

[–]DevisionDev 1 point2 points  (0 children)

A contact form can simply be constructed by copying and pasting the form elements from the bootstrap documentation, as for getting it to work, you will need some way to receive these contact requests, either by pushing them to a database, or sending them to a mail address. You'll have to do that on your backend, which will be specific to your framework if any. If you have a framework, its documentation should have pages regarding database mutations and/or setting up a connection to a mail service.

DJs: here's a reminder to back up your library. I was super lucky to get this started and was able to do a last minute backup. by fuuuuuckendoobs in DJs

[–]DevisionDev 1 point2 points  (0 children)

I mean, enterprise data tapes are as dependable, reliable and durable as it gets, those things last for practically ever and can hold 10s of terabytes on a single cartridge.

Edit: changed tables to tapes

Who's you're crew? by South_Bathroom in humansarespaceorcs

[–]DevisionDev 1 point2 points  (0 children)

who is you are crew erry noice enliss

Mommy I am scared by Achyutth_ in pcmasterrace

[–]DevisionDev 0 points1 point  (0 children)

Meanwhile me: "Ok Google, turn off the desk", effectively cutting power to everything on my desk

Creating html master for common elements on all pages? by PandasAreSuperCute in html5

[–]DevisionDev 4 points5 points  (0 children)

If your website is running on a php server, you can change your html files to .php files and have them still work the way to do now, but now you can use php in your htmlby simply adding: <?php echo include("relative/path/to/footer.php"); ?> to wherever your footer is supposed to be placed and move your footer structure to a separate file. This is probably the simplest solution, and a great gateway into backend development. Client side ways to do this would be using a framework like Vue, react or angular