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
require('dotenv').config(); | |
require('colors'); | |
const express = require('express'); | |
const ExpressWs = require('express-ws'); | |
const { GptService } = require('./services/gpt-service'); | |
const { StreamService } = require('./services/stream-service'); | |
const { TranscriptionService } = require('./services/transcription-service'); | |
const { TextToSpeechService } = require('./services/tts-service'); |
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
{ | |
"businesses": [ | |
{ | |
"id": "beauty-cutie-nail-and-spa-new-york", | |
"name": "Beauty Cutie Nail & Spa", | |
"image_url": "https://s3-media3.fl.yelpcdn.com/bphoto/SL6_3y8AgXkbUxcxiCwNkg/o.jpg", | |
"is_closed": false, | |
"url": "https://www.yelp.com/biz/beauty-cutie-nail-and-spa-new-york?adjust_creative=QH0KY8ridWGXeICCt8MrQg&utm_campaign=yelp_api_v3&utm_medium=api_v3_business_search&utm_source=QH0KY8ridWGXeICCt8MrQg", | |
"review_count": 8, | |
"categories": [ |
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
https://github.com/typelift/Swiftz | |
https://github.com/bricepollock/modular-architecture | |
https://github.com/joeldev/JLRoutes | |
https://github.com/thoughtbot/Argo | |
https://github.com/Alamofire/Alamofire | |
https://github.com/mxcl/PromiseKit | |
https://github.com/aschuch/AwesomeCache | |
https://github.com/danielgindi/Charts | |
https://github.com/ViccAlexander/Chameleon |
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
* { | |
line-height: 30px; | |
} |
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
filetype on | |
filetype indent on | |
filetype plugin on | |
syntax on | |
call plug#begin('~/.vim/plugged') | |
Plug 'mileszs/ack.vim' | |
" Plug 'rking/ag.vim' | |
Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets' | |
Plug 'scrooloose/nerdtree' |
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
http://stackoverflow.com/questions/29846864/change-the-app-name-sent-by-dockers-syslog-driver | |
http://dokku.viewdocs.io/dokku/docker-options/ |
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
defmodule Interpolation do | |
def call(string, bindings \\ []) do | |
~r/(?<head>)%{[^}]+}(?<tail>)/ | |
|> Regex.split(string, on: [:head, :tail]) | |
|> Enum.reduce("", fn | |
<<"%{" <> rest>>, acc -> | |
key = String.to_atom(String.rstrip(rest, ?})) | |
acc <> to_string(Dict.fetch!(bindings, key)) | |
segment, acc -> | |
acc <> segment |
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
Product,Description1,Description2,Price1,Price2,Qty Break,UPC,Vendor,UOM,Sub-Category,Model,Size,Color,MAP,MSRP,Category,Available,Length,Width,Height,Weight,Closeout,On Sale,Orig Price,Mfg Part No,Bullet Points,Qty SC,Qty NV,Discontinued | |
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
require 'deterministic' | |
module Deterministic | |
module Monad | |
alias :>= :fmap | |
end | |
end | |
class Foo | |
include Deterministic |
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
upstream faye { | |
server 127.0.0.1:9292; | |
} | |
server { | |
listen 80; | |
server_name localhost; | |
location / { | |
proxy_pass http://faye; |
NewerOlder