Skip to content

Instantly share code, notes, and snippets.

View gildniy's full-sized avatar
🌏
Remote

Gildas Niyigena gildniy

🌏
Remote
View GitHub Profile
@gildniy
gildniy / time-d1-d2-d3-d4.ipynb
Created January 13, 2023 11:15
TIME-D1, D2, D3, D4.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@gildniy
gildniy / time-d1-d2-d3-d4.ipynb
Last active January 13, 2023 08:59
TIME-D1, D2, D3, D4.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@gildniy
gildniy / time-d1-d2-d3-d4.ipynb
Created January 13, 2023 07:36
TIME-D1, D2, D3, D4.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@gildniy
gildniy / time-d1-d2-d3-d4.ipynb
Last active January 13, 2023 07:27
TIME-D1, D2, D3, D4.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@gildniy
gildniy / time-d1-d2-d3-d4.ipynb
Created January 13, 2023 06:49
TIME-D1, D2, D3, D4.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@gildniy
gildniy / node-modules-in-react-native.md
Created November 19, 2022 18:02 — forked from parshap/node-modules-in-react-native.md
Running Node Modules in React Native

Running Node Modules in React Native

How to use packages that depend on Node.js core modules in React Native.

See the [node-libs-react-native][node-libs-react-native] library as a convenience for implementing this method.

Node.js Core Modules

@gildniy
gildniy / video_stabilize.py
Created August 8, 2022 06:17 — forked from DatHuynh/video_stabilize.py
Video stabilization with OpenCV and Hugin
#!/usr/bin/env python
""" Video stabilization with OpenCV (>=2.3) and Hugin
Adrien Gaidon
INRIA - 2012
TODO: add cropping, clean-up and improve doc-strings
"""
@gildniy
gildniy / warp.py
Last active May 13, 2022 08:40 — forked from nikgens/warp.py
from __future__ import division
import cv2
import numpy as np
import matplotlib.pyplot as plt
import os
os.chdir('C:/Users/gennady.nikitin/Dropbox/Coding/OpenCV')
# define variable for resize tratio
ratio = 1
@gildniy
gildniy / repair-mysql-data.ps1
Created April 30, 2022 19:15 — forked from josemmo/repair-mysql-data.ps1
Repair MySQL data directory (for XAMPP)
# Based on this answer: https://stackoverflow.com/a/61859561/1956278
# Backup old data
Rename-Item -Path "./data" -NewName "./data_old"
# Create new data directory
Copy-Item -Path "./backup" -Destination "./data" -Recurse
Remove-Item "./data/test" -Recurse
$dbPaths = Get-ChildItem -Path "./data_old" -Exclude ('mysql', 'performance_schema', 'phpmyadmin') -Recurse -Directory
Copy-Item -Path $dbPaths.FullName -Destination "./data" -Recurse