-
20 votes
-
Fortnightly Programming Q&A Thread
General Programming Q&A thread! Ask any questions about programming, answer the questions of other users, or post suggestions for future threads. Don't forget to format your code using the triple...
General Programming Q&A thread! Ask any questions about programming, answer the questions of other users, or post suggestions for future threads.
Don't forget to format your code using the triple backticks or tildes:
Here is my schema: ```sql CREATE TABLE article_to_warehouse ( article_id INTEGER , warehouse_id INTEGER ) ; ``` How do I add a `UNIQUE` constraint?
8 votes -
Results from the 2020 Stack Overflow Developer Survey
19 votes -
Analyzing the simplest C++ program
12 votes -
What programming/technical projects have you been working on?
This is a recurring post to discuss programming or other technical projects that we've been working on. Tell us about one of your recent projects, either at work or personal projects. What's...
This is a recurring post to discuss programming or other technical projects that we've been working on. Tell us about one of your recent projects, either at work or personal projects. What's interesting about it? Are you having trouble with anything?
10 votes -
Bear – Minimal blogging platform
14 votes -
Qt 5.15 LTS Released
6 votes -
Sublime Merge 2 - Features and Flexibility
12 votes -
What programming/technical projects have you been working on?
This is a recurring post to discuss programming or other technical projects that we've been working on. Tell us about one of your recent projects, either at work or personal projects. What's...
This is a recurring post to discuss programming or other technical projects that we've been working on. Tell us about one of your recent projects, either at work or personal projects. What's interesting about it? Are you having trouble with anything?
14 votes -
I created a simple JS library for the Johns Hopkins University CSSE COVID-19 data
8 votes -
What programming/technical projects have you been working on?
This is a recurring post to discuss programming or other technical projects that we've been working on. Tell us about one of your recent projects, either at work or personal projects. What's...
This is a recurring post to discuss programming or other technical projects that we've been working on. Tell us about one of your recent projects, either at work or personal projects. What's interesting about it? Are you having trouble with anything?
16 votes -
Code is Speech?
10 votes -
A Google Cloud support engineer solves a tough DNS case
7 votes -
Fortnightly Programming Q&A Thread
General Programming Q&A thread! Ask any questions about programming, answer the questions of other users, or post suggestions for future threads. Don't forget to format your code using the triple...
General Programming Q&A thread! Ask any questions about programming, answer the questions of other users, or post suggestions for future threads.
Don't forget to format your code using the triple backticks or tildes:
Here is my schema: ```sql CREATE TABLE article_to_warehouse ( article_id INTEGER , warehouse_id INTEGER ) ; ``` How do I add a `UNIQUE` constraint?
12 votes -
new.css - a classless CSS framework to write modern websites using only HTML
20 votes -
Scrivenvar: A text editor with built-in R functionality
5 votes -
The UNIX and the Echo
5 votes -
Promise.all vs Promise.allSettled
3 votes -
What programming/technical projects have you been working on?
This is a recurring post to discuss programming or other technical projects that we've been working on. Tell us about one of your recent projects, either at work or personal projects. What's...
This is a recurring post to discuss programming or other technical projects that we've been working on. Tell us about one of your recent projects, either at work or personal projects. What's interesting about it? Are you having trouble with anything?
12 votes -
moderncss.dev - A series examining modern CSS solutions to old CSS problems
15 votes -
Making of Impacts – Programming ⋂ Art
6 votes -
SMTP: A Conversation
9 votes -
What makes a good developer?
I asked this question over on HN but I thought I would ask it here as well. A little context. I'm currently a junior in a middle of the road state university studying for a degree in software...
I asked this question over on HN but I thought I would ask it here as well.
A little context. I'm currently a junior in a middle of the road state university studying for a degree in software engineering. I have been doing a lot of reading - whether it be comments on Reddit, articles, etc - and it appears that there is an abundance of junior developers looking to enter the job market, but very few "good developers".
My question is, what is it that sets someone apart as a good developer? I know this question is very vague but it's also very vague whenever I see it used.Thank you for your time.
EDIT: I plan on going through and reading all of your input and responding! Thank you so much for your time. Unfortunately, I am stuck finishing up last minute school work. Can't wait to dig into this.
15 votes -
Keybase, Zoom and Messaging
11 votes -
Automating Safeway's coupon API
6 votes -
Something I Built: nginxpages - GitHub Pages-like static sites, but self-hosted
23 votes -
How Emacs should get more users: A response to Making Emacs popular again
8 votes -
Coding bootcamp Flatiron School also hit by WeWork cuts
4 votes -
Rebuilding our tech stack for the new Facebook.com
12 votes -
NHS publishes source code for UK contact tracing app
8 votes -
Is it OK to use pop media reference for a personal domain name?
I'm finally in a position in my life to afford a personal domain. The name I'd like to use is name of an episode from a moderately popular TV series. The series ended its run few years ago, but...
I'm finally in a position in my life to afford a personal domain. The name I'd like to use is name of an episode from a moderately popular TV series. The series ended its run few years ago, but I'm not sure how copyright/trademarks work.
So far, I'm planning a strictly noncommercial personal use only. Will the choice of domain name be any trouble down the road?
9 votes -
Should x < $foo < y read from $foo once or twice? Perl debates
6 votes -
I’m a developer. I won’t teach my kids to code, and neither should you
19 votes -
Critical RCE vulnerabilities in SaltStack result in server breaches for LineageOS, Ghost, DigiCert, and more
15 votes -
IBM System/370 Mainframe emulated on a Raspberry Pi Zero
@brianroemmele: I will let out a bit of a secret. I have been running a full IBM System/370 Mainframe on a $5 Raspberry Pi Zero for ~5 years. About 7 times faster System/370. Millions of lines of COBOL JCLs running flawless on a battery. Tested an entire bank's mainframe COBOL on it.
13 votes -
LaTeX: Using a different font for glyphs used in commands like \sum
Hello everyone. I consider myself fairly competent when it comes to my work with LaTeX, but as everyone who uses it knows, it is definetely strange sometimes. And right now I have a problem which...
Hello everyone. I consider myself fairly competent when it comes to my work with LaTeX, but as everyone who uses it knows, it is definetely strange sometimes. And right now I have a problem which just irks me in the wrong ways:
I use XeTeX and a number of custom fonts for my documents, but when writing mathematical formulas I found out that the font I set for Greek letters (Gentium Plus) is used for letter commands like
\alpha, \Alpha, ...
but not for commands like\sum, \prod
. As you can see in this example here. You can see XeTeX defaults to Computer Modern.I've looked all over the net for solutions but I can't find one. I'm using
mathspec, amsmath, amsfonts, amssymb
as my font related packages and I set my fonts like this:\setmainfont{Charis SIL} \setsansfont{Helvetica Now Display} \setmonofont[Scale=MatchLowercase]{Fira Code Retina} \setmathfont(Digits,Latin){Charis SIL} \setmathfont(Greek){Gentium Plus}
I feel like I'm going insane not solving this problem. Should you require it, my entire LaTeX template is here on Github. Please help, thank you.
8 votes -
Write a Simple Steganography Program using Python
5 votes -
Variations on the Death of Python 2
8 votes -
Talk: Freshman Mandatory Ethics Seminar
3 votes -
Fortnightly Programming Q&A Thread
General Programming Q&A thread! Ask any questions about programming, answer the questions of other users, or post suggestions for future threads. Don't forget to format your code using the triple...
General Programming Q&A thread! Ask any questions about programming, answer the questions of other users, or post suggestions for future threads.
Don't forget to format your code using the triple backticks or tildes:
Here is my schema: ```sql CREATE TABLE article_to_warehouse ( article_id INTEGER , warehouse_id INTEGER ) ; ``` How do I add a `UNIQUE` constraint?
9 votes -
The Homebrewserver Club
17 votes -
Why I Decided to Run a Tor Relay
9 votes -
Debugging Folklore
19 votes -
What are your must-read development blogs?
Just created an Inoreader account and looking to dig into some good reads. What blogs do you read revolving around development?
13 votes -
Complexity Has to Live Somewhere
14 votes -
DigitalOcean introduces Virtual Private Cloud (VPC) networks
5 votes -
Reverse Engineering Obfuscated Excel 4 Macro Malware
5 votes -
JetBrains Academy - Learn to program in Python, Java, or Kotlin by creating working projects - Currently available for free
17 votes -
Open Wireless Movement
9 votes -
What programming/technical projects have you been working on?
This is a recurring post to discuss programming or other technical projects that we've been working on. Tell us about one of your recent projects, either at work or personal projects. What's...
This is a recurring post to discuss programming or other technical projects that we've been working on. Tell us about one of your recent projects, either at work or personal projects. What's interesting about it? Are you having trouble with anything?
16 votes