Probiotics (in bot form) for programming.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Este repositório está arquivado. Você pode visualizar os arquivos e realizar clone, mas não poderá realizar push nem abrir issues e pull requests.

28 linhas
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. );