Original Letter | Look-Alike(s) |
---|---|
a | а ạ ą ä à á ą |
c | с ƈ ċ |
d | ԁ ɗ |
e | е ẹ ė é è |
g | ġ |
h | һ |
Discover gists
- Shodan : community access + commercial access
- Censys : community + commercial access (access posible for independent researchers)
- ZoomEye : community + commercial access
- Onyphe : community + commercial access
- BinaryEdge : commercial access only
#!/bin/bash | |
# Variables (replace with your bot token and chat ID) | |
BOT_TOKEN="" | |
CHAT_ID="238585617" | |
# Function to send notification to Telegram | |
send_telegram_message() { | |
local message="$1" | |
curl -s -X POST "https://api.telegram.org/bot$BOT_TOKEN/sendMessage" \ |
# Example code for The Pragmatic Engineer article "Robotics for software engineers: humanoid robots" | |
import numpy as np | |
import matplotlib.pyplot as plt | |
import matplotlib.animation as animation | |
from mpl_toolkits.mplot3d import Axes3D # Needed for 3D plotting | |
# Dynamic Cone Function | |
eps = 1e-6 # small epsilon to avoid division by zero |
UPDATE: This is tested and working on both Linux and Windows 11 used for LlaMa & DeepSeek
Here's a sample README.md
file written by Llama3.2 using this docker-compose.yaml file that explains the purpose and usage of the Docker Compose configuration:
ollama-portal
A multi-container Docker application for serving OLLAMA API.
Visual Studio 2019 Product Key | |
[Please Star this gist] | |
Follow My Account --> https://github.com/ch-kashif @ch-kashif | |
Lets do a code together | |
Join Cloud Disk repository --> https://github.com/ch-kashif/CloudDisk | |
#!/usr/bin/env python3 | |
""" | |
Expose Ollama models to LM Studio by symlinking its model files. | |
NOTE: On Windows, you need to run this script with administrator privileges. | |
""" | |
import json | |
import os | |
from pathlib import Path |
#!/bin/bash | |
if [[ $# -ne 2 ]]; then | |
echo "usage: $0 PATH TORRENT" >&2 | |
echo "" >&2 | |
echo "PATH - Path to the file(s) you want to upload" >&2 | |
echo "TORRENT - Path where the .torrent file will be created " >&2 | |
exit 2 | |
fi |
With its built-in Bluetooth capabilities, the ESP32 can act as a Bluetooth keyboard. The below code is a minimal example of how to achieve it. It will generate the key strokes for a message whenever a button attached to the ESP32 is pressed.
For the example setup, a momentary button should be connected to pin 2 and to ground. Pin 2 will be configured as an input with pull-up.
In order to receive the message, add the ESP32 as a Bluetooth keyboard of your computer or mobile phone:
- Go to your computers/phones settings
- Ensure Bluetooth is turned on
#include <stdio.h> | |
#include "tb.h" | |
int main() | |
{ | |
TB_Arena a = {0}; | |
tb_arena_create(&a, "ABOBA"); | |
TB_Module* m = tb_module_create(TB_ARCH_X86_64, TB_SYSTEM_LINUX, false); | |
printf("m = %p\n", m); |