• nodebb-plugin-anchors

    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 Votes
    1 Posts
    1k Views
    ScuzzS
    How to install Ghost on linux This tutorial will show you how to install and run Ghost on a Debian based Linux server. This guide presumes you have Node.js and NPM installed and running correctly. First of all you will need to download the Ghost software: curl -L https://ghost.org/zip/ghost-latest.zip -o ghost.zip Then you will need to unzip the Ghost software, we will unzip it to a ghost directory: unzip -uo ghost.zip -d ghost Now you will need to go into the ghost directory: cd ghost Once you are inside the ghost directory you will need to install all the dependencies that Ghost requires to run: npm install --production Once it has installed you can now go ahead and run the Ghost software: npm start To see your blog you will need to open http://127.0.0.1:2368 in your web browser. You can sign in to your control panel by visiting http://127.0.0.1:2368/ghost. Hopefully this has been useful to someone. Ghost is extremely easy to set up and install. There are other configuration option available for Ghost, such as SSL, an Nginx reverse proxy and running Ghost forever. I will write a separate tutorial for these later on; they are just as easy to set up!
  • What's the biggest PC game you own?

    Gaming
    2
    0 Votes
    2 Posts
    720 Views
    ScuzzS
    I only have a few games installed. The Evil Within is currently winning at 38GB but if i install the HD texture pack for Shadow of Mordor I think that would be the largest at the moment. I did download Killzone 3 which was roughly 40GB.
  • PS Vita Exploit via Webkit

    Gaming vita hack exploit webkit
    5
    1 Votes
    5 Posts
    2k Views
    ScuzzS
    Nice update. Looks like this exploit may work out to be something good.
  • PlayStation 4 Exploit via Webkit

    Gaming ps4 exploit webkit hack playstation
    2
    0 Votes
    2 Posts
    851 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
  • The Evil Within console commands

    Gaming evil within console commands
    4
    1 Votes
    4 Posts
    968 Views
    ScuzzS
    Haha nah, they released some commands that can unlock FPS and change the FOV as people complained about it being locked to 30FPS and those huge black bars.
  • nodebb-plugin-image-sizer

    Development and Coding nodebb plug image sizer
    1
    1 Votes
    1 Posts
    839 Views
    AlmostA
    I made a plugin so that you can resize images in markdown specifically because of this thread. The syntax is based loosely on the way iOS handles multple image sizes combined with normal markdown image embedding: ![alt text](http://someurl.com/someimage.png@<size> Size can take the following formats: 100x200 - Absolute size 100x x200 - Absolute size where the other dimension is calculated to maintain aspect ratio 50% - Percentage 0.5 - Scalar Multiplier So for example, my original picture: http://cl.ly/image/2L3F1M2E1X3l/IMG_0136.JPG is 1000x750. All of the following would produce the same image at 1/2 size: [white house](http://cl.ly/image/2L3F1M2E1X3l/IMG_0136.JPG@500x375) [white house](http://cl.ly/image/2L3F1M2E1X3l/IMG_0136.JPG@500x) [white house](http://cl.ly/image/2L3F1M2E1X3l/IMG_0136.JPG@x375) [white house](http://cl.ly/image/2L3F1M2E1X3l/IMG_0136.JPG@50%) [white house](http://cl.ly/image/2L3F1M2E1X3l/[email protected]) Install via npm: npm install nodebb-plugin-image-sizer Source: https://github.com/Kern--/nodebb-plugin-image-sizer Known Issues: Images that are set to be wider than their container become elongated (width is set to match the container, but height is not adjusted). This means that mobile can get a bit dicey.
  • Google Domains - Invites

    General Computing google domains invites
    2
    0 Votes
    2 Posts
    730 Views
    LeoL
    yo, hit ya homie up with one. -> [email protected]
  • Server Upgrade

    Announcements server upgrade
    2
    2 Votes
    2 Posts
    815 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.
  • Microsoft has bought Mojang

    Gaming
    3
    0 Votes
    3 Posts
    748 Views
    AlmostA
    P.S. if you actually rename it to Minecrosoft and run it through steam, other people will see you playing Minecrosoft.
  • Moto360 Display Unit Hands On

    Tech moto360
    4
    3 Votes
    4 Posts
    1k Views
    AlmostA
    Yeah. I thought it was made of plastic. Then I found out that there are no plastic moto360’s :o The silver looked better in my opinion, but I’ll see if I got any pictures of the black one later.
  • 0 Votes
    1 Posts
    514 Views
    SchamperS
    [image: git-pretty.png] Source: http://justinhileman.info/article/git-pretty/
  • 1 Votes
    3 Posts
    824 Views
    ScuzzS
    It used to be called http://unbaby.me/. Kinda get an abortion website feel from that url
  • 0 Votes
    11 Posts
    2k Views
    SchamperS
    @Scuzz From what I’ve read, you get the best effect by having them point at the wall at like a 45 degree angle. I’ve seen a lot of PVC pipe structures where you can easily adjust the angle.
  • For those of you who don't know markdown

    Announcements
    2
    0 Votes
    2 Posts
    673 Views
    SchamperS
    Those noobs.
  • Arduino Powered PC Lighting

    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); } }
  • 0 Votes
    1 Posts
    430 Views
    ScuzzS
    Today I was tasked with upgrading some Windows 7 Home Premium PCs to Windows 7 Ultimate. For some reason the installer will not let you upgrade from Home premium to Ultimate and it tries to force you to do a clean install. I managed to find a way around this by editing some registry keys. Open Regedit and navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion And change: EditionID from HomePremium to Enterprise and ProductName from Windows 7 HomePremium to Enterprise Then re run your upgrade and everything should run as you expected! Original Blog Post
  • Sending Emails with Python and Mailgun

    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.
  • Oi‰‰‰‰‰‰

    Introductions skye onehitgamer
    10
    0 Votes
    10 Posts
    2k Views
    AntuA
    2 characters ? Should’ve went for 1, noop. :P
  • When Will You Notice Me?

    The lounge
    13
    -3 Votes
    13 Posts
    2k Views
    MaverickM
    @flamingdragons-1 said: http://gatherer.wizards.com/Handlers/Image.ashx?multiverseid=373559&type=card so, trample anyone? If she had a bow she’d be able to kill people just by touching them. She’d also be utility.