Skip to content

Instantly share code, notes, and snippets.

View Pandinosaurus's full-sized avatar

Rémi Ratajczak Pandinosaurus

  • France
View GitHub Profile
@taiki-e
taiki-e / maintenance-status-badges.md
Last active February 18, 2026 17:26
Markdown Maintenance status badges
@zhenzhenxiang
zhenzhenxiang / Upgrade PCL from 1.7 to 1.8 on Ubuntu 16.04.md
Last active August 31, 2024 08:03
Upgrade PCL from 1.7 to 1.8 on Ubuntu 16.04

Upgrade PCL from 1.7 to 1.8 on Ubuntu 16.04

Uninstall PCL 1.7

  1. Remove libpcl-dev

    sudo apt remove libpcl-dev
  2. Remove libraries

@iwatake2222
iwatake2222 / Build_tensorflowlite.dll_.sh
Last active January 17, 2022 10:34
How to generate tensorflowlite.dll for Visual Studio (Windows)
# On Git Bash
cd path-to-tensorflow
git checkout 00cb358ab2e67d0b06a21901ded13c57fd47e673
./tensorflow/lite/tools/make/download_dependencies.sh
nano tensorflow/lite/build_def.bzl
###
# --- a/tensorflow/lite/build_def.bzl
# +++ b/tensorflow/lite/build_def.bzl
# @@ -159,6 +159,7 @@ def tflite_cc_shared_object(
@YashasSamaga
YashasSamaga / A0_NOTICE.md
Last active September 22, 2024 12:22
GSoC 2019 | OpenCV | Adding a CUDA backend to the DNN module

DISCLAIMER

This gist documents the Google Summer of Code project. It is not updated and hence does not indicate current status of the CUDA backend.

For updated details, please see this gist.

@fosterbrereton
fosterbrereton / better_macros_better_flags.cpp
Last active January 16, 2026 19:36
Companion source code for the article "Better Macros, Better Flags."
/*
MIT License
Copyright 2019 Foster T. Brereton
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
associated documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute,
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
@19317362
19317362 / Makefile
Created April 22, 2019 10:36 — forked from sehe/Makefile
Boost shared memory lockfree circular buffer queue
all:consumer producer
CPPFLAGS+=-std=c++03 -Wall -pedantic
CPPFLAGS+=-g -O0
CPPFLAGS+=-isystem ~/custom/boost/
LDFLAGS+=-L ~/custom/boost/stage/lib/ -Wl,-rpath,/home/sehe/custom/boost/stage/lib
LDFLAGS+=-lboost_system -lrt -lpthread
%:%.cpp
@pishangujeniya
pishangujeniya / keras_metrics.py
Last active February 3, 2020 09:33 — forked from dgrahn/keras_metrics.py
F1 Score Metrics removed from Keras in 2.0. Get True Positive, False Positive, True Negative, False Negative, Precision, Recall, Accuracy
"""Keras 1.0 metrics.
This file contains the precision, recall, and f1_score metrics which were
removed from Keras by commit: a56b1a55182acf061b1eb2e2c86b48193a0e88f7
"""
from keras import backend as K
def precision(y_true, y_pred):
"""Precision metric.
@erogol
erogol / tts_example.ipynb
Last active July 19, 2025 20:07
TTS_example.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@MIvanchev
MIvanchev / article.md
Last active November 6, 2025 01:00
Ever wondered what it takes to run Windows software on ARM? Then this article might be for you!
@joaofig
joaofig / buffer_in_meters.py
Created August 14, 2018 09:03
Python code to convert a geographic point into a circular buffer with radius in meters.
from shapely.geometry import Point
from functools import partial
from shapely.ops import transform
import pyproj
def buffer_in_meters(lng, lat, radius):
proj_meters = pyproj.Proj(init='epsg:3857')
proj_latlng = pyproj.Proj(init='epsg:4326')
project_to_meters = partial(pyproj.transform, proj_latlng, proj_meters)