Jump to content

Botre

Members
  • Posts

    5883
  • Joined

  • Last visited

  • Days Won

    18
  • Feedback

    100%

Everything posted by Botre

  1. Decent prebuilt except you're most likely getting a shitty motherboard with it.
  2. It specifically looks for new content to index. It's not a person, chill out. IPB most likely has it configured that way in its generic robots.txt file.
  3. Botre

    Should I?

    You brought a machete to a Piñata party and got shit for it. I'm done, have a good evening, peace. (stop being so stubborn man x))
  4. Botre

    Should I?

    You keep yelling rape while moaning yes please. Just make sure you don't harass yourself too deeply by willingly forcing yourself into battles you can't win. Or do, by all means, most people stopped taking anything you say seriously anyways. The beans are not only green but also very cool. Chill out. No need to continue this.
  5. Botre

    Should I?

    You brought your toxic shit to a fun thread what did you expect? You piss in the bottle, guess what, no one wants to drink with you anymore. Stop whining jesus christ man. Seriously, no one here needs your validation, concern, approval or pointing out of anything, so why don't you fuckery fuck off please thanks.
  6. Botre

    Should I?

    We already have two daddies, Maldesto and Alek. Two is company, three's a crowd.
  7. Botre

    Should I?

    I'm just here to poke you, it's part of what makes my fuckery life so fuckery fucking fun. Half the time you're just feeding the toxicity man, not sure how you haven't realized this by now. Relax. Take it easy. Blame it on me or blame it on you
  8. Botre

    Should I?

    Stop being so salty, you're not in our club and never will be, get over it. (He keeps asking to join our skype chat, it's pathetic). @ everyone: spoiler alert: if you easily feel harassed -> please do not read what's below, you have been warned. <sarcam>You are so masculine bro, thank you for reminding me that friendship and testicles are entirely mutually exclusive, probably the reason why I have so many friends but no kids and you so many kids but no.... ah well.</sarcasm> There's a block/ignore feature for people you don't like. PS: this is a troll, chill the fuck out.
  9. Dear god please no. You took a bad design pattern and somehow made it worse. @OP allow me to recommend you to stay away from the "node" approach. You should isolate and OO-ify conditions and behaviors in a decoupled fashion instead. And then just use classical good old-fashioned control flow mechanisms instead of iterating over a fucking collection of "if blocks".
  10. Please don't use "nodes". You bring up one great reason not to use them (among many others): inefficient and/or unnecessarily convoluted control flow.
  11. About: Definitely not the most efficient way nor the cleanest but if you are looking for a quick snippet to introduce audio into your scripts rapidly well here you go. Example: public static void main(String args[]) { final Sound s = new Sound("C:/x/y/z/Korg-MS2000-DirtBass-C2.wav"); s.play(); try { Thread.sleep(5000); } catch (final InterruptedException e) { e.printStackTrace(); } s.play(); } Code: public final class Sound { private final File soundFile; public Sound(final File soundFile) { this.soundFile = soundFile; } public Sound(final String soundFilePath) { this(new File(soundFilePath)); } public final void play() { new PlayThread().start(); } private class PlayThread extends Thread { byte buffer[] = new byte[10000]; public void run() { try { final AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(soundFile); final AudioFormat audioFormat = audioInputStream.getFormat(); final DataLine.Info dataLineInfo = new DataLine.Info(SourceDataLine.class, audioFormat); final SourceDataLine sourceDataLine = (SourceDataLine) AudioSystem.getLine(dataLineInfo); sourceDataLine.open(audioFormat); sourceDataLine.start(); int count; while ((count = audioInputStream.read(buffer, 0, buffer.length)) != -1) { if (count > 0) { sourceDataLine.write(buffer, 0, count); } } sourceDataLine.drain(); sourceDataLine.close(); } catch (final Exception e) { e.printStackTrace(); } } } }
  12. Unless you want to support MP3 players from 2002, 10mb is irrelevant.
  13. "Staff chats" should only be private for being called "private" if they were actually called "private staff chats". : )
  14. Disabling automatic restart will prevent a computer from booting up itself after having shut down itself. It will not prevent the computer from shutting itself down. After a crash: Automatic restart enabled: computer is shut down, then boots up again. Automatic restart disabled: computer shuts down. You can't get rid of the shutting down with this setting.
  15. Botre

    @Botre

    Quality > quantity I'm not like Krys, postcount for me is a result of awesome content, not a goal in itself.
  16. public static boolean interactTil(String action, int i, int j, int k ... Parameter names
  17. Where's my boge this is boge (it's a blue doge) pls
  18. He needs an osbot account asap. (Congratulations amigo)
×
×
  • Create New...