Não use UUID
como PK nas tabelas do seu banco de dados.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[dohtml]<style> | |
#Sophie .madz-gabs{ | |
--imagem1: url('https://i.pinimg.com/originals/be/40/e9/be40e9d5d6797eab9d3433b21d6fdb46.gif'); | |
--imagem2: url('https://64.media.tumblr.com/efab99afacbb4474c74540c05c8a2e0c/tumblr_inline_pr2yc8E3ZV1rjxgbh_400.gifv'); | |
--fundo: url('https://getwallpapers.com/wallpaper/full/4/0/9/1432416-new-black-and-white-wolf-wallpaper-2756x2067-for-windows-10.jpg'); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const TRUE = (p) => (q) => (p) | |
const FALSE = (p) => (q) => (q) | |
const OR = (p) => (q) => p(p)(q) | |
const NOT = (p) => (p)(FALSE)(TRUE) | |
const AND = (p) => (q) => (p)(q)(FALSE) | |
const PROG = (func) => FALSE(func())(PROG) | |
const PRINT = (text) => () => TRUE(console.log(text)) | |
const IF = (cond) => (execute) => (nonexecute) => (cond(execute)(nonexecute))() | |
PROG |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule LinkedList do | |
defstruct data: 0, | |
next: nil, | |
index: 0 | |
def new(data \\ 0, index \\ 0) do | |
%__MODULE__{data: data, index: index} | |
end | |
def push( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; | |
;; pt-br: Repositorios / en: Repositories | |
;;; | |
;; Define and initialise package repositories | |
(require 'package) | |
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) | |
(package-initialize) |
Firstly, what is <details>
<summary>
?
The HTML Details Element (
<details>
) creates a disclosure widget in which information is visible only when the widget is toggled into an "open" state. A summary or label can be provided using the<summary>
element. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Questão 1 | |
SELECT * | |
FROM (SELECT nome_cantor, count(*) as num_gravacoes | |
FROM gravacao | |
INNER JOIN cantor c on gravacao.cod_cantor = c.cod_cantor | |
GROUP BY nome_cantor) q1 | |
WHERE num_gravacoes = (SELECT min(gravacoes) FROM (SELECT nome_cantor, count(*) as gravacoes | |
FROM gravacao | |
INNER JOIN cantor c on gravacao.cod_cantor = c.cod_cantor | |
GROUP BY nome_cantor) q2); |
NewerOlder