Probiotics (in bot form) for programming.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

28 lines
815B

  1. INSERT INTO difficulty VALUES('Easy');
  2. INSERT INTO difficulty VALUES('Medium');
  3. INSERT INTO difficulty VALUES('Hard');
  4. INSERT INTO difficulty VALUES('Fuck You');
  5. INSERT INTO tag VALUES('AI');
  6. INSERT INTO tag VALUES('Algorithms');
  7. INSERT INTO tag VALUES('Games');
  8. INSERT INTO tag VALUES('Math');
  9. INSERT INTO tag VALUES('Networking');
  10. INSERT INTO tag VALUES('Rendering');
  11. INSERT INTO tag VALUES('Simulation');
  12. INSERT INTO tag VALUES('Tools');
  13. -- I believe the list of links might be better suited as a detacted part of this
  14. -- I also have no idea how this would format this internally
  15. -- Does SQL would support 'a' 'b' concat syntax? as in C's puts("abc" "def")?
  16. INSERT INTO project (title, body) VALUES (
  17. 'IRC Bot',
  18. 'Contribute to Probotic'
  19. );
  20. INSERT INTO assignment (who, project) VALUES (
  21. '#/g/chad',
  22. 1
  23. );