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
enum Food: String { | |
case beef = "Beef" | |
case chicken = "Chicken" | |
case vegitarian = "Vegitarian" | |
case kids = "Kids" | |
} | |
protocol People { | |
var people: [Person] { get } | |
} |
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 svg2img = require('svg2img'); | |
module.exports = (req, res) => { | |
svg2img(req.query.url, {width: req.query.width, height: req.query.height, preserveAspectRatio: true}, | |
function(error, buffer) { | |
if (buffer) { | |
res.send(buffer); | |
} | |
}); | |
}; |
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
import svg2img from 'svg2img'; | |
module.exports = (req, res) => { | |
const url = req.query.url; | |
const width = req.query.width; | |
const height = req.query.height; | |
const size = Math.min(width, height); | |
svg2img(url, {width: size, height: size, preserveAspectRatio: true}, | |
function(error, buffer) { | |
if (buffer) { |
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
import Foundation | |
import CryptoKit | |
extension String { | |
func hmac(key: String) -> String { | |
let secret = key.data(using: .utf8)! | |
let message = self.data(using: .utf8)! | |
var hmac = HMAC<Insecure.SHA1>(key: SymmetricKey(data: secret)) | |
hmac.update(data: message) |
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
#!/bin/bash | |
######################################################################################### | |
# Ollama + Chatbox + DeepSeek Installation & Configuration Script | |
# | |
# This script: | |
# - Deploys Ollama and ensures it's configured for remote access | |
# - Moves Ollama storage to /data (if needed) to optimize space | |
# - Installs NVIDIA drivers, CUDA, and configures GPU usage | |
# - Verifies CUDA and VRAM availability | |
# - Configures UFW to allow external access |
OlderNewer