top:
day week month all

programming

Community for : 4.2 years

The Official Sub for Programming
__________
Have your say on any programming language, opinions and questions, memes and pics, are good.




Owner: system

Mods:












1
Exploiting and Mitigating Zero-Day Vulnerabilities     (chat-to.dev)
submitted by byte to programming 3 months ago (+1/-0)
0 comments...
1
How do I hide sensitive parts of my JavaScript code?     (chat-to.dev)
submitted by byte to programming 2 months ago (+1/-0)
5 comments last comment...
0
Risks I found in my open source project on Github     (chat-to.dev)
submitted by byte to programming 2 months ago (+2/-2)
1 comments last comment...
0
Clean Architecture: how to apply it in practice.     (chat-to.dev)
submitted by byte to programming 2 months ago (+1/-1)
0 comments...
0
💰💰 Raising investment for technology startups     (chat-to.dev)
submitted by byte to programming 2 months ago (+1/-1)
0 comments...
0
How to create a community that doesn't ban anyone.     (chat-to.dev)
submitted by byte to programming 2 months ago (+1/-1)
4 comments last comment...
1
How hackers dump databases on vulnerable systems     (chat-to.dev)
submitted by byte to programming 2 months ago (+2/-1)
0 comments...
1
Is Clean Code a waste of time?     (chat-to.dev)
submitted by byte to programming 2 months ago (+2/-1)
6 comments last comment...
1
Streams and Lambdas in Java Explained     (chat-to.dev)
submitted by byte to programming 1 month ago (+2/-1)
0 comments...
1
Microservices Communication Standards and Protocols     (chat-to.dev)
submitted by byte to programming 1 month ago (+1/-0)
0 comments...
1
Top 10 Programmer Desperation Phrases     (chat-to.dev)
submitted by byte to programming 1 month ago (+2/-1)
0 comments...
1
Code Error Triggers City-Wide Blackout Analysis     (chat-to.dev)
submitted by byte to programming 1 month ago (+1/-0)
0 comments...
1
Automated Testing in JavaScript: A Comprehensive Guide     (chat-to.dev)
submitted by byte to programming 2 weeks ago (+1/-0)
0 comments...
1
Arduino and its basic behavior     (chat-to.dev)
submitted by byte to programming 1 week ago (+1/-0)
0 comments...
0
A better C# producer/consumer using delegates and events.     (programming)
submitted by AugustineOfHippo2 to programming 3.0 years ago (+1/-1)
2 comments last comment...
using System;

namespace EventDelegates
{
public delegate void DelItemProduced(int item);

public class producer{
public event DelItemProduced onItemProduced;

public void produceItem(){
Random r = new Random();
for (int i = 0; i < 10; i++){
onItemProduced( r.Next(1,10) );
System.Threading.Thread.Sleep(1000);//wait
}
}
}//end class producer
public class consumer{
public void consumeItem(int item){
Console.WriteLine("item produced: " + item);
}
}//end class consumer
class Program {
static void Main(string[] args)
{
producer p1 = new producer();
consumer c1 = new consumer();

p1.onItemProduced += new DelItemProduced(c1.consumeItem);
p1.produceItem();
}
}//end class program
}

0
This explains what the confusing "self" parameter is in python.     (www.programiz.com)
submitted by Crackinjokes to programming 2.5 years ago (+0/-0)
1 comments last comment...
0
Monadic American Pyscho     (www.youtube.com)
submitted by v0atmage to programming 1.7 years ago (+0/-0)
0 comments...
0
Replace Co-Pilot for free: Codeium     (codeium.com)
submitted by Love240 to programming 1.2 years ago (+0/-0)
1 comments last comment...
https://codeium.com/

Just saw a video on it from gamefromscratch on youtube.
0
Discover the Future of Programming at chat-to.dev!     (programming)
submitted by byte to programming 10 months ago (+3/-3)
4 comments last comment...
Are you passionate about programming and want to be part of a vibrant and innovative community? Then join us at chat-to.dev, the new hub for developers who want to share, learn, and grow together. Here's why you can't miss this opportunity:

🚀 Create and Manage Topic-Specific Chat Rooms:
Find or create chat rooms focused on programming topics that interest you. Connect with other developers who share your passion and expand your knowledge.

📝 Post and Receive Valuable Feedback:
Share your ideas, projects, and questions about software development. Receive feedback from an engaged community and improve your skills with insights from other programmers.

🔥 Stand Out with TRENDS:
Earn karma and unlock the TRENDS feature. Highlight your personal trends, such as innovative projects, unique services, or groundbreaking products, and inspire other developers.

Don't waste any time! Visit www.chat-to.dev, sign up, and start being part of a community that values knowledge exchange and innovation in the programming world. Let's turn ideas into reality together!
0
Full Stack Web Development Roadmap     (chat-to.dev)
submitted by byte to programming 10 months ago (+1/-1)
1 comments last comment...
0
Case Study: Instagram Redesign, by Ian Spalter     (chat-to.dev)
submitted by byte to programming 10 months ago (+0/-0)
0 comments last comment...
https://chat-to.dev/post?id=69

the chat room is already in use. come and let's talk about programming and software development. https://chat-to.dev/chat?q=voat_code_guys
0
People are already leaving questions there      (programming)
submitted by byte to programming 10 months ago (+0/-0)
2 comments last comment...
The chat room for programmers here has already been created and there are new people interacting there, join in and let's make it livelier than any room in the world :p https://chat-to.dev/chat?q=voat_code_guys
0
Learn Ruby on Rails lesson 1     (chat-to.dev)
submitted by byte to programming 10 months ago (+0/-0)
6 comments last comment...
0
Some applications that every programmer does at the beginning and shouldn't do.     (chat-to.dev)
submitted by byte to programming 9 months ago (+1/-1)
0 comments...
0
What headers does voat use in its .htaccess to keep data safe?     (programming)
submitted by byte to programming 8 months ago (+0/-0)
1 comments last comment...