Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)NA
Nazrin @burggit.moe
Posts 2
Comments 3

this is cirno

0
Vote on whether or not oppai loli should be allowed.
  • You can split the communities pretty fine. There's Infantophilia (toddlercon), Pedophilia (5-11), Hebephilia (11-15), and Ephebophilia (15-19).

    You could also split for situational like clothed but lewd, loli butts, loli anal, straight loli, casual nudity, oral, western, non con, shololi, ect.

    If there's a fetish, there's a loli version of it.

    At this time, I suggest not splitting the community up too much. Save it for when you get 3-5 posts a day and it's becoming a problem. From there keep a community that allows all things loli, and add in some new communities that are more topic focused. If there's a more focused place to post something, people tend to post it there instead of the general channel.

  • General @burggit.moe Nazrin @burggit.moe

    Tampermonkey script to unblur thumbnails and make them bigger

    ``` // ==UserScript== // @name burggit // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://burggit.moe/* // @icon https://www.google.com/s2/favicons?sz=64&domain=burggit.moe // @grant none // ==/UserScript==

    (function() { {var css = [ " .img-blur {", " filter: none !Important;", " max-height: 160px !Important;", " }" ].join("\n"); if (typeof GM_addStyle != "undefined") { GM_addStyle(css); } else if (typeof PRO_addStyle != "undefined") { PRO_addStyle(css); } else if (typeof addStyle != "undefined") { addStyle(css); } else { var node = document.createElement("style"); node.type = "text/css"; node.appendChild(document.createTextNode(css)); var heads = document.getElementsByTagName("head"); if (heads.length > 0) { heads[0].appendChild(node); } else { // no head yet, stick it whereever document.documentElement.appendChild(node); } } } })(); ```

    5