Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Tags
    • Users
    • Groups
    1. Home
    2. xbenjii
    X
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    xbenjii

    @xbenjii

    11
    Reputation
    34
    Posts
    679
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    xbenjii Follow

    Best posts made by xbenjii

    • RE: User Administration

      I'm all for this, considering:

      https://community.nodebb.org/topic/2793/love-marriage-problem-solution-91-9982822666
      https://community.nodebb.org/topic/2792/vashikaran-specialist-baba-9982822666
      https://community.nodebb.org/topic/2791/black-magic-sdpecialist-91-9982822666
      https://community.nodebb.org/topic/2790/91-9982822666-husband-wife-love-problem-solution-baba

      xD

      posted in Feature Requests
      X
      xbenjii
    • RE: How do i install nodebb on channel file manager!

      @Var1 said:

      @xbenjii Still i like the shared cloud hosting, i don't want VPS.

      You mean you don't like paying for things, since x10 is a free (and absolutely terrible) host (also not cloud). 🙂

      posted in General Discussion
      X
      xbenjii
    • RE: Who is in? Plugin

      Really nice idea, though might I suggest something like

      /(?:who is|who's) in\?/gi
      

      to capture the text.

      posted in NodeBB Plugins
      X
      xbenjii
    • RE: NodeBB could not reach the package manager

      @julian said:

      @xbenjii that should have no effect on the package suggestions system... navigating to the url provided seems to work fine as well...

      But they're accessing it cross-domain aren't they? Is this not a CORS issue?

      Assuming this is the code issuing the error.

      In https://github.com/NodeBB/nodebb-package-manager/commit/bb079befc7af0d74fa12a11b855a4bb9057bffae you removed all the middleware, including the CORS header.

      0 julianlam committed to NodeBB/nodebb-package-manager
      removed unused sections of nbbpm, made it api-only, basically
      posted in Bug Reports
      X
      xbenjii
    • RE: Is it possible to change the language used on, say, empty topics

      Yep. You can change it in:

      /public/language/<your language>/category.json
      
      "no_topics": "<strong>There are no topics in this category.</strong><br />Why don't you try posting one?"
      
      posted in General Discussion
      X
      xbenjii
    • RE: Who is in? Plugin

      @Schamper said:

      Nice! Is there source available yet?

      How do you parse the "who is in" string? What happens if someone puts it in the middle of a sentence? Does it also work on every post in a topic of just first post?

      Looks like it's just a direct replace on each post, not just the first.

      postContent = postContent.replace(/Who is in\?/gi, mainTemplate);
      
      posted in NodeBB Plugins
      X
      xbenjii
    • RE: Who is in? Plugin

      @Schamper said:

      @xbenjii why wouldn't it work? That regex should work as long as there's a line with "Who is in?". You can have as much text around it in different paragraphs as you want. Maybe you didn't notice the m modifier?

      Whups, missed that xD. Just saw the start/end anchors.

      posted in NodeBB Plugins
      X
      xbenjii

    Latest posts made by xbenjii

    • RE: Introducing the NodeBB 0.7.0 Persona preview

      Oh wow, looks great!

      posted in Announcements
      X
      xbenjii
    • RE: NodeBB could not reach the package manager

      @julian said:

      @xbenjii that should have no effect on the package suggestions system... navigating to the url provided seems to work fine as well...

      But they're accessing it cross-domain aren't they? Is this not a CORS issue?

      Assuming this is the code issuing the error.

      In https://github.com/NodeBB/nodebb-package-manager/commit/bb079befc7af0d74fa12a11b855a4bb9057bffae you removed all the middleware, including the CORS header.

      0 julianlam committed to NodeBB/nodebb-package-manager
      removed unused sections of nbbpm, made it api-only, basically
      posted in Bug Reports
      X
      xbenjii
    • RE: NodeBB could not reach the package manager

      Most likely related to the removal of https://github.com/NodeBB/nodebb-package-manager/commit/bb079befc7af0d74fa12a11b855a4bb9057bffae#diff-2b137e40025e00eb45b66941ad8d4ddfL148

      0 julianlam committed to NodeBB/nodebb-package-manager
      removed unused sections of nbbpm, made it api-only, basically
      posted in Bug Reports
      X
      xbenjii
    • RE: HTML JSON form submission spec, W3

      Nice to see the W3 community has a sense of humour 😄

      EXAMPLE 6: Such Deep
      <form enctype='application/json'>
        <input name='wow[such][deep][3][much][power][!]' value='Amaze'>
      </form>
      
      // produces
      {
          "wow":  {
              "such": {
                  "deep": [
                      null
                  ,   null
                  ,   null
                  ,   {
                          "much": {
                              "power": {
                                  "!":  "Amaze"
                              }
                          }
                      }
                  ]
              }
          }
      }
      
      posted in General Discussion
      X
      xbenjii
    • RE: Prevent empty widget areas from being hidden

      Probably this line here.

      if (!renderedWidgets.length) {
      	area.addClass('hidden'); //Remove this.
      	ajaxify.widgets.reposition(location);
      }
      

      https://github.com/NodeBB/NodeBB/blob/master/public/src/widgets.js#L68

      posted in NodeBB Themes
      X
      xbenjii
    • RE: Screen Capture Tool

      I use Sharex 🙂 It allows me to grab a region, upload to my server and copy the link, all in one button. 🙂

      posted in Feature Requests
      X
      xbenjii
    • RE: Inbox for Google

      Got 3 invites, chat me your email and I'll send you one.

      posted in General Discussion
      X
      xbenjii
    • RE: What editor do you use?

      Sublime for JavaScript, Netbeans for PHP.

      posted in General Discussion
      X
      xbenjii
    • RE: The spam is real.

      @a_5mith said:

      @bentael, any chance akismet can be trained to look at the topic title as well as the post content. Current spam is only in the title. Whether the title is included in post content or something like that.

      Could it be something as simple as changing

      comment_content: data.content,
      

      to:

      comment_content: data.title + data.content,
      
      posted in General Discussion
      X
      xbenjii