Model | Parameters | Size | Download Command | Min RAM |
---|---|---|---|---|
Gemma 3 | 1B | 815MB | ollama run gemma3:1b |
4 GB 🧩 |
Llama 3.2 | 1B | 1.3GB | ollama run llama3.2:1b |
4 GB 🧩 |
Moondream 2 | 1.4B | 829MB | ollama run moondream |
4 GB 🧩 |
Gemma 3 | 4B | 3.3GB | ollama run gemma3 |
6 GB 🧩 |
Llama 3.2 | 3B | 2.0GB | ollama run llama3.2 |
6 GB 🧩 |
Phi 4 Mini | 3.8B | 2.5GB | ollama run phi4-mini |
6 GB 🧩 |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>HTML Importer Demo</title> | |
<script> | |
/** | |
* Synchronously fetches the given URL and writes its contents | |
* into the document at this script’s position. | |
* |
This file contains hidden or 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
<script src="https://meet.jit.si/external_api.js"></script> | |
<div id="meet"> | |
</div> | |
hello world | |
<script> | |
var options = { | |
roomName: "jdtest", | |
width: 700, | |
height: 700, | |
parentNode: document.querySelector('#meet') |
This file contains hidden or 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
# install | |
sudo snap install intellij-idea-ultimate --classic | |
# -or download intellij idea ultimate tar.gz file from: | |
# https://www.jetbrains.com/idea/download/#section=linux | |
# https://download-cdn.jetbrains.com/idea/ideaIU-2022.1.1.tar.gz | |
# extract: | |
sudo tar -xvf ideaIU-2022.1.1.tar.gz -C /opt/ |
- use https://github.com/maildev/maildev
- NodeJS required
- to install:
npm install -g maildev
- start:
maildev --outgoing-secure --outgoing-user lajt --outgoing-pass lajt
- ignore ssl check, only for dev environment! never in production.
in your blazor server app add inside
public void ConfigureServices(IServiceCollection services)
:
if (_env.IsDevelopment())
{
ServicePointManager
This file contains hidden or 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
#!/usr/bin/env bash | |
# wmtt: wm testing tool | |
# built from the awmtt script | |
#Default Variables | |
#TODO make this arg passable | |
WM="openbox-session" | |
ME=$(basename ${0}) | |
# Display and window size | |
D=1 |
title: 'Building Serverless CRUD apps with Netlify Functions & FaunaDB' authors:
- David Wells tweet: >- Building Serverless CRUD apps with Netlify Functions & FaunaDB topics:
- tutorials tags:
- serverless
This file contains hidden or 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 | |
run () { | |
signal-desktop & | |
disown | |
} | |
show () { | |
local -r id="$1" | |
idx="$(printf "0x%08x" "${id}")" |
This file contains hidden or 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
--- | |
# I install all necessary packages and configure Arch Linux. | |
- name: bootstrap Arch Linux | |
hosts: all | |
become: yes | |
vars: | |
my_username: alien | |
bootstrap_username: bootstrap |
NewerOlder