Pohon BBS: recent posts Anonymous https://bbs.gikopoi.com/recent 2025-01-28T00:38:02+00:00 MINE CRAFT https://bbs.gikopoi.com/thread/1738024682/#1 2025-01-28T00:38:02+00:00 2025-01-28T00:38:02+00:00 MINE CRAFT IS FUN<br>my taijitu garden in a1.2.6<br>https://booru.gikopoi.com/post/view/225<br>https://booru.gikopoi.com/post/view/226<br>https://booru.gikopoi.com/post/view/227 New reply https://bbs.gikopoi.com/thread/1704728318/#1:26 2025-01-27T15:08:09+00:00 2025-01-27T15:08:09+00:00 Recently turned 80L of sugar wine (containing 12kg of sugar) into ~10 <br>bottles of vodka. It was an easy and smooth process. Something that's <br>really aided my hooching lately is adding a small amount of diammonium<br>phosphate and magnesium sulfate to the start of fermentation -- barely<br>a pitch, hardly a gram of each -- but it somehow makes a huge difference<br>in fermentation time. <br><br>I plan on turning most of it into gin, but with the vodka, I've made<br>some knock-off Bailey's that turned out amazing well (and only cost $1<br>to make a bottle of!) and tomorrow I'll try making a blood mary. Tomato<br>juice is not sold here so I intend to make some fake V8 from a mix of<br>tomato, carrot, salad greens, onion, bell pepper and then I'll add a <br>dash of worcestor sauce and hot sauce to the cocktail, along with some<br>lemon juice. <br><br>When I more-or-less perfect my Bailey's and Bloody Mary recipes I will<br>share them here. tripex 1.2 https://bbs.gikopoi.com/thread/1736035463/#1:2:3 2025-01-07T05:24:05+00:00 2025-01-07T05:24:05+00:00 tripex 1.2 release notes<br>+ -f flag to read a list of expressions from a file<br>* -s flag now takes an argument for when to begin/end stacking. negative values mean to stop stacking after the absolute value of the index.<br><br>apply the patch as follows (make sure to apply the previous patch first:)<br>patch tripex.c tripex-1.2.patch<br><br>then recompile the software as follows:<br>gcc tripex.c -o tripex -O3 -lcrypt<br><br>here's an example of the new features combined for efficient dictionary searches.<br>because expressions from argv are parsed after files, we have to put our first expression in it's own file :(.<br>'-s -1' means to stop stacking after the first expression, so it will first check if it is even possible to match with any of the dictionary expressions.<br><br>aspell -d en dump master | grep "^[a-z]\{5,5\}$" > len5dict.txt<br>echo "[a-z]\{5,5\}" > 5a-z.txt<br>./tripex -n $(nproc) -s -1 -f 5a-z.txt -f len5dict.txt<br><br>-----BEGIN FILE tripex-1.2.patch-----<br>13a14<br>> #define MAX_EXPRS 262144<br>18a20,23<br>> /* if i put this garbage on the stack instead of bss, it will segfault. */<br>> size_t n_exprs = 0;<br>> regex_t exprs[MAX_EXPRS];<br>> <br>21c26<br>< fprintf(stderr, "usage: tripex [-Ehilnmsv] expressions\n"<br>---<br>> fprintf(stderr, "usage: tripex [-Ef:hil:n:m:s:v] expressions\n"<br>22a28<br>> " -f\tread expressions from file (use '-' for stdin)\n"<br>28c34,46<br>< " -s\tstack expressions (logical AND)\n");<br>---<br>> " -s\tstack (logical AND) expressions before/after expr #n (negative for before)\n");<br>> }<br>> <br>> void appendExpr(regex_t exprs[], size_t *i, char *str, int re_flags)<br>> {<br>> /* avoiding malloc like the plague, simple and fast shitware!<br>> * if you somehow need more than MAX_EXPRS, change it & recompile.<br>> */<br>> if (*i >= MAX_EXPRS)<br>> errx(EXIT_FAILURE, "no %s-kun! it's too many exprs, it wont fit!", getlogin());<br>> if (regcomp(&exprs[*i], str, re_flags))<br>> errx(EXIT_FAILURE, "failed to compile regex '%s'", str);<br>> (*i)++;<br>34a53<br>> long stack_after = 0;<br>40c59<br>< while ((opt = getopt(argc, argv, "E:hil:m:n:sv")) != -1) {<br>---<br>> while ((opt = getopt(argc, argv, "E:f:hil:m:M:n:s:v")) != -1) {<br>44a64,81<br>> case 'f':<br>> FILE *fp = stdin;<br>> if (strcmp(optarg, "-") != 0)<br>> fp = fopen(optarg, "r");<br>> if (!fp)<br>> err(EXIT_FAILURE, "couldn't open regex file '%s'", optarg);<br>> <br>> char *line = NULL;<br>> size_t len = 0;<br>> ssize_t nread;<br>> while ((nread = getline(&line, &len, fp)) != -1) {<br>> *strchr(line, '\n') = '\0';<br>> appendExpr(exprs, &n_exprs, line, re_flags);<br>> }<br>> <br>> free(line);<br>> fclose(fp);<br>> break;<br>64a102<br>> stack_after = atol(optarg);<br>67c105<br>< printf("tripex 1.1 by taocana\n");<br>---<br>> printf("tripex 1.2 by taocana\n");<br>73d110<br>< <br>81c118,121<br>< if (argc < 1) {<br>---<br>> for (size_t i = 0; i < argc; i++)<br>> appendExpr(exprs, &n_exprs, argv[i], re_flags);<br>> <br>> if (n_exprs < 1) {<br>86,91d125<br>< size_t n_exps = argc;<br>< regex_t *exps = malloc(sizeof(regex_t) * n_exps);<br>< for (size_t i = 0; i < n_exps; i++)<br>< if (regcomp(&exps[i], argv[i], re_flags))<br>< errx(EXIT_FAILURE, "failed to compile regex");<br>< <br>97c131<br>< unsigned char key[key_len + 1]; /* dynamic array, bad form but i'm lazy */<br>---<br>> unsigned char key[key_len + 1];<br>100c134<br>< for (size_t n = 0; !max_tries || n < max_tries ; n++) {<br>---<br>> for (size_t n = 0; !max_tries || n < max_tries; n++) {<br>111,113c145,151<br>< for (size_t i = 0; i < n_exps; i++)<br>< if (regexec(&exps[i], trip, ARRAY_SIZE(pmatch), pmatch, 0))<br>< if (sflag)<br>---<br>> for (size_t i = 0; i < n_exprs; i++) {<br>> int stacking = (sflag<br>> && ((stack_after >= 0 && i >= stack_after)<br>> || (stack_after < 0 && i < -stack_after)));<br>> <br>> if (regexec(&exprs[i], trip, ARRAY_SIZE(pmatch), pmatch, 0))<br>> if (stacking)<br>117c155<br>< else if (!sflag || i >= n_exps - 1)<br>---<br>> else if (!stacking || i >= n_exprs - 1) {<br>118a157,159<br>> break;<br>> }<br>> }<br>123,125c164,165<br>< for (size_t i = 0; i < n_exps; i++)<br>< regfree(&exps[i]);<br>< free(exps);<br>---<br>> for (size_t i = 0; i < n_exprs; i++)<br>> regfree(&exprs[i]);<br>134a175<br>> /* unsigned for array lookups by character */<br>152c193<br>< if (!code)<br>---<br>> if (!code) /* doesn't fully handle crypt_r(3) errors yet */<br> sage https://bbs.gikopoi.com/thread/1704828644/#1:13 2025-01-06T11:22:39+00:00 2025-01-06T11:22:39+00:00 New reply https://bbs.gikopoi.com/thread/1718022829/#1:11 2025-01-06T11:09:14+00:00 2025-01-06T11:09:14+00:00 古 蛙 水 <br>池 飛 の <br>や 込 音 <br> む <br><br> tripex 1.1 https://bbs.gikopoi.com/thread/1736035463/#1:2 2025-01-05T06:05:26+00:00 2025-01-05T06:05:26+00:00 version 1.1, cryptography patch.<br>i forgot to audit the cryptography; i made a huge boneheaded mistake<br>with the key filter (thing that turns pure random bytes into printable<br>ascii) where it was skewing a lot. now it uses an 85 character subset<br>(256 % 85 = 1) which has a very tiny amount of skew but doesn't lose<br>as much entropy as an unskewed 64 character subset of ascii would.<br>the default key length is also increased to 10, so that it would be<br>~64 shannons of entropy total (a tripcode has 60 shannons.)<br><br>here is the patch file, apply it to the original as follows:<br>patch tripex.c tripex-1.1.patch<br><br>then recompile the program as follows:<br>gcc tripex.c -o tripex -O3 -lcrypt<br><br>-----BEGIN FILE tripex-1.1.patch-----<br>36c36<br>< size_t key_len = 8;<br>---<br>> size_t key_len = 10;<br>67c67<br>< printf("tripex 1.0 by taocana\n");<br>---<br>> printf("tripex 1.1 by taocana\n");<br>167a168,175<br>> /* we must get printable ascii from a random byte,<br>> * but 256 % 94 = 68 which leaves too much skew.<br>> * quantizing into 64 chars won't skew at all, but<br>> * it only has 6 shannons of entropy per character.<br>> * an 85 character quantization only skews by a<br>> * remainder of one, which is miniscule enough and<br>> * we average 6.41 shannons per character.<br>> */<br>169,176c177,192<br>< "{dDOFByx8Jdo=C.{hFw:'p%m+]E-*}~4"<br>< "O)YiM99y?%A)tldRIN4!fat`J|(iI+}h"<br>< "]59P#T_Qx#h0q8w+F,$}Vo5Gq;<rw]Y~"<br>< "k6>O~Ge,.DW9`hqhaSf#A.vrnhy`[2Ct"<br>< "Bb6|7Mr+iJZG5.&7>?K@{D~6*Vs'H_*>"<br>< "$Mh3R-F$Sp^.E5R-W1DnQzXC@Tf']xxt"<br>< "o`GLO'Ui`S/v,aegU2HkE3Y6y!WZm%?k"<br>< "aD/H=yH4vQg7dC*(Gx$vV[<vV?jw8s^d";<br>---<br>> "!#$%&'()*+,-./012"<br>> "3456789:;<=>?@ABC"<br>> "DEFGHIJKLMNOPQRST"<br>> "UVWXYZ^abcdefghij"<br>> "klmnopqrstuvwxyz~"<br>> "!#$%&'()*+,-./012"<br>> "3456789:;<=>?@ABC"<br>> "DEFGHIJKLMNOPQRST"<br>> "UVWXYZ^abcdefghij"<br>> "klmnopqrstuvwxyz~"<br>> "!#$%&'()*+,-./012"<br>> "3456789:;<=>?@ABC"<br>> "DEFGHIJKLMNOPQRST"<br>> "UVWXYZ^abcdefghij"<br>> "klmnopqrstuvwxyz~"<br>> "~";<br> tripex tripcode finding software https://bbs.gikopoi.com/thread/1736035463/#1 2025-01-05T00:04:23+00:00 2025-01-05T00:04:23+00:00 releasing version 1.0 of my tripcode finding program, 'tripex'<br><br>compile the program as follows:<br>gcc tripex.c -o tripex -O3 -lcrypt<br><br>example #1; find tripcodes containing 'nice' (case insensitive):<br>./tripex -n $(nproc) -i nice<br><br>example #2; find tripcodes starting with either 'giko' or 'mona':<br>./tripex -n $(nproc) ^giko ^mona<br><br>example #3; find fully lowercase tripcodes with quads:<br>./tripex -s -n $(nproc) "^[a-z]*$" "\(.\)\1\{3,\}"<br><br>untested on anything but GNU/Linux with glibc, but it would probably work on FreeBSD too.<br>don't trust any update posts unless they have my tripcode or you can audit them yourself!<br><br>-----BEGIN FILE tripex.c-----<br>/* CC0-1.0 */<br><br>#include <err.h><br>#include <crypt.h><br>#include <regex.h><br>#include <stdio.h><br>#include <stdlib.h><br>#include <string.h><br>#include <unistd.h><br><br>#include <sys/random.h><br><br>#define ARRAY_SIZE(x) (sizeof((x)) / sizeof((x)[0]))<br><br>static unsigned char saltFilter[256];<br>static unsigned char rngFilter[256];<br>char *tripcode(const char *key);<br><br>void usage(void)<br>{<br> fprintf(stderr, "usage: tripex [-Ehilnmsv] expressions\n"<br> " -E\tuse extended regular expressions\n"<br> " -h\tshow usage\n"<br> " -i\tignore case\n"<br> " -l\tkey length\n"<br> " -n\tnumber of threads\n"<br> " -m\tmax number of tries (per thread!)\n"<br> " -s\tstack expressions (logical AND)\n");<br>}<br><br>int main(int argc, char *argv[])<br>{<br> int re_flags = 0;<br> int sflag = 0;<br> size_t n_procs = 1;<br> size_t key_len = 8;<br> size_t max_tries = 0;<br><br> int opt;<br> while ((opt = getopt(argc, argv, "E:hil:m:n:sv")) != -1) {<br> switch(opt) {<br> case 'E':<br> re_flags |= REG_EXTENDED;<br> break;<br> case 'i':<br> re_flags |= REG_ICASE;<br> break;<br> case 'l':<br> key_len = atol(optarg);<br> if (key_len < 1)<br> errx(EXIT_FAILURE, "key length must be at least 1");<br> break;<br> case 'n':<br> n_procs = atol(optarg);<br> if (n_procs < 1)<br> errx(EXIT_FAILURE, "need at least one process");<br> break;<br> case 'm': /* ! PER THREAD ! */<br> max_tries = atol(optarg);<br> if (max_tries < 1)<br> errx(EXIT_FAILURE, "need at least one try");<br> break;<br> case 's':<br> sflag = 1;<br> break;<br> case 'v':<br> printf("tripex 1.0 by taocana\n");<br> return EXIT_SUCCESS;<br> case 'h':<br> /* FALLTHROUGH */<br> default:<br> usage();<br> <br> return EXIT_FAILURE;<br> }<br> }<br><br> argc -= optind;<br> argv += optind;<br><br> if (argc < 1) {<br> usage();<br> errx(EXIT_FAILURE, "need at least one expression");<br> }<br><br> size_t n_exps = argc;<br> regex_t *exps = malloc(sizeof(regex_t) * n_exps);<br> for (size_t i = 0; i < n_exps; i++)<br> if (regcomp(&exps[i], argv[i], re_flags))<br> errx(EXIT_FAILURE, "failed to compile regex");<br><br> for (int i = 1; i < n_procs; i++)<br> if (!fork())<br> break;<br><br> regmatch_t pmatch[1];<br> unsigned char key[key_len + 1]; /* dynamic array, bad form but i'm lazy */<br> key[key_len] = 0;<br><br> for (size_t n = 0; !max_tries || n < max_tries ; n++) {<br> if (getrandom(key, key_len, 0) < 0)<br> err(EXIT_FAILURE, "failed to get random key");<br><br> for (int i = 0; i < key_len; i++)<br> key[i] = rngFilter[key[i]];<br><br> char *trip = tripcode(key);<br> if (!trip)<br> err(EXIT_FAILURE, "failed to generate tripcode");<br><br> for (size_t i = 0; i < n_exps; i++)<br> if (regexec(&exps[i], trip, ARRAY_SIZE(pmatch), pmatch, 0))<br> if (sflag)<br> break;<br> else<br> continue;<br> else if (!sflag || i >= n_exps - 1)<br> printf("%s %s\n", trip, key);<br><br> free(trip);<br> }<br><br> for (size_t i = 0; i < n_exps; i++)<br> regfree(&exps[i]);<br> free(exps);<br> return EXIT_SUCCESS;<br>}<br><br>char *tripcode(const char *key)<br>{<br> /* we don't do any sjis conversion, but who cares anyway? */<br> if (strlen(key) == 0)<br> return NULL;<br><br> unsigned char *tempKey = malloc(strlen(key) + 2);<br> if (!tempKey)<br> return NULL;<br> strcpy(tempKey, key);<br> strcat(tempKey, "H.");<br><br> unsigned char salt[3];<br> for (int i = 0; i < 3; i++)<br> salt[i] = saltFilter[tempKey[i+1]];<br> salt[2] = 0;<br> free(tempKey);<br><br> struct crypt_data data;<br> bzero(&data, sizeof(struct crypt_data));<br><br> char *tempCode = crypt_r(key, salt, &data);<br> unsigned char *code = malloc(strlen(tempCode) - 3);<br> if (!code)<br> return NULL;<br> strcpy(code, tempCode + 3);<br> return code;<br>}<br><br>static unsigned char saltFilter[256] =<br> "................................"<br> ".............../0123456789......"<br> ".ABCDEFGHIJKLMNOPQRSTUVWXYZ....."<br> ".abcdefghijklmnopqrstuvwxyz....."<br> "................................"<br> "................................"<br> "................................"<br> "................................";<br><br>static unsigned char rngFilter[256] =<br> "{dDOFByx8Jdo=C.{hFw:'p%m+]E-*}~4"<br> "O)YiM99y?%A)tldRIN4!fat`J|(iI+}h"<br> "]59P#T_Qx#h0q8w+F,$}Vo5Gq;<rw]Y~"<br> "k6>O~Ge,.DW9`hqhaSf#A.vrnhy`[2Ct"<br> "Bb6|7Mr+iJZG5.&7>?K@{D~6*Vs'H_*>"<br> "$Mh3R-F$Sp^.E5R-W1DnQzXC@Tf']xxt"<br> "o`GLO'Ui`S/v,aegU2HkE3Y6y!WZm%?k"<br> "aD/H=yH4vQg7dC*(Gx$vV[<vV?jw8s^d";<br> New reply https://bbs.gikopoi.com/thread/1735532260/#1:2 2024-12-30T04:25:58+00:00 2024-12-30T04:25:58+00:00 I don't like it at all but a drop/get all button would be an ok solution <br>if too many people like the feature Streams open by default https://bbs.gikopoi.com/thread/1735532260/#1 2024-12-30T04:17:40+00:00 2024-12-30T04:17:40+00:00 As a limited experiment, all streams are open by default when you <br>join. How do you feel about this? Is it good or bad? Should there be<br>a button somewhere to open/close all streams?<br><br>I prefer if you share your opinions with your name so I can go with<br>what the community wants, per this issue. Thank you and happy holidays merp! https://bbs.gikopoi.com/thread/1735171653/#1 2024-12-26T00:07:33+00:00 2024-12-26T00:07:33+00:00 merp merp merp merp merp merp merp merp merp merp merp merp merp merp <br>merp merp merp merp merp merp merp merp merp merp merp merp merp merp <br>merp merp merp merp merp merp merp merp merp merp merp merp merp merp New reply https://bbs.gikopoi.com/thread/1734685733/#1:2 2024-12-22T17:09:41+00:00 2024-12-22T17:09:41+00:00 Glad you're alive boardsmin!<br><br>I don't think anyone here has your email address, but come play Gikopoi<br>before the end of the year if you can :) I'm sure there'll be quite a <br>few people showing up between Christmas and New Years<br><br>wishing you well hello, old friends ^___^ https://bbs.gikopoi.com/thread/1734685733/#1 2024-12-20T09:08:53+00:00 2024-12-20T09:08:53+00:00 doubt anyone remembers me around this corner<br>of the internet anymore, but im indeed still<br>around!! just lurking now <br><br>can't beleaf it's been almost 8 months (?)<br>since i last posted on one of these BBSes... i<br>guess im posting here specifically because of<br>its memorable-ness???? time flies man!!!!! i<br>recently got into baking, i made a really good<br>strawberry cake yesterday. im also an<br>alcoholic now #lifesgood<br><br>boards is still alive-iiiishhh, and it's about<br>to turn a year old!! ive moved on to newer<br>things, though. pikidiary is my new<br>microblogging site, heavily inspired by its<br>boardsian roots. much more normie-y, but still<br>fun.<br><br>anyways, i miss a lot of y'all!! email me if<br>you know who i am (⁠*´⁠︶`⁠) cya around!!!! New reply https://bbs.gikopoi.com/thread/1704828644/#1:12 2024-12-19T19:40:52+00:00 2024-12-19T19:40:52+00:00 test tripcode New reply https://bbs.gikopoi.com/thread/1710965870/#1:9 2024-12-16T18:48:11+00:00 2024-12-16T18:48:11+00:00 Does The Sixth Sense count? me and waifu saw that recently and we had a<br>lot of fun. Kind of a horror movie, kind of a detective movie... make <br>sure to watch it without spoilers :) New reply https://bbs.gikopoi.com/thread/1704728318/#1:25 2024-12-05T17:45:29+00:00 2024-12-05T17:45:29+00:00 Recently produced ~12 liters of "low wines" from sugar washes.<br><br>Biggest game changer in my fermentation for distillation lately:<br>I add a tablespoon or two of diammonium phosphate and tiny pinch of <br>magnesium sulfate per ~20L of ferment I do. Seems to make a pretty<br>big difference: ferments go faster and cleaner. <br><br>Picked up about 200g of baking soda (sodium bicarbonate) today and<br>converted it to washing soda (sodium carbonate) by throwing it in a<br>saucepan on the stove at a low heat and constantly stirring. Sure <br>enough, I could see the powder "boiling" -- despite wearing a face<br>mask, some funky smells came through. After about 20 minutes or so,<br>the texture of the powder appeared to change, and the powder seemed to<br>stop reacting. <br><br>Spilled a little in the process. Post-cook weight of sodium carbonate <br>was about 120g which is consistent with the theory. <br><br>Tomorrow I'll be throwing my 12 liters of "low wines" into the pot still<br>with 3-4 liters water and 4 tablespoons of washing soda. This should<br>result in a large volume of hearts, which will be turned into... gin!<br>this Saturday. <br><br>Stay tuned for updates. New reply https://bbs.gikopoi.com/thread/1731858662/#1:3 2024-12-01T14:55:44+00:00 2024-12-01T14:55:44+00:00 tes New reply https://bbs.gikopoi.com/thread/1731858662/#1:2 2024-11-18T02:18:47+00:00 2024-11-18T02:18:47+00:00 Set up an XMPP server too. Contact me on Matrix or somewhere else for<br>an account, if interested. New reply https://bbs.gikopoi.com/thread/1705384771/#1:27 2024-11-18T00:43:02+00:00 2024-11-18T00:43:02+00:00 [2024-11-18 00:38:14] gyudon_addict◆hawaiiZtQ6: persist this cock, persist these balls Matrix server launched https://bbs.gikopoi.com/thread/1731858662/#1 2024-11-17T15:51:02+00:00 2024-11-17T15:51:02+00:00 In the past I have hosted matrix-synapse servers on multiple <br>occasions; resource consumption was always the limiting factor that<br>led me to pull the plug on them. Maybe someday I'll launch an XMPP<br>server. Until then, please enjoy using our matrix-conduit server.<br>Say hi in #lounge:gikopoi.com or swing by the #relay:gikopoi.com room<br>to chat with our discord and irc friends. New reply https://bbs.gikopoi.com/thread/1705384771/#1:26 2024-11-15T13:38:36+00:00 2024-11-15T13:38:36+00:00 Archduke: what caste is your gf<br> New reply https://bbs.gikopoi.com/thread/1718022829/#1:10 2024-11-14T21:25:46+00:00 2024-11-14T21:25:46+00:00 zzazzachu: >ginsberg<br>zzazzachu: crooooooooognge<br>zzazzachu: slam poetry tier shite<br>zzazzachu: life is shit, capitalism. sucking cock. the material world.<br>zzazzachu: - "The World" zzazzzachu<br><br>zzazzachu: caravans, moving homes<br>zzazzachu: the hum of the diesel engine<br>zzazzachu: the sound of freedom<br>zzazzachu: I take a drag<br>zzazzachu: - "The FreeHum" zzazzachu<br><br>zzazzachu: in summary, ginsberg is shit and anyone can write that fake deep garbage<br>zzazzachu: he's a total fraud New reply https://bbs.gikopoi.com/thread/1710965870/#1:8 2024-11-05T20:02:55+00:00 2024-11-05T20:02:55+00:00 El Topo is a good one - a psychedelic Western released in 1970.<br><br>It's about a gunslinger in a nameless desert searching for enlightenment. The <br>movie deals heavily in Western and Eastern spiritual symbolism and philosophy. <br>A lot of bizarre occurences and characters - the movie at parts is very surreal <br>and almost comedic and in others is dramatic or very violent.<br><br>It's been watched by and has inspired a lot of creatives and in my opinion <br>should be watched at least once by anybody who says they enjoy cinema. (optional) https://bbs.gikopoi.com/thread/1729791464/#1:4 2024-11-02T08:40:08+00:00 2024-11-02T08:40:08+00:00 in nostr<br>- if Relay & Client go offline, where is content hosted?<br>- Relay stores content. Does it store entire archive of whole network? And able to read and see data stored & who posted what. Or be flooded.<br>- nostr seems like can't run decentralized sql, same poroblem of web3, ipfs (thats hosts only static content)<br> New reply https://bbs.gikopoi.com/thread/1719123784/#1:5 2024-10-30T22:57:26+00:00 2024-10-30T22:57:26+00:00 why ask, if correct font & formating yet to be implemented in Pohon by someone someday <br>& future request yet to be opened New reply https://bbs.gikopoi.com/thread/1719123784/#1:4 2024-10-30T22:53:31+00:00 2024-10-30T22:53:31+00:00 <br><br>                          /                         ヽ<br>                         /              /i                 ヽ         ___<br>                       /             / .!     1             '、      _/ : : `:><br>                   /          i.  ! |       |、          i      Yi:ー==く<br>                     /              |  l, 1     | 、    、1    1     __,ノ ゝ=='7’<br>                      /            i _l,L..、ヽ ヘ    '''T'弋-.   V|     } ,>'''^´      ' 、<br>                    ' ,ィ     i   .ィ7´ハ.   \ヽ     } 丶 i、  i|    /::´-‐:::.::::::.:::.:::ー-:..ヽ<br>                   /./ |    |   /}∥ マi、    `'ゝ り   ヽ ト、 i}   .∥:::.:::.:::.:::.:::.:::.:::.:::.:::.:::.::ハ<br>                  /   |    1  / リ    i\ i   ./リ _,,..、、,ユi_ヽi}.  ∥__:::.:.::: :::.:::.:::.:::.: ::.:::.:::.}<br>                 '´     |     l.../ _ムxr=ュミト ヾ`ーゝノ゙斤^::心 `》j!  ∥    ̄`^,,, ‐- 、:::.:::.:::.:::j<br>                      {     Yィi^ .わ^n;::h ´      {T::.゚:::ノ'} '/   ∥             `''ヾ7<br>                      1       い い、::゚ィリ         ヾニ=‐′/ ,ィ∥               .′<br>                       }.  ヽ   '、  `'ー‐'゚     ,     , , , //..,/)                 '<br>                       l'、   \ '、 , , , ,               '´ /i/./''フ         ┌v'^!<br>                       | ゙、    .弋^        _,.._        .'/´,.ィ'´'"_フ       ,, fヘ, l V {<br>                       } ヽ    ト .>       (.  )      イ7/_r≠'^フ     r、人 ヾ. V}<br>                        } i. ヘ,   |  i>.、,_           ,..イ... / / ,.ィ'''~        ヘ、`ミi, Y .}!<br>                     :! | 'ミ=k,_,{ィ亥 | ...i:`:ト-    - '^.{.....i.. 7  /            ,\ ヽ V〈<br>                       j! } <少'^トミミk.j  ,:r‐'1      | ̄`V  ,F'''':::ー:...、,__      ` \   }<br>                   ' '7 '″.| Y:_,...ノ≠  V'}       ^''1∥  ∥:::.:::.::.:::.:::.:::.  ̄``:-.、,_ ./   .′<br>                     / /7 _,.x‐|  1        ヽ       | i  ∥:::.:::.:::.:::.:::.:::.:::.:::.:::.:::.::::;;/    j<br>                     / / jィニh、|   '、        ヽ ,....、 .r‐‐j7   {-ー-::.、,_:::::.:::.:::.:::.:::.:::;:;/    j<br>                 / / /二ニニ{   トx.        ヘ    √く,_  `'7-=、:::.:::.``丶:、:_:.:::;:;{    jL.、 .<br>. .