Skip to content

Instantly share code, notes, and snippets.

View vituchon's full-sized avatar

Vituchon vituchon

  • omnia salud
  • buenos aires
View GitHub Profile
@vituchon
vituchon / postgres_recipes.sql
Last active July 5, 2022 20:44
Recopilación de sentencias SQL que trabajan con mucha dato-diversidad
-- Consulta sobre el valor un miembro de primer nivel (para el caso, turnos que son sobreturnos)
select *
from appointments
where details ->> 'isOverturn' = 'true';
-- Consulta sobre el valor de un miembro de un nivel aninado (para el caso, los turnos con atención particular)
select *
from appointments
where details -> 'extra' ->> 'attentionBy' = 'particular'
@vituchon
vituchon / Consumer.java
Last active May 27, 2020 16:39
Fibonacci Procuder, Prime Producer and StdOut Consumer Example
import java.util.concurrent.BlockingQueue;
public class Consumer implements Runnable {
private final BlockingQueue<Long> queue;
private volatile boolean finish;
public Consumer(BlockingQueue<Long> queue) {
this.queue = queue;