• Categories
    • Unread
    • Recent
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Home
    2. Popular
    Log in to post
    • All Time
    • Day
    • Week
    • Month
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics

    • All categories
    • ScuzzS

      Blog Theme

      Watching Ignoring Scheduled Pinned Locked Moved Announcements blog theme
      3
      1 Votes
      3 Posts
      850 Views
      SchamperS
      @Scuzz look at you all doing things and stuff.
    • JellyformeJ

      Rhyme Thread

      Watching Ignoring Scheduled Pinned Locked Moved The lounge
      3
      0 Votes
      3 Posts
      557 Views
      AlmostA
      Slant rhymes are bullshit, prick.
    • ScuzzS

      Heroes of the Storm Closed Beta

      Watching Ignoring Scheduled Pinned Locked Moved Gaming heroes of the s beta
      3
      1 Votes
      3 Posts
      611 Views
      SchamperS
      @CoDeZmAsTeR0800 generally your beta progress gets wiped.
    • ScuzzS

      Mazda MX5 flash to pass mod

      Watching Ignoring Scheduled Pinned Locked Moved The lounge mazda mx5 miata eunos flashtopass
      3
      1 Votes
      3 Posts
      1k Views
      ScuzzS
      10/10 would read again.
    • AlmostA

      [Challenge] BB Gets Drunk

      Watching Ignoring Scheduled Pinned Locked Moved Development and Coding
      3
      2 Votes
      3 Posts
      572 Views
      AlmostA
      Really minor improvement, but in order to remove that extra if (numStillWanted > 0) we could consider any alcohol that we don’t have as inventory that belongs to no one. To make this work in the code, we just add a line outside the outer loop: have = have.concat(wanted.select(cur => new AlcoholInventoryItem(null, cur.Name, cur.Quantity)); With this, we’re assured that we will never be left with numStillWanted > 0 after the inner loop because in the case where no one has any of the alcohol we want, our inventory consists of alcohol that belongs to no one that has exactly the quantity we want.
    • ScuzzS

      Kodi addons

      Watching Ignoring Scheduled Pinned Locked Moved General Computing
      3
      0 Votes
      3 Posts
      244 Views
      ScuzzS
      I installed genesis. Seems really useful although I have only watched a few episodes of Dr who. The other one uses torrents and downloads then to the sdcard. I don’t think mine is big enough to handle them. I. Can’t remember what size if have.
    • X

      Battle Star -> xW0MB4T

      Watching Ignoring Scheduled Pinned Locked Moved Introductions
      2
      0 Votes
      2 Posts
      1k Views
      S
      Well hello there.
    • ScuzzS

      Game of Thrones: Foreshadowing

      Watching Ignoring Scheduled Pinned Locked Moved The lounge
      2
      0 Votes
      2 Posts
      817 Views
      President_ChoobP
      Been so long since I read the books, though I know of a few key moments I’m looking forward to. Busy watching the previous seasons before the new one starts, but I don’t have time to read the books by then. Might just have to listen to the audiobooks while I paint.
    • ScuzzS

      RIP Windows XP

      Watching Ignoring Scheduled Pinned Locked Moved General Computing
      2
      0 Votes
      2 Posts
      819 Views
      SaNiTYs_EnDS
      yaaay my current Operating system is done -_-
    • AlmostA

      Google Nest parody

      Watching Ignoring Scheduled Pinned Locked Moved The lounge
      2
      0 Votes
      2 Posts
      808 Views
      ScuzzS
      I would try and watch it all but the sound coming from one side of my headset is annoying as hell.
    • ScuzzS

      Steam Streaming

      Watching Ignoring Scheduled Pinned Locked Moved Gaming
      2
      1 Votes
      2 Posts
      802 Views
      ScuzzS
      I’ve just had an awesome idea which will probably never work but it would be pretty amazing if you could Steam Stream to a Chromecast.
    • AlmostA

      [I/O 2014]Android TV

      Watching Ignoring Scheduled Pinned Locked Moved Tech android google io
      2
      1 Votes
      2 Posts
      822 Views
      AlmostA
      I’m kind of surprised that this is the thread that mostly flew under the radar. Android TV actually caught me a bit off guard and I was pleasantly surprised with what it is. First, the UI actually seems really well done. Being google and knowing context helps make the home screen work really well. Granted that I don’t use Google Play Movies, I’m not sure how much use I’d make of the content suggestions (or how accurate they would even be), but maybe it’d give me some inspiration to look up those titles on Netflix :P The second thing that I really liked about this was that google search is first class. Open menu -> “ok google” -> get whatever info you wanted. I could see myself using this all the time for when I think I recognize an actor from a different movie. Or even to get world cup group stats right on my TV! Third is casting. I like the idea of a chromecast, but I don’t know if I’d go out of my way to get one. If it’s part of my TV, though, I’d use that. One thing I didn’t mention in the original post is that Android TV does not need and Android phone. In the keynote, he controlled it with that beautiful red nexus 5 (:heart_eyes:), but he did mention that it needs “just a dpad and voice input”. I’d expect the TVs to come with these simple remotes. Definitely going to be considering one of these next time I’m looking for a TV (which probably won’t be for a few years)
    • ScuzzS

      Leaked Star Wars VII footage

      Watching Ignoring Scheduled Pinned Locked Moved The lounge
      2
      1 Votes
      2 Posts
      797 Views
      AntuA
      Can’t wait to see what will be going down in Germany. xD
    • ScuzzS

      Arduino Powered PC Lighting

      Watching Ignoring Scheduled Pinned Locked Moved Development and Coding arduino led ws2801
      2
      2 Votes
      2 Posts
      1k Views
      ScuzzS
      Code for the test. #include "FastLED.h" #define NUM_LEDS 41 #define DATA_PIN 11 #define CLOCK_PIN 13 CRGB leds[NUM_LEDS]; void setup() { FastLED.addLeds<WS2801, RGB>(leds, NUM_LEDS); } void Pulse(CRGB colour) { for(int i = 0; i < NUM_LEDS; i++) { leds[i] = colour; leds[i].maximizeBrightness(); } FastLED.show(); for(int i = 0; i < 14; i++) { for(int k = 0; k < NUM_LEDS; k++) { leds[k].fadeLightBy( 64 ); } FastLED.show(); delay(50); } for(int i = 0; i < 14; i++) { for(int k = 0; k < NUM_LEDS; k++) { leds[k] *= 2; } FastLED.show(); delay(100); } } void UpDown(CRGB colour) { for(int i = 0; i < NUM_LEDS; i++) { leds[i] = colour; FastLED.show(); leds[i] = CRGB::Black; delay(30); } for(int i = NUM_LEDS-1; i >= 0; i--) { leds[i] = colour; FastLED.show(); leds[i] = CRGB::Black; delay(30); } } void loop() { UpDown(CRGB::Red); UpDown(CRGB::Red); for(int i = 0; i < 5; i++){ Pulse(CRGB::Red); } UpDown(CRGB::Purple); UpDown(CRGB::Purple); for(int i = 0; i < 5; i++){ Pulse(CRGB::Purple); } UpDown(CRGB::Blue); UpDown(CRGB::Blue); for(int i = 0; i < 5; i++){ Pulse(CRGB::Blue); } }
    • ScuzzS

      Sending Emails with Python and Mailgun

      Watching Ignoring Scheduled Pinned Locked Moved General Computing python mailgun emails
      2
      2 Votes
      2 Posts
      1k Views
      S
      Requests really does make HTTP usage so easy in Python; I came across and used it last week.
    • ScuzzS

      For those of you who don't know markdown

      Watching Ignoring Scheduled Pinned Locked Moved Announcements
      2
      0 Votes
      2 Posts
      682 Views
      SchamperS
      Those noobs.
    • ScuzzS

      Google Domains - Invites

      Watching Ignoring Scheduled Pinned Locked Moved General Computing google domains invites
      2
      0 Votes
      2 Posts
      745 Views
      LeoL
      yo, hit ya homie up with one. -> [email protected]
    • ScuzzS

      Server Upgrade

      Watching Ignoring Scheduled Pinned Locked Moved Announcements server upgrade
      2
      2 Votes
      2 Posts
      821 Views
      ScuzzS
      Server upgrade has been completed. I am just waiting for DNS changes to propagate and then we should be up and running as normal. We are also on the latest version of NodeBB. I have noticed some issues with the forum “Restart” function but other than that everything seems to be working correctly. The migration has taken me just under 2 hours and we have experienced zero down time. Pretty cool eh? It’s time for a cup of Tea and then on to install my Ghost blog. Let me know if you have any issues and i’ll will fix them ASAP.
    • ScuzzS

      PlayStation 4 Exploit via Webkit

      Watching Ignoring Scheduled Pinned Locked Moved Gaming ps4 exploit webkit hack playstation
      2
      0 Votes
      2 Posts
      858 Views
      ScuzzS
      Just a quick update. With the release of the 2.00 firmware the exploit has been patched. https://twitter.com/Sonikku_a/status/527025131684892672
    • AlmostA

      nodebb-plugin-anchors

      Watching Ignoring Scheduled Pinned Locked Moved Development and Coding nodebb plugin anchors
      2
      2 Votes
      2 Posts
      1k Views
      J
      Woo hoo! Do you want to be included in the plugin contest? :smile:
    • 1
    • 2
    • 5
    • 6
    • 7
    • 8
    • 9
    • 7 / 9