Skip to content

Instantly share code, notes, and snippets.

View alfakini's full-sized avatar

Alan R. Fachini alfakini

View GitHub Profile
@alfakini
alfakini / events.py
Last active August 15, 2021 05:40
Filesystem events monitoring with Python [events.py]
import os
from PIL import Image
from PIL.ImageOps import grayscale
from watchdog.events import RegexMatchingEventHandler
class ImagesEventHandler(RegexMatchingEventHandler):
THUMBNAIL_SIZE = (128, 128)
IMAGES_REGEX = [r".*[^_thumbnail]\.jpg$"]
def __init__(self):

Keybase proof

I hereby claim:

  • I am alfakini on github.
  • I am alfakini (https://keybase.io/alfakini) on keybase.
  • I have a public key ASDKbWiwaCUJnq3RWVwqz3-aDkpboHOldbjGsrIvB6RqUwo

To claim this, I am signing this object:

@alfakini
alfakini / watcher.py
Created October 16, 2018 00:18
Filesystem events monitoring with Python [watcher.py]
import sys
import time
from watchdog.observers import Observer
from .events import ImagesEventHandler
class ImagesWatcher:
def __init__(self, src_path):
self.__src_path = src_path
self.__event_handler = ImagesEventHandler()
@alfakini
alfakini / gist:a32b9bf3cc1e5c534e40
Created January 31, 2013 05:04
Using Scrapy to find wrong escaped html code on a Rails 2.3 app with rails_xss plugin installed.
from scrapy.spider import BaseSpider
from scrapy.selector import HtmlXPathSelector
from scrapy.http.request import Request
class HomeSpider(BaseSpider):
name = "rails_xss"
root = "http://0.0.0.0:3000/"
start_urls = [root]
def parse(self, response):
# -*- encoding : utf-8 -*-
class AccountLogoUploader < CarrierWave::Uploader::Base
include CarrierWave::MiniMagick
if Rails.env.development? || Rails.env.test?
storage :file
else
storage :s3
s3_access_policy 'public-read'
end
NUMBER_OF_CORES=4
sudo apt-get install -y libprotobuf-dev libleveldb-dev libsnappy-dev libopencv-dev libhdf5-serial-dev
sudo apt-get install -y --no-install-recommends libboost-all-dev
sudo apt-get install -y libatlas-base-dev
sudo apt-get install -y python-dev
sudo apt-get install -y python-pip git
sudo apt-get install -y libgflags-dev libgoogle-glog-dev liblmdb-dev protobuf-compiler
@alfakini
alfakini / digits.sh
Last active April 27, 2019 11:54
Install Digits
$ wget ...cuda-repo-ubuntu1404_7.5-18_amd64.deb
$ sudo dpkg -i /tmp/cuda-repo-ubuntu1404_7.5-18_amd64.deb
$ rm -f /tmp/cuda-repo-ubuntu1404_7.5-18_amd64.deb
$ wget ...nvidia-machine-learning-repo_4.0-2_amd64.deb
$ sudo dpkg -i /tmp/nvidia-machine-learning-repo_4.0-2_amd64.deb
$ rm -f /tmp/nvidia-machine-learning-repo_4.0-2_amd64.deb
$ sudo apt-get install digits
@alfakini
alfakini / events_two.py
Created October 16, 2018 00:34
Filesystem events monitoring with Python [events.py 2]
def on_created(self, event):
file_size = -1
while file_size != os.path.getsize(event.src_path):
file_size = os.path.getsize(event.src_path)
time.sleep(1)
self.process(event)
@alfakini
alfakini / cidades.md
Created May 17, 2018 02:38
cidades.md

× Done - In progress

# Cidade Crawler Parser
1 São Paulo
2 Rio de Janeiro -
3 Brasília
4 Salvador
@alfakini
alfakini / Embedding GoLang into a Ruby application.md
Last active January 29, 2018 20:41 — forked from schweigert/Embedding GoLang into a Ruby application.md
Embedding GoLang into a Ruby application - Blogpost to Magrathealabs

#!inbox

Go Title

I am passionate about Ruby, but its execution time compared to other languages is extremely high, especially when we want to use more complex algorithms. In general, data structures in interpreted languages become incredibly slow compared to compiled languages. Some algorithms such as ´n-body´ and ´fannkuch-redux´ can be up to 30 times slower in Ruby than Go. This is one of the reasons I was interested in embedding Go code in a Ruby environment.

For those who do not know how shared libraries operate, they work in a similar way as DLLs in Windows. However, they have a native code with a direct interface to the C compiler.

Note