Skip to content

Instantly share code, notes, and snippets.

View MarioIshac's full-sized avatar

Mario Ishac MarioIshac

View GitHub Profile

Keybase proof

I hereby claim:

  • I am marioishac on github.
  • I am marioishac (https://keybase.io/marioishac) on keybase.
  • I have a public key ASAYUoL9IYQEezjuiXVIGxUQZEaYSY3HHJRudUhoBuSELwo

To claim this, I am signing this object:

Community Recommendations

There are two types of community recommendations: user-aware and journal-entry-aware. The type of community recommendation is not provided through the endpoint, and is inferred in the underlying execution of the API call. However, it is helpful to understand the differences.


User-Aware

@MarioIshac
MarioIshac / nginx.conf
Created February 5, 2021 20:28
Example to reproduce $upstream_response_time being a dash.
events {}
http {
log_format main '$upstream_addr $upstream_status $upstream_response_time';
access_log /dev/stdout main;
server {
listen 8000;
location / {
{
"apps": {
"http": {
"servers": {
"server_0": {
"listen": [
":80"
],
"logs": {},
"routes": [
@MarioIshac
MarioIshac / build-llama-cpp.sh
Created December 21, 2024 09:41 — forked from cgmb/build-llama-cpp.sh
Build llama.cpp on Ubuntu 24.04
#!/bin/sh
# Build llama.cpp on Ubuntu 24.04 with AMD GPU support
sudo apt -y install git wget hipcc libhipblas-dev librocblas-dev cmake build-essential
# ensure you have the necessary permissions by adding yourself to the video and render groups
sudo usermod -aG video,render $USER
# reboot to apply the group changes
# run rocminfo to check everything is working thus far