Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Tags
    • Users
    • Groups
    1. Home
    2. belstgut
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 23
    • Best 4
    • Groups 3

    belstgut

    @belstgut

    Translator

    6
    Reputation
    709
    Profile views
    23
    Posts
    0
    Followers
    0
    Following
    Joined Last Online
    Website esport.rocks

    belstgut Unfollow Follow
    Translator GNU/Linux Gamers

    Best posts made by belstgut

    • RE: Is there a way to make a post be "Sticky" alway show at the top of a category?

      Click the Topic Tools button and Pin the Topic

      posted in General Discussion
      belstgut
      belstgut
    • RE: JavaScript edge cases

      have a look at this short talk: https://www.destroyallsoftware.com/talks/wat

      posted in General Discussion
      belstgut
      belstgut
    • RE: Custom themes and the npm registry

      to install the package, see here: https://docs.npmjs.com/cli/install

      posted in Technical Support
      belstgut
      belstgut
    • RE: NodeBB website integration

      you should check out Flarum. It is also build on Laravel: https://github.com/flarum/core

      posted in General Discussion
      belstgut
      belstgut

    Latest posts made by belstgut

    • RE: Frontend freeze on version later than v1.0.2

      did u run ./nodebb upgrade??

      posted in Technical Support
      belstgut
      belstgut
    • RE: Active sites using NodeBB

      @Kowlin Make it a mandatory config option, so people who want to upgrade would have to manually add the option to the config. (either true or false depending on if they want to promote their forum)

      posted in General Discussion
      belstgut
      belstgut
    • RE: Active sites using NodeBB

      @Kowlin Thats why you should be able to disable it.

      Make it an option during installation for example

      posted in General Discussion
      belstgut
      belstgut
    • RE: Active sites using NodeBB

      why not create configurable heartbeats so you can automatically get a list of running nodebb instances

      Admins should be able to opt out though.

      posted in General Discussion
      belstgut
      belstgut
    • RE: Custom themes and the npm registry

      to install the package, see here: https://docs.npmjs.com/cli/install

      posted in Technical Support
      belstgut
      belstgut
    • RE: Custom themes and the npm registry

      you can have your theme as a folder or tarball aswell. just use npm install tarball or npm install folder you dont need to put it online

      posted in Technical Support
      belstgut
      belstgut
    • RE: Custom PHP Page
      var TeamSpeakClient = require("node-teamspeak"),
          util = require("util");
      
      var cl = new TeamSpeakClient("##SERVERIP###");
      cl.send("login", {client_login_name: "##USERNAME##", client_login_password: "##PASSWORD##"}, function(err, response, rawResponse){
          cl.send("use", {sid: 1}, function(err, response, rawResponse){
              cl.send("clientinfo", {clid: "##CLIENTID##"} ,function(err, response, rawResponse){
                  console.log(util.inspect(response));
              });
          });
      });
      

      this should connect you to your server, log u in, select virtual server 1, and print clientinfo for the client with id ##CLIENTID##.

      (slightly modified from the node-teamspeak example)

      posted in Plugin Development
      belstgut
      belstgut
    • RE: JavaScript edge cases

      have a look at this short talk: https://www.destroyallsoftware.com/talks/wat

      posted in General Discussion
      belstgut
      belstgut
    • RE: Custom PHP Page

      @DavidPS really? https://www.npmjs.com/search?q=ts3

      posted in Plugin Development
      belstgut
      belstgut
    • RE: Custom PHP Page

      there are teamspeak query packets for node.

      posted in Plugin Development
      belstgut
      belstgut