Skip to content

Instantly share code, notes, and snippets.

View andrewssobral's full-sized avatar
🔴
I may be very slow to respond.

Andrews Cordolino Sobral andrewssobral

🔴
I may be very slow to respond.
View GitHub Profile
@andrewssobral
andrewssobral / tensorflow_keras_cifar10.py
Last active March 13, 2021 16:54
tensorflow_keras_cifar10
import os, json, shutil
import keras
from keras.callbacks import TensorBoard
from keras.datasets import cifar10
from keras.preprocessing.image import ImageDataGenerator
from keras.models import Sequential
from keras.layers import Dense, Dropout, Activation, Flatten
from keras.layers import Conv2D, MaxPooling2D
@andrewssobral
andrewssobral / list_wifi_pass_win.bat
Created April 14, 2019 20:11
list_wifi_pass_win.bat
netsh wlan show profiles
netsh wlan show profile name=profilename key=clear
@andrewssobral
andrewssobral / rpi-qemu.sh
Last active April 9, 2019 16:40
rpi-qemu.sh
#!/bin/sh
# MacOS Mojave
brew install qemu
export QEMU=$(which qemu-system-arm)
export TMP_DIR=~/tmp/qemu-rpi
export RPI_KERNEL=${TMP_DIR}/kernel-qemu-4.14.79-stretch
export RPI_FS=${TMP_DIR}/2018-11-13-raspbian-stretch-lite.img
@andrewssobral
andrewssobral / restart_bluetooth.sh
Created January 28, 2019 09:48 — forked from nicolasembleton/restart_bluetooth.sh
Restart Bluetooth Daemon on Mac OS X without restarting
#!/bin/bash
sudo kextunload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport
sudo kextload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport
git clone https://github.com/pytorch/pytorch.git
git submodule update --init --recursive
MACOSX_DEPLOYMENT_TARGET=10.14 CC=clang CXX=clang++ python setup.py install
@andrewssobral
andrewssobral / pytorch-mnist.cpp
Created October 27, 2018 20:18
PyTorch MNIST C++
// https://github.com/goldsborough/examples/blob/cpp/cpp/mnist/mnist.cpp
#include <torch/torch.h>
#include <cstddef>
#include <iostream>
#include <string>
#include <vector>
struct Net : torch::nn::Module {
Net()
@andrewssobral
andrewssobral / demo_depth2color.py
Created October 21, 2018 17:59
demo_depth2color.py (Intel® RealSense™ SDK)
## License: Apache 2.0. See LICENSE file in root directory.
## Copyright(c) 2017 Intel Corporation. All Rights Reserved.
#####################################################
## Align Depth to Color ##
#####################################################
# First import the library
import pyrealsense2 as rs
import numpy as np
@andrewssobral
andrewssobral / rs-grabcuts.cpp
Created October 20, 2018 22:26
rs-grabcuts.cpp
// License: Apache 2.0. See LICENSE file in root directory.
// Copyright(c) 2017 Intel Corporation. All Rights Reserved.
#include <librealsense2/rs.hpp> // Include RealSense Cross Platform API
#include <opencv2/opencv.hpp> // Include OpenCV API
#include "../cv-helpers.hpp" // Helper functions for conversions between RealSense and OpenCV
#include <time.h>
int main(int argc, char * argv[]) try
{
@andrewssobral
andrewssobral / intel-realsense-dfu
Created October 16, 2018 20:13
intel-realsense-dfu
ubuntu@ubuntu1604:~$ intel-realsense-dfu -b 001 -d 006 -f -i Signed_Image_UVC_5_10_6_0.bin
D400 busnum = 1
D400 devnum = 6
D400 FW file path = Signed_Image_UVC_5_10_6_0.bin
FW Version of .bin File = 5.10.6.0
FW version on device = 5.8.15.0
MM FW Version = 255.255.255.255
FW update required...
Updating FW...
DFU FW version in file = 5.10.6.0
@andrewssobral
andrewssobral / SpatialUpSamplingBilinear.cu
Created October 15, 2018 09:02
SpatialUpSamplingBilinear.cu
#ifndef THC_GENERIC_FILE
#define THC_GENERIC_FILE "generic/SpatialUpSamplingBilinear.cu"
#else
#include "../linear_upsampling.h"
//#define MAX_THREADS_PER_BLOCK 256
//#define MIN_BLOCKS_PER_MP 2
//__launch_bounds__(MAX_THREADS_PER_BLOCK, MIN_BLOCKS_PER_MP)