[ a / b / c / d / e / f / g / gif / h / hr / k / m / o / p / r / s / t / u / v / vg / vr / w / wg ] [ i / ic ] [ r9k ] [ s4s ] [ cm / hm / lgbt / y ] [ 3 / aco / adv / an / asp / biz / cgl / ck / co / diy / fa / fit / gd / hc / his / int / jp / lit / mlp / mu / n / news / out / po / pol / qst / sci / soc / sp / tg / toy / trv / tv / vp / wsg / wsr / x ] [ Settings ] [ Home ]
Board
Settings Home
4chan Search `4chan` 18950 comments

Nod Edition

>What is /lig/?
/lig/ is a thread for viewers to find, share, and discuss indie vtubers who have on average 500 viewers or more.

>Why /lig/?
Large indie vtubers have more net fans, but they are outnumbered by 2views by the thousands. This is a thread for the VIP, regardless of what language they stream on.

>Can I shill my 499view oshi here?
Considering averages fluctuate widely, all the way down to 100 is reasonable. The minimal requirement however is being Twitch partner or the YouTube equivalent in numbers.

>Wait isn't that one a corpo?
/lig/ is a thread for chuubas of a decent size who aren't defined by their corporate branding, either due to the small size of the corporation or the independence and lack of oversight granted to the talents

>/lig/ Numbers
https://lignumbers.neocities.org/

>Twitch Clips Guide
https://pastelink.net/34vd5

>VOD Archival Guide
https://rentry.org/Vod_Archival_Guide

>/lig/ VOD Archive
https://rentry.org/Indie_Vod_Archives_lig

>Koikatsu cards
https://mega.nz/folder/JYtkXJwL#07gAQCQqI_9FsmX9oQJKSA

>/lig/ Wheel of Names
https://wheelofnames.com/49w-z2x

>Tiermaker
https://tiermaker.com/create/-lig--16586688-3

>/lig/ Chuuba Birthday Calendar (WIP)
https://www.canva.com/design/DAE-XgWodVg/ofLz4QC1yPPQ4T6TTAE0fw/edit?utm_content=DAE-XgWodVg

>Upcoming Birthdays
November 8th - Krumroll
November 9th - Bao & Leaflit
November 11th - Mint Castella
November 17th - Rummy
November 24th - Layna Lazar
November 27th - Dashducks
November 29th - Fanguu
November 30th - Inislein
December 8th - Froggyloch
December 10th - Veibae

>OC material for the OP
https://mega.nz/folder/IIVD1IaJ#cfsRhWdJvzneIoG8HZUPuw

>Ducks
https://www.twitch.tv/dashducks (embed) (embed) (embed) (embed)

Other useful threads:
>>>/vt//big/
>>>/vt//corpo/
>>>/vt//choc/
>>>/vt//flip/
>>>/vt//haha/
>>>/vt//indie/
>>>/vt//mint/
>>>/vt//swarm/
>>>/vt//vrt/
>>>/vt//xvsj+/

Previous Thread: >>106523190

Board: g Thread: 107072992 File: emasc.png ( 189.3KiB, 1200x1200 )
14 KB
189.3KiB.png
>Lisp is a family of programming languages with a long history and a distinctive parenthesized prefix notation. There are many dialects of Lisp, including Common Lisp, Scheme, Clojure and Elisp.

>Emacs is an extensible, customizable, self-documenting free/libre text editor and computing environment, with a Lisp interpreter at its core.

>Emacs Resources
https://gnu.org/s/emacs
https://github.com/emacs-tw/awesome-emacs
https://github.com/systemcrafters/crafted-emacs

>Learning Emacs
C-h t (Interactive Tutorial)
https://emacs-config-generator.fly.dev
https://systemcrafters.net/emacs-from-scratch
http://xahlee.info/emacs
https://emacs.tv

>Emacs Distros
https://spacemacs.org
https://doomemacs.org

>Elisp
Docs: C-h f [function] C-h v [variable] C-h k [keybinding] C-h m [mode] M-x ielm [REPL]
https://gnu.org/s/emacs/manual/eintr.html
https://gnu.org/s/emacs/manual/elisp.html
https://github.com/emacs-tw/awesome-elisp

>Common Lisp
https://lispcookbook.github.io/cl-cookbook
https://cs.cmu.edu/~dst/LispBook
https://gigamonkeys.com/book
https://lem-project.github.io
https://stumpwm.github.io
https://nyxt-browser.com
https://awesome-cl.com

>Scheme
https://scheme.org
https://try.scheme.org
https://get.scheme.org
https://books.scheme.org
https://standards.scheme.org
https://go.scheme.org/awesome
https://research.scheme.org/lambda-papers

>Clojure
https://clojure.org
https://tryclojure.org
https://clojure-doc.org
https://calva.io
https://clojure.land
https://www.clojure-toolbox.com
https://mooc.fi/courses/2014/clojure
https://clojure.org/community/resources

>Other
https://github.com/dundalek/awesome-lisp-languages

>Guix
https://guix.gnu.org
https://nonguix.org
https://systemcrafters.net/craft-your-system-with-guix
https://futurile.net/resources/guix
https://github.com/franzos/awesome-guix

>SICP/HtDP
https://web.mit.edu/6.001/6.037/sicp.pdf
https://htdp.org

>More Lisp Resources
https://lisp.nexus
https://rentry.org/lispresources
>>
>>107160795
Here's my work in progress.
(defun org-4chan-thread-render-front (buffer op)
(with-current-buffer buffer
(insert "#+title: " (alist-get 'sub op) "\n")
(insert "#+startup: indent\n\n")
))

(defun org-4chan-thread-render-post (buffer post)
(with-current-buffer buffer
(insert (format "* <%s> %d\n"
(org-4chan-convert-datetime (alist-get 'now post))
(alist-get 'no post)))
(let* ((a (point)))
(insert (format "%s\n\n" (alist-get 'com post)))
(let* ((b (point)))
(shr-render-region a b)
(let* ((c (point)))
(replace-regexp-in-region
(rx line-start "* ") " * " a c))))
(insert "\n")))

(defun org-4chan-thread-render (board thread)
"Create an org buffer with the contents the given thread."
(interactive)
(let* ((posts (alist-get 'posts thread))
(op (aref posts 0))
(buffer (get-buffer-create "*4chan thread*")))
(org-4chan-thread-render-front buffer op)
(cl-loop for p in (cl-coerce posts 'list)
do (org-4chan-thread-render-post buffer p))
buffer
))


Example:
ELISP> (org-4chan-thread-render "g" g-thread-lisp)
#<buffer *4chan thread*>

Then C-x b *4chan thread* RET.
>>
>>107160861
Now I can read 4chan at the library. They block 4chan.org, but they don't block 4cdn.org.

Board: bant Thread: 23587644 File: neko.jpg ( 159.8KiB, 1004x1170 )
14 KB
159.8KiB.jpg
I will cure incel status for 1 lucky 4chan user if an appropriate amount of money is raised. Minimum required bidding starts at 50,000 btc. 1st 100k btc adds another winner to the circle.

Board: soc Thread: 34490674 File: sfwd.jpg ( 3.0KiB, 225x225 )
14 KB
3.0KiB.jpg
>ASL
>About You
>Looking For
>Not Looking For
>Contact
>>
>ASL
28femaleUSA
>About You
Mom of one! A Bitchy and high maintenance mom takes on 4chan incels lol but I have my moments of sweetness! I’m not getting too detail specific about myself, you’ll have to converse with me to find out, I don’t play video games or watch anime so that knocks off 99% of you, but I’m not taking this that seriously, I’m up late can’t sleep and looking for random people to pass the time with
>Looking For
People who can stand their ground, who don’t give up easily, can hold a conversation, manly to some extent, flirtatious, sarcastic, mean>nice, smart
>Not Looking For
Emotionally and mentally fragile people, liars, money beggars / nude beggars / vc beggars, paranoid incels, submissives
>Contact
momisonline

Board: int Thread: 216644564 File: question.png ( 584.5KiB, 1045x1200 )
14 KB
584.5KiB.png
>>
14
1 man has 5 wives, 1 man has 1 wife, 2 men are gay/tranny for each other, 2 other men share 1 wife. the final man is a blackpilled incelmaxxing doomer posting on 4chan. nobody gives birth and the number of kids are made up for tax fraud

would (You) be happier as a girl?
>>
>>521042750
Fpbp and underrated.
The 4chan gooners and troons can't see anything beyond anime tiddies and "omg this is so me".

I just wanted to let everyone know that I can no longer vibe with the negativity on this board. The racism and sexism gets old and now that this culture is mainstream, it's just not that appealing to me since I'm a contrarian type. Anyways, I'm heading over to r/cryptocurrency. Its been good. Peace.
>>
>>61293318
i don't really see how 4 chan was right wing before gamer gate, i feel like that was a shifting point. "racism" was mostly used just cause it got pepper triggered and it was a normie filter, same for gore

Board: tv Thread: 215822484 File: elle.jpg ( 57.1KiB, 1250x834 )
14 KB
57.1KiB.jpg
Elle used to be a serious actress, what happened?
>>
>>215824904
>some anon the other night said
You were insulted? On 4chan? No! Riveting anecdote, chap!

Board: v Thread: 725409539 File: 11440940.jpg ( 203.9KiB, 1879x1055 )
14 KB
203.9KiB.jpg
>$800 Million
800 Million
>$800 Million
800 Million
>$800 Million
800 Million
>$800 Million
800 Million
>$800 Million
800 Million
>>
>>725411954
me on the back celebrating not falling for it
my brother and his friend in the front

>>725414412
my brother spent 280$ about 12 years ago too, i helped him sell it to another player like 4 years ago when he finally accepted it was never coming out
They pointed me to the second hand market in one of these 4chan threads actually, got back a 70% of the value spent


[ Advertise on 4chan ]

Style:
[ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 6 ] [ 7 ] [ 8 ] [ 9 ] [ 10 ]
[ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 6 ] [ 7 ] [ 8 ] [ 9 ] [ 10 ]
[ Disable Mobile View / Use Desktop Site ]

[ Enable Mobile View / Use Mobile Site ]

All trademarks and copyrights on this page are owned by their respective parties. Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.