Skip to content

Instantly share code, notes, and snippets.

View techiediaries's full-sized avatar

Techiediaries (Now 10xdev.blog) techiediaries

View GitHub Profile
@iam-veeramalla
iam-veeramalla / llms_on_cpu.md
Created March 8, 2026 19:08
Run LLMs locally on CPU Architecture

Run LLMs Locally Using llama.cpp

This tutorial shows how to run Large Language Models locally on your laptop using llama.cpp and GGUF models.

It works on:

  • macOS
  • Linux
  • Windows
@techiediaries
techiediaries / download-and-install-latest-version-of-youtube-dl.md
Last active August 21, 2019 06:55
Installing the latest version of youtube-dl

Installing the latest version of youtube-dl

If you are getting this error when downloading a whole youtube playlist

youtube-dl ERROR: Unable to extract title

Then you need to install the latest version of youtube-dl.

To install the latest version of youtube-dl you can use the PPA webUpd8: ppa:nilarimogard/webupd8 which contains the latest version of youtube-dl.

@clhenrick
clhenrick / README.md
Last active December 2, 2025 18:07
PostgreSQL & PostGIS cheatsheet (a work in progress)
@yeban
yeban / jekyll.tag-cloud.rb
Created April 3, 2012 07:36
Flexible, logarithmic distribution, tag cloud for Jekyll.
# Copyright (C) 2011 Anurag Priyam - MIT License
module Jekyll
# Jekyll plugin to generate tag clouds.
#
# The plugin defines a `tag_cloud` tag that is rendered by Liquid into a tag
# cloud:
#
# <div class='cloud'>
@panike
panike / log2html.pl
Created February 4, 2011 16:51
Convert a git log to html
sub new_hl {
my @l = ();
return \@l;
}
@args = @ARGV;
shift @args;
print "<html><body><pre>\n";
open REVLIST, "git log " . join(' ',@args) . " --cc --parents --topo-order|" || die "Cannot get log";
while(<REVLIST>){