Lugar | Tipo de Carne | Gramaje | Quesos | Tipo de Pan | Tocineta | Salsas | Otros Ingredientes |
---|---|---|---|---|---|---|---|
Drip Burger Crew | Res premium | 130g | Cheddar | Brioche artesanal | Sí | Salsa de ajo de la casa | Panceta de cerdo adobada, panceta confitada |
American Burger Company | Carne Angus americana | 150g | Colby Jack, Cheddar | Butter bread | Sí | Smoking sweet | Cebolla caramelizada |
Raval Rooftop | Res | 130g | Queso feta, queso suizo |
This file contains 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
export function Spinner() { | |
return ( | |
<div role="status"> | |
<svg | |
aria-hidden="true" | |
className="mr-2 w-8 h-8 text-gray-200 animate-spin dark:text-gray-600 fill-blue-600" | |
viewBox="0 0 100 101" | |
fill="none" | |
xmlns="http://www.w3.org/2000/svg" | |
> |
This file contains 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
:root { | |
font-family: Inter, Avenir, Helvetica, Arial, sans-serif; | |
font-size: 16px; | |
line-height: 24px; | |
font-weight: 400; | |
color-scheme: light dark; | |
color: rgba(255, 255, 255, 0.87); | |
background-color: #242424; |
This file contains 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
Show hidden characters
{ | |
// theme | |
"workbench.colorTheme": "Night Owl", | |
"workbench.iconTheme": "material-icon-theme", | |
// font config | |
"editor.fontFamily": "FiraCode NFM", | |
"editor.fontLigatures": true, | |
// Editor settings |
This file contains 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
DROP TABLE IF EXISTS @cdm_database_schema.@cohort_table; | |
CREATE TABLE IF NOT EXISTS @cdm_database_schema.@cohort_table ( | |
"cohort_definition_id" integer NOT NULL, | |
"subject_id" integer NOT NULL, | |
"cohort_start_date" date NOT NULL, | |
"cohort_end_date" date NOT NULL | |
) |
This file contains 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
CREATE TABLE #Codesets ( | |
codeset_id int NOT NULL, | |
concept_id bigint NOT NULL | |
); | |
with primary_events ( | |
event_id, | |
person_id, | |
start_date, | |
end_date, | |
op_start_date, |
This file contains 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
CREATE TABLE #Codesets ( | |
codeset_id int NOT NULL, | |
concept_id bigint NOT NULL | |
); | |
INSERT INTO #Codesets (codeset_id, concept_id) | |
SELECT 5 as codeset_id, | |
c.concept_id | |
FROM ( | |
select distinct I.concept_id | |
FROM ( |
This file contains 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
[ | |
{ "delta": 1000, "payload": { "type": "message", "user": { "id": 1, "user_name": "taco", "display_name": "Taco Spolsky" }, "message": { "id": 1, "text": "Hello!" } }}, | |
{ "delta": 2000, "payload": { "type": "message", "user": { "id": 2, "user_name": "chorizo", "display_name": "Chorizo" }, "message": { "id": 2, "text": "Hi Taco!" } }}, | |
{ "delta": 2100, "payload": { "type": "connect", "user": { "id": 3, "user_name": "pete", "display_name": "Pete the Computer" } }}, | |
{ "delta": 3000, "payload": { "type": "message", "user": { "id": 3, "user_name": "pete", "display_name": "Pete the Computer" }, "message": { "id": 3, "text": "Hi Taco!" } }}, | |
{ "delta": 4000, "payload": { "type": "message", "user": { "id": 1, "user_name": "pete", "display_name": "Pete the Computer" }, "message": { "id": 4, "text": "What's going on in here?" } }}, | |
{ "delta": 5000, "payload": { "type": "message", "user": { "id": 2, "user_name": "chorizo", "display_name": "Chorizo" }, "message": { "id": 5, "text": "We're testing this chat r |
This file contains 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 highestPalindrome = (S) => { | |
const digits = S.length -1; | |
const ocurrences = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]; | |
for(let index = 0; index < S.length; index++){ | |
const number = S.charAt(index); | |
ocurrences[+number] += 1; | |
} | |
let rootNumber = ''; | |
for(let index = 0; index < ocurrences.length; index++) |
This file contains 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
MSH|^~\&|ADT1|MCM|LABADT|MCM|202109210825|SEGURIDAD|ADT^A01|MSG00001|P|2.6 | |
EVN|A01|202109210820 | |
PID|||DEMAR1022||DE MARCHENA^RUEDA^CRISTHYAN^DAVID||19991022|M||2106-3|CRA 66 58 69^BAQ^ATL||(304)413-8167|||B|||1234097133 | |
NK1|1|RUEDA^ROSSO^DENYS|MTH | |
NK1|2|DE MARCHENA^BARRIOS^RAFAEL^DAVID|FTH | |
PV1|1|CONTRIB|||||856321^EPS^SURA|||||-||1|A0 | |
DG1|001|I9|1490|MALESTAR ESTOMACAL|202109210845|F |
NewerOlder