Skip to content

Instantly share code, notes, and snippets.

View andupotorac's full-sized avatar

Andu Potorac andupotorac

View GitHub Profile
@andupotorac
andupotorac / styles.css
Created May 21, 2024 16:01 — forked from siliconjungle/styles.css
goopy text
path {
fill: none;
stroke: rgba(52, 53, 60, 1);
stroke-width: 4;
stroke-linecap: round;
}
svg > text {
font-family: 'Geist', sans-serif !important;
fill: rgb(201, 213, 229);
@andupotorac
andupotorac / stream.js
Created October 23, 2019 21:18 — forked from DingGGu/stream.js
NodeJS Mp3 Streaming ExpressJS
var express = require('express');
var app = express();
var fs = require('fs');
app.listen(3000, function() {
console.log("[NodeJS] Application Listening on Port 3000");
});
app.get('/api/play/:key', function(req, res) {
var key = req.params.key;