Skip to content

Instantly share code, notes, and snippets.

View chia-labradorsystems's full-sized avatar
🎯
Focusing

Jotarun chia-labradorsystems

🎯
Focusing
View GitHub Profile
@tonyreina
tonyreina / openvino_inference.py
Last active March 23, 2024 05:58
Generic script for doing inference on OpenVINO model
#!/usr/bin/env python
# python openvino_inference.py -l /opt/intel/openvino/inference_engine/lib/libcpu_extension.so
import sys
import os
from argparse import ArgumentParser
import numpy as np
import logging as log
from timeit import default_timer as timer
@devynspencer
devynspencer / ansible-github.yml
Last active May 10, 2025 16:47
Example playbook for cloning a private git repository with Ansible.
---
hosts: all
tasks:
- name: add github ssh key
copy: >
src=files/id_rsa.github
dest=/root/.ssh/id_rsa.github
owner=root
group=root