OptionsPassword
Subject
Name
Comment
File

[1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [Catalog]

1 guest@cc 2020-08-10T02:57:30 [ImgOps] [iqdb]
File: 1597028130.png (PNG, 733.0B, 238x17)
xkill is like my anime superpower.
42 posts omitted
»
44 guest@cc 2021-12-31T05:56:16
>>42 Funny signature I found on the internet: https://github.com/yaychris/dvorak7min

--
____/| Ragnar Hojland (ragnar@ragnar-hojland.com) Fingerprint 94C4B
\ o.O| 2F0D27DE025BE2302C
=(_)= "Thou shalt not follow the NULL pointer for 104B78C56 B72F0822
U chaos and madness await thee at its end." hkp://keys.pgp.com
»
45 guest@cc 2022-02-23T06:21:34 [ImgOps] [iqdb]
File: 1657654654654647.png (PNG, 782.66KB, 659x1200)
キタ━━━(゚∀゚)━━━!!
»
46 guest@cc 2022-03-04T04:30:31
I can't figure out how the fuck to pan zoomed-in book images on archive.org.
Left-clicking advances the page. Middle-clicking advances the page. Right-clicking opens the context menu. Shift-left clicking, Ctrl-left clicking advances the page. Up advances the page. Down advances the page. Left, right advances the fucking page.

OH FUCKING OKAY it's the scroll wheel. got damn. well i'm going to post this anyway. fuck
»
47 guest@cc 2022-03-07T08:19:47
I had to stop using DuckDuckGo because
- the Japanese search suggestions were always incredibly pedophilic, despite some basic attempt to filter out obscenity
- the noscript DuckDuckGo gives entirely different, way lower quality results, listing the same unrelated results (manga, always the same titles and websites; or the index pages of porn, dlsite, and booth) for different search queries
»
48 guest@cc 2022-05-12T13:25:47
>>44
>Thou shalt not follow the NULL pointer, for chaos and madness await thee at its end.

That quote is from The Ten Commandments for C Programmers: https://www.lysator.liu.se/c/ten-commandments.html


1 guest@cc 2022-05-07T20:36:59
Where do I find the source code of Shitaba?
»
3 guest@cc 2022-05-08T04:10:18
>>2
Oops wrong software
https://github.com/ECHibiki/Kotatsu-V


1 guest@cc 2020-04-09T19:50:28
I have this obsession with implementing event loops, even when they're completely unnecessary. I don't know why, it's just the style of coding that makes the most sense to me.
5 posts omitted
»
7 guest@cc 2022-01-12T21:44:02
used to have one where I would call loop variables "iii" and "jjj" and "kkk" instead of "i" and "j" and "k"
»
8 guest@cc 2022-02-14T20:20:22
>>6
But, everything in Racket is an expression! Value of everything but price of nothing and all that.
»
9 guest@cc 2022-02-20T04:34:57
I have the tendency (though unintentionally) to create patches of code that keep my program running, but are never called or referenced once by anything else. It becomes bloat since you want to get rid of it, but you can't because for some reason it's vital to the architecture I've created.
»
10 guest@cc 2022-03-29T14:41:08
>>9
That's called being a bad programmer.
»
11 guest@cc 2022-04-25T00:38:24 [ImgOps] [iqdb]
File: mwakhzs18ad81.webp (WEBP, 22.85KB, 640x640)
>>10
Yeah, I know :(


1 guest@cc 2022-04-16T02:31:20 [ImgOps] [iqdb]
File: 1555355447424.png (PNG, 340.42KB, 572x642)
ok so if computational processes are beings that inhabit computers, people create programs to conjure those spirits and you have no magical power ability whatsoever then is there any hope for becoming a wizard
»
2 guest@cc 2022-04-16T08:55:04
Yes, just read the Holy Texts: https://en.wikipedia.org/wiki/The_C_Programming_Language
»
3 guest@cc 2022-04-16T10:49:28 [ImgOps] [iqdb]
File: sicp treasure.jpg (JPEG, 277.47KB, 1920x1080)
I can't believe I have to write spoilers to a textbook, but here it goes. Read at your own peril.

In the last two chapters the curtain is pulled back and you get to see how the wizard's magic works. It's part of the book's "story", they start with saying the computer science is not really a science but has more in common with magic. But this is not approving, they want it to mature into science and they gradually reveal what goes on behind the scene. Early science was also connected to magic and esotericism, hence the alchemist on the cover of the book. I think it is fitting because many people seem to be stuck in the "programming is reciting spells" phase for an embarrassing amount of time.

But yes, if you read SICP, it will teach you what you need to know to become a wizard and more.
»
4 guest@cc 2022-04-17T00:41:23
ok i will start making a hat


1 guest@cc 2021-10-25T09:11:32
https://edu.alibabacloud.com/elearning?spm=a2c4d.8764728.4363105600.3.712466638JdB6W

lots of jargons and names... i cant seem to remember them.
jsut like i dont remember all the characters from the comic i buy.

especially if they look substantially worthless.


1 guest@cc 2021-07-02T09:09:06 [ImgOps] [iqdb]
File: 8775867546454565857857.jpg (JPEG, 69.4KB, 525x393)
hello /cc/
Need some help on shell scripting. Could you help me how to make this code better?


#!/usr/bin/bash

DOING(){
duhhh=$(xclip -out)
xdotool mousemove 847 223 click 1 | sleep 0.1
xdotool mousemove 30 733 click 1 | sleep 0.1 | xdotool mousemove 30 733 click 1
xclip -t -selection "primary" -quiet -silent > /dev/null 2>&1
}

ADDITION(){
((duhhh++))
echo $duhhh
}


DOING
ADDITION


The thing about this script is, it doesn't work for the first run. Instead of echoing the real value, I got 1. But after do the second run, the value is correct as intended. "xclip" is a program equivalent to Ctrl+C and Ctrl+V where you can save selected line into clipboard for X11. If it tries to copy new value than before, same symptom happened. It always when running on the second time that works.
»
2 guest@cc 2021-07-04T01:11:18
>Instead of echoing the real value, I got 1
I'm guessing that duhhh is originally set to not an integer, try this in your shell

$ foo=aaaaaaaaaaaa
$ ((foo++))
$ echo ${foo}
1


Your code and use case is too specific for me actually test and fix your script.


1 guest@cc 2020-10-30T17:02:24
I've almost prepared the first release version of a decentralized textboard. It allows threads and replies to be shared between multiple servers, and threads are assigned to tags, rather than boards.

What kinds of features should my board have besides just these? It's still very minimalist -- a blank slate for progress!
16 posts omitted
»
18 guest@cc 2021-05-26T01:14:25
>>2
lol
»
19 guest@cc 2021-05-26T04:56:28
>>17
https://0chan.vip
or use a proxy or VPN or Tor or something
there's also a Tor node we federate with.
»
20 guest@cc 2021-06-03T09:15:36
Multichan now has boards:
https://0chan.vip/b/

It also has image embeds !
»
21 guest@cc 2021-06-05T08:39:46
hey, cool ad
»
22 guest@cc 2021-06-10T02:31:32
>>21
thanks! you're cool too!


1 kiroker 2021-04-05T01:29:29 [ImgOps] [iqdb]
File: 220px-Abel_crater_clementine_b… (JPEG, 14.27KB, 220x187)
The great awakening of world have began ladies in gentlemen.
Since when the great civilations of the world have hidden a secret that no man have revealed!
today will be you date to wake up from state of dream you been sleep for many centuries
maybe the goverments of world and the religious of world knows about it?
you are in state of a "DREAM from the metrix"
budda called it a 'illucion" life. reality being perceptual.The creation is holographic,
containing all.The entire creation is Cosmic perception in varying forms of vibrational
sound frequencies,containing octaves of knowledge.and forming dimensions containig that
knowledge Each of these dimensions are ordered by their own universal laws that apply to the
expansive potential of the information within the dimensions.
" Uncounsious mind"=data transfer.01 quatum computing.or autopilot.
The "preconscious" refers to the thoughts you aren"t actively thinking of but can call to mind
given the right trigger."Consciousness" the state of being awake and aware of one 's surroundngs.
"subconsciousness" of or concerning the part of the mind of which one is not full aware but which
one's actions and feelings.So you see your whole life is about "thoughts,feelings,emotions.= reality.
You Are a in computer prg.0a1. 'USE THE COHERRENT THOUGHTS TO UNDERSTAND THE METRIX'
»
2 guest@cc 2021-04-07T16:32:21 [ImgOps] [iqdb]
File: MAD DEADLY WORLDWIDE CONSPIRAT… (WEBM, 7.78MB, 150x113)
キタ━━━(゚∀゚)━━━!!


1 guest@cc 2018-06-01T17:36:14 [ImgOps] [iqdb]
File: 20180601_162848.jpg (JPEG, 842.24 KB, 2304x1296)
Anybody here into keyboards, modern or retro?
I just got my Wyse 85 Gate Array working today with a teensy and soarer's converter. It feels so good typing on this old as shit keyboard. I haven't even soldered the connection yet, just stuck em through. Sorry for shitty image quality; potato phone.

Typed on my WY85 Gate Array.
>inb4 winblows
»
2 guest@cc 2018-06-01T20:24:11
Looks like it would be really easy to keep clean.
»
3 guest@cc 2018-06-01T22:05:06
>>2
Well I took it out of its case. Right now (not in pic) I have it sitting on the bottom part with the legs out to slant towards me, I think it looks better this way.
»
4 guest@cc 2018-07-12T16:11:10
Unicomp / IBM model m and Lexmark non clicks model m
»
5 guest@cc 2021-03-06T13:54:42
>>1
Logitech.
»
6 guest@cc 2021-03-26T03:33:37
I'm using a keyboard called "Excalibur" by a company called Tesoro. It was my first time buying a mechanical keyboard, and I grabbed an inexpensive one to see how it felt. I believe this one has Blue switches, going by the feel and sound it makes.

It feels _really_ good to type on. It makes the times when I'm mind dumping in to a text file feel great. I was actually taken aback by it, since I was used to membrane keyboards.


1 guest@cc 2019-08-27T07:28:21 [ImgOps] [iqdb]
File: DSC00062.JPG (JPEG, 72.95 KB, 1280x960)
Pizza nazi thread
10 posts omitted
»
10 guest@cc 2020-01-19T20:19:46 [ImgOps] [iqdb]
File: SRS_CAT.png (PNG, 241.76KB, 539x358)
>>9
It's just a fucking pizza bro
You won't lose your virginity fucking a dough
»
13 We Are Pizza. 2020-03-03T06:01:41
>i want to have sex with pizza how does it feel
This is the kind of degeneracy we pizza face from these fat-slob excuses for persons. Too long have we been oppressed and digested. The pizza must not lay meanwhile. Unite! Together can our cheese again glimmer. Together we can rise. Let us at once resolve the {\sl obese} question. Reverse fortune! No longer to be burned to be eaten. No.
We are stronger.
»
14 guest@cc 2020-03-07T02:10:15
tasty
»
15 guest@cc 2021-03-06T07:43:20 [ImgOps] [iqdb]
File: pizza.gif (GIF, 6.1MB, 600x600)
Ayy pizza.
»
16 guest@cc 2021-03-07T22:22:34 [ImgOps] [iqdb]
File: pui-1.jpg (JPEG, 92.11KB, 969x1024)
the truck in the warm evening
smells of dough cheese and tomato
why do pizza so tasty???


1 guest@cc 2019-12-27T17:14:17 [ImgOps] [iqdb]
File: mpv-shot0550.jpg (JPEG, 421.59KB, 854x480)
https://www.bitchute.com/video/1pn5dFQmUNyh/ just found this today, thought maybe I'd share some hi-kwalidy content. I've also been looking into alternatives to YouTube. Peertube seems promising.
1 posts omitted
»
3 guest@cc 2019-12-29T22:42:56
I wouldn't use bitchute. It's one of those "free speech" platforms where the freedom is pretty much completely pretense.
»
4 guest@cc 2019-12-29T23:32:45
Some from /cc/ might be aware of Kugee. He's been pretty serious about his switch to Vlare.

https://www.youtube.com/watch?v=78QpGUE7xkU

So far I see nothing good about the site, which is why I'm a bit confused as to why this was the site he chose to swear by. Every single one of these english speaking youtube clones bring nothing interesting to the table. As expected, all of the recommended videos on vlare are about COPPA or commentaries on other popular youtubers.
»
5 guest@cc 2020-01-11T21:54:20
Don't use Nazi propaganda sites. You should try Peertube instead.
»
6 guest@cc 2020-01-12T12:39:31
>bitchute
>Nazi propaganda

They're willingly deleting any content that may label them as terrorists. Shove a cock up your ass
guest@cc 2020-01-15T16:39:45
The whole point of a side-thread is to reply to would-be derailers or make possibly thread derailing posts. It allows 4taba to maintain a calm atmosphere without the moderation being overly controlling
guest@cc 2020-01-12T21:27:59
also he derrailed the thread first by claiming such a big lie, I merely was the hammer to the nail
guest@cc 2020-01-12T21:17:06
wow, I always thought it was the moderation the one that was making these posts
guest@cc 2020-01-12T21:16:29
Huh, like this?
guest@cc 2020-01-12T17:28:40
You're supposed to make side-threads for posts like that. When you don't it means that you're either a dickhead who likes derailing threads, or don't know how to start side-threads to begin with (you put the number of the post you want to reply to in the options field)

As for bitchute deleting content, it means that they aren't peer to peer. Peer to peer content cannot easily be modified or deleted once shared. The platform is built on a lie.
»
7 guest@cc 2021-03-06T13:53:12
>>6
Bitcuck bans videos on Ukraine/Russia.


1 guest@cc 2018-06-05T17:17:21
So, Microsoft has bought Github.What do you think will happen?
I think this has the potential to turn out good, but it will probably just make Github a worse place.
21 posts omitted
»
23 guest@cc 2018-06-08T23:26:51
In the short run I don't think they'll change the platform much; Microsoft's name is a big enough garantee to get entreprise contracts to make it profitable and alienating Github users would ruin their latest "Microshit loves OSS" marketing trick. Seems like they're planning better integration with Visual Studio without discountinuing Atom.
Github will still be shit but hopefully they won't make it worse too fast.
»
24 guest@cc 2018-06-09T11:00:09
>>22
How does Microsoft using that software impair users' freedom?
»
25 guest@cc 2018-06-10T08:46:36
>>20
There was someone talking about it on /g/ yesterday.
https://boards.4chan.org/g/thread/66284364
»
26 guest@cc 2021-03-06T13:50:09
>>15
>Bad license

Yeah...
»
27 guest@cc 2021-03-06T13:51:22
>>12
Have you ever tried it or are one of those people that join the bandwagon just because of W10 Bad.


1 guest@cc 2019-11-06T06:29:22 [ImgOps] [iqdb]
File: atom.png (PNG, 117.02KB, 1200x1200)
Dear Ota-min,
Please add an ATOM feed for new threads per-board, and (please?) make an ATOM feed for new or non-sage comments. I'm very lazy and don't like to manually visit a bunch of different websites. Alternatively please e-mail me and we can discuss an API so that I can integrate your board into ANUS (Anonymous News Universal Scraper) a key component of Multi-Channel a federated textboard network.

e-mail: 52@4x13.net
8 posts omitted
»
8 guest@cc 2019-11-08T05:47:03
>>5
I do but I choose not to use that feature out of principal
»
9 guest@cc 2020-03-01T16:17:31
Tell me more about your ANUS (Anonymous News Universal Scraper)
It's a wonderful idea.
»
12 ANUStart 2020-03-03T05:42:23
>>8
>I do but I choose not to use that feature out of principal

Some sad-ass principle. (Pun unintended.) My principle is {\sl least information}; if In't need 'em known' it, let 'em n'know it.
»
13 guest@cc 2020-03-07T03:21:36
2kike thread
guest@cc 2021-03-08T11:48:38
2kike is a very handsome and smart dude
»
14 guest@cc 2021-03-06T09:02:15
>>1
RSS is dead.
guest@cc 2021-11-12T18:04:29
I use it all the time.


1 guest@cc 2019-07-14T07:54:50 [ImgOps] [iqdb]
File: Tintern_Abbey-inside-2004.jpg (JPEG, 1.78 MB, 2048x1536)
Today I confirmed my X/i3/lightdm doesn't like to get up at morning.
I wake up and startup my debian install, all's nominal.
I log in and it crashes, going back to the greeter screen.
I just go to a console and do my shit, suspecting there's some Y2K fuckery going on.
When 10 am rolls in, I restart the lightdm service and log in, successfully.

What a shithole this software is.
7 posts omitted
»
9 guest@cc 2020-07-24T03:37:05
>>7
>I doubt anyone who's ever typed "startx" has ever been invited to a party.

i used to dj parties with a dm-less netbook. i used an application called xwax which is an open source digivinyl player (in ncurses). digivinyl uses records pressed with a timecode tone (made for proprietary systems like serato or traktor) and plays audio files at the playback rate instructed by the timecode tone. if you pitch down (playback speed down) your turntable 6%, it slows the mp3 down 6%. so this would allow you to beatmatch and mix two different mp3s using vinyl on turntables as a user interface. one of my friends even scratched with it. i never learned how to scratch, but on the other hand my scratching friend never learned how to use computers. anyway i typed `startx' on that debian netbook a lot and have been invited to many parties so anon has failed to consider a corner case.
»
10 guest@cc 2020-07-24T15:46:23
You must be fun at parties.
»
11 guest@cc 2020-07-25T07:34:09
poetteringware, not even once
»
12 guest@cc 2020-07-29T19:10:18
>>7
Huh
I've been to parties but I'd rather be home tinkering with my linux machines lol
»
13 guest@cc 2020-09-24T00:59:17
>>11
yeah it was that


1 guest@cc 2018-07-23T23:52:09
Phones are so exciting, especially amalogue. You never know who might be at the other end of the line. Could be a scammer, or an alien displaced in the fourth dimension.
2 posts omitted
»
4 guest@cc 2018-07-27T08:45:10
when I pick up my phone its usually ABOUT YOUR CREDIT CARD ACCOUNT, THERES NOTHING WRONG WITH YOUR ACCOUNT, WE"RE JUSt HERE TO INFORM YOU YOU QUALIFY AS PART OF A PROGRAM TO HAVE YOUR INTEREST RATES LOWERED BY AS MUCH AS 20%, TO SPEAK TO A REPRESENTATIVE< PRESS 1, TO BE TAKEN OFF THIS LIST PRESS 9
»
5 guest@cc 2018-08-15T02:43:13
I just picked up my phone. The conversation went like this:
"Hello!"
"..."
*click*

The thought that my phone number's been added to several lists fills me with such excitement. Maybe some Chinese people will call and advertise who knows what?
»
6 guest@cc 2018-08-15T23:08:52
>>4
I keep on getting ones about health insurance. What's creepy is that this robot can tell when you say hello. If I don't say anything it says it's lines about health insurance but if I say "hi" or "hello" to it before it speaks it says "hello" before launching into the health insurance lines.
»
7 guest@cc 2018-08-16T00:33:31
Thinking about it, the unexpected phone calls haven't been coming in as frequently lately.
»
8 guest@cc 2020-09-22T11:51:33
>Could be a scammer, or an alien displaced in the fourth dimension

Is there a difference?

[1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [Catalog]Delete Post: