Skip to content

Instantly share code, notes, and snippets.

View Patrikios's full-sized avatar
🎯
carpe diem

Patrik Patrikios

🎯
carpe diem
View GitHub Profile
@Patrikios
Patrikios / sync.md
Created September 13, 2022 15:44 — forked from xin053/sync.md
[go sync] go sync #go #sync

sync.WaitGroup

package main

import (
	"log"
	"math/rand"
	"sync"
	"time"
@Patrikios
Patrikios / server.R
Created April 2, 2021 18:01 — forked from garrettgman/server.R
A shiny app that helps you explore stock returns (by way of yahoo finance and quantmod)
library(shiny)
library(quantmod)
library(VGAM)
# Define server logic for random distribution application
shinyServer(function(input, output) {
# acquiring data
dataInput <- reactive({
if (input$get == 0)