-  [WT]  [PS]  [Home] [Manage]

  1.   (new thread)
  2. [ No File]
  3. (for post and file deletion)
/pr/ - Programming
  • Supported file types are: GIF, JPG, PNG, WEBM
  • Maximum file size allowed is 10000 KB.
  • Images greater than 200x200 pixels will be thumbnailed.
  • Currently 466 unique user posts. View catalog

  • Blotter updated: 2018-08-24 Show/Hide Show All

Movies & TV 24/7 via Channel7: Web Player, .m3u file. Music via Radio7: Web Player, .m3u file.


Basement Dwelling Neckbeard 26/02/19(Thu)03:44 No. 5832 [Reply]
5832

File 177146908518.jpg - (42.18KB , 750x832 , 20210713_124037.jpg )

I'm wondering if I should use the rchan engine to build a imageboard project. I am brazillian, and I want to make a full brazillian Imageboard, and the only engine made by a brazillian I found was this one:
https://github.com/lainsec/rchan
This is a lain themed engine made with python and Flask
It uses Sqlite as default stack, but I will change to mongoDB. But I'm not sure if its secure. What do you guys think?
I'm planning to run this on a intel core i3 + 16gb ram and 250gb storage VPS. Also, the engine just got updated while I was posting.


>>
Basement Dwelling Neckbeard 26/02/19(Thu)22:22 No. 5834

Why would you care who the fuck made the software stack, OP?

>It uses Sqlite as default stack, but I will change to mongoDB.
Why would you want that? Mapping a relational schema to NoSQL seems pretty silly. PostgreSQL or MariaDB would make more sense if SQLite doesn't convince you.




Didn't get very far Basement Dwelling Neckbeard 26/01/31(Sat)00:39 No. 5821 [Reply]
5821

File 176981636253.jpg - (369.85KB , 1024x768 , Green Sea Turtle.jpg )

/* gcc -pthread telserve_*.c */ #include "telserv/globals.h" #include "telserv/connect.h" int main(int argc, char *argv[]){ int c; int read_size; server.sockID = socket(AF_INET, SOCK_STREAM, 0); if(server.sockID < 0){ perror("Socket Failure"); } else{ perror("Socket Creation"); } server.address.sin_family = AF_INET; server.address.sin_addr.s_addr = INADDR_ANY; server.address.sin_port = htons(PORT); if(bind(server.sockID, (struct sockaddr *) &server.address, sizeof(server.address)) < 0){ perror("Bind Failed"); } else{ perror("Bind Socket"); } for(client_cnt = 0; client_cnt < MAX_USERS; client_cnt++){ if(listen(server.sockID, 3) < 0){ perror("Failure to listen"); } else{ printf("Server listening on port %d\n", PORT); } c = sizeof(struct sockaddr_in); if(player[client_cnt].client.sockID = accept(server.sockID, (struct sockaddr *) &player[client_cnt].client.address, (socklen_t*)&c)){ puts("Connection Accepted"); pthread_create(&player[client_cnt].client.thread_id, NULL, connection_handler, (void*) &player[client_cnt].client.sockID); /*pthread_join(client[client_cnt].thread_id, NULL);*/ puts("Handler assigned"); } } return 0; }


Digging through some old projects and found this experiment I was working on. I think the idea was a p2p network from scratch. User data, messages, etc would be prepped into an xml file and shared accross contacts. By including mutual contexts in the requested xml the network could be self sustaining and eliminate the need for central company host or tracker. I have some handwritten notes here somewhere..
It's basically the concept behind distributed hash tables I think.


1 post omitted. Click Reply to view.
>>
Basement Dwelling Neckbeard 26/01/31(Sat)05:17 No. 5823

Stick with one until you have a minimally viable working product!


>>
Basement Dwelling Neckbeard 26/01/31(Sat)05:23 No. 5824

Isnt this what Tox is?


>>
Basement Dwelling Neckbeard 26/01/31(Sat)16:12 No. 5826

>>5824
That wiki page was a wild ride.
And yes, it looks like that group of college educated computer programmers built approximatly what I wanted to. I find it really cool to know that I had the right idea, but just lacked the skillz and resources to actually do it. I do have more skills and resources now... maybe it's time to circle back to this.

>>5823
lol what product? Can't put advertising on a decentralized network lel




Basement Dwelling Neckbeard 26/01/30(Fri)13:45 No. 5816 [Reply]
5816

File 176977711190.jpg - (112.75KB , 1100x1060 , folio-photonics-active-archive-storage-technology-.jpg )

Do people still use this board?


>>
Basement Dwelling Neckbeard 26/01/30(Fri)18:10 No. 5817

>>5816
Not since python was invented :-(


>>
Basement Dwelling Neckbeard 26/01/31(Sat)00:22 No. 5819

>>5816
There are still people here to answer questions (as well as an IRC channel #programming). That said, there is not much in the way of posts here anymore aside from "What should be my first language?" to which the answer is inevitable "It depends."


>>
Basement Dwelling Neckbeard 26/01/31(Sat)05:26 No. 5825

>>5819
I had a friend who was super into CS and linux at school, and he also knew about Bitcoin just as it became a thing before anyone in the news talked about it so I'm assuming hes a millionaire now. Always wanted to hang out with those kids but we had macs at home and i didnt really know how to even get started learning back then, so I remained a luddite. i wish i learnt programming sooner, the whole web just feels so controlled and dead/hindi internet theory now. I've decided to learn Forth as my 1st programming language because i am a special snowflake




how can i hack? satinofsatan 26/01/05(Mon)10:19 No. 5811 [Reply]

please teach me how to hack. But not super illegal activities. :3

(skiddie diddie doo)


>>
Basement Dwelling Neckbeard 26/01/05(Mon)11:08 No. 5812

>>5811
Get a usb stick with an os loaded with hacking tools, also don't hack unless you actually need to, use that time tu purge yourself online and backup your data instead. And get off of apple, google, meta and micro. Time much better spent than harassing random normies.




Your company is spying on you! Basement Dwelling Neckbeard 25/11/24(Mon)18:00 No. 5808 [Reply]
5808

File 176400363046.jpg - (138.58KB , 1780x1320 , 2005.jpg )

If you want to see what your company is monitoring on your work laptop, search your user folder (C:\Users\yourusernamehere\) for PolicyNudgeClassification.

You will find an .xml file call PolicyNudgeClassificationDefinitions_randomcharshere.XML.

In this file you can see what data your company is monitoring and/or blocking.

And you can use this to bypass those policies by removing or changing those keywords they are looking for.

Spread the word! Tell us what you find on your machine.




Code Thread butter 23/04/05(Wed)23:43 No. 5608 [Reply]
5608

File 168073103377.png - (70.13KB , 694x669 , hmm.png )

Post funny/weird/cool codes, any code u saw that pick your attention and made u want to share:

def my_map(fuck, asses): sex = [] for ass in asses: sex.append(fuck(ass)) return sex


14 posts and 7 images omitted. Click Reply to view.
>>
github.com/GaMaDeCa 25/10/10(Fri)22:39 No. 5801


I love #define, why java or python don't support it?


>>
Basement Dwelling Neckbeard 25/10/11(Sat)03:23 No. 5803

>>5801
> I love #define, why java or python don't support it?
It looks fun! šŸ˜€


>>
Basement Dwelling Neckbeard 25/11/03(Mon)21:09 No. 5806

>>5801
That motherfucker actually flipped the syntax of the #define directives. It's #define rn ; not #define ; rn!




"the user profile service service failed the sign-in" Basement Dwelling Neckbeard 25/06/04(Wed)08:11 No. 5757 [Reply]
5757

File 174901750228.png - (2.20KB , 483x293 , images (2).png )

Now I 'm having trouble with "the user profile service service failed the sign-in," Does anyone have solutions?


>>
Basement Dwelling Neckbeard 25/06/04(Wed)14:45 No. 5758

fuck it, just don't sign in


>>
Basement Dwelling Neckbeard 25/06/04(Wed)15:31 No. 5759
5759

File 174904386693.png - (271.56KB , 460x459 , 1718523921888859.png )

right-click, "inspect", and write the html for the page you want to see. you gave zero context, so this is the best answer you'll get.


>>
Basement Dwelling Neckbeard 25/10/10(Fri)11:19 No. 5800


Sign up with a valid e-mail address




infini.wtf infini 25/10/04(Sat)15:19 No. 5797 [Reply]
5797

File 175958396725.png - (2.21MB , 2010x1370 , man.png )

Built a visual search engine for Reddit content. Got 1M+ images/GIFs/videos searchable so far. SFW and a lot of NSFW.

Search uses AI (similar to OpenAI CLIP) to understand image content, not just titles or keywords. Website is built with Ruby on Rails and vanilla JS.

> Feedbacks appreciated. Try here:
https://infini.wtf


>>
Basement Dwelling Neckbeard 25/10/05(Sun)02:02 No. 5798

Serious work. You'll probably be able to monetize it well.

But the search engine is lacking intelligence.

What does reddit think about your work?




Using text recognition software on website archives? Basement Dwelling Neckbeard 20/12/05(Sat)17:31 No. 5435 [Reply]
5435

File 160718589761.jpg - (41.84KB , 640x480 , 1607051047913.jpg )

Null of Kiwi Farms recently stated that he'll release archive of the site minus user data when section 230 is repealed, in torrent form. Does anyone have any advice on automating text recognition software on that archive so I can build a database of hashes for comparison to other sites?

I'd love nothing more than for every Kiwi Farms user to be doxed and sued into oblivion.


16 posts omitted. Click Reply to view.
>>
Basement Dwelling Neckbeard 25/05/11(Sun)06:02 No. 5748

>>5719
Sounds more like the FBI is making up shit in order to arrest politically unconvenient people.


>>
Basement Dwelling Neckbeard 25/08/27(Wed)09:34 No. 5793

>>5748
When you arrest somebody you have to take them to court where a judge examines the presented evidence to ensure it all checks out. The FBI can't arrest somebody and be like "throw this guy in prison trust me bro"

There was one darknet guy who was traced because he used the term "hiyas" a lot. Can't remember who it was. I'd be surprised if the NSA isn't building a massive AI which does indeed attempt to identify people by their writing style and automatically builds profiles on them


>>
Basement Dwelling Neckbeard 25/08/27(Wed)09:41 No. 5794

>>5793
I switch up my typing style some time specifically because of this.




Distro choice Cutie~ 25/05/28(Wed)15:46 No. 5754 [Reply]

I am currently using Arch Linux Nya~. Should i switch to Gentoo?


>>
Basement Dwelling Neckbeard 25/06/06(Fri)07:19 No. 5762

It may be worthwhile to at least try Gentoo for a learning experience. However, the real world gains from compiling everything from source specifically for your build are often not worth the time investment in the era of cheap hardware.


>>
Basement Dwelling Neckbeard 25/08/07(Thu)01:10 No. 5791

>>5762
just use binpkg.
You can pretty much have the best of both worlds.





Delete post []
Password  
Report post
Reason