Click the Topic Tools button and Pin the Topic

Best posts made by belstgut
-
RE: Is there a way to make a post be "Sticky" alway show at the top of a category?
-
RE: JavaScript edge cases
have a look at this short talk: https://www.destroyallsoftware.com/talks/wat
-
RE: Custom themes and the npm registry
to install the package, see here: https://docs.npmjs.com/cli/install
-
RE: NodeBB website integration
you should check out Flarum. It is also build on Laravel: https://github.com/flarum/core
Latest posts made by belstgut
-
RE: Frontend freeze on version later than v1.0.2
did u run
./nodebb upgrade
?? -
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)
-
RE: Active sites using NodeBB
@Kowlin Thats why you should be able to disable it.
Make it an option during installation for example
-
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.
-
RE: Custom themes and the npm registry
to install the package, see here: https://docs.npmjs.com/cli/install
-
RE: Custom themes and the npm registry
you can have your theme as a folder or tarball aswell. just use
npm install tarball
ornpm install folder
you dont need to put it online -
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)
-
RE: JavaScript edge cases
have a look at this short talk: https://www.destroyallsoftware.com/talks/wat