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 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?

1 comment

  1. pocketry
    Link
    I'd like to learn a little bit of c# and docker. I wrote a little python script to generate secret Santa assignments for the family and want to turn it into a small website for next year. I...

    I'd like to learn a little bit of c# and docker. I wrote a little python script to generate secret Santa assignments for the family and want to turn it into a small website for next year. I figured this was a decent project to learn the basics of c#. Any recommendationsnfor getting started?

    It looks like asp.Net is similar to python web frameworks like flask and Django? I've used flask before for small projects.

    I'm looking for high level technology recommendations and then I'll go figure out how to put it all together. Can I do this in a digital ocean small droplet? Do I install the http server (nginx, apache ...?) On my droplet or in another docker container? Since I want a small database, where do I install SQLite?

    Thanks for your time.

    2 votes