Skip to content

Instantly share code, notes, and snippets.

View alebaffa's full-sized avatar
🗼
Focusing

Alessandro alebaffa

🗼
Focusing
View GitHub Profile
This post links my 3Box profile to my Github account! Web3 social profiles by 3Box.
✅ did:3:bafyreiex6vbnvvu3vlubi2ibdcfjgtqvcwrzmfu5lujwtmgjial36gzrum ✅
Create your profile today to start building social connection and trust online at https://3Box.io/
This post links my 3Box profile to my Github account! Web3 social profiles by 3Box.
✅ did:3:bafyreiex6vbnvvu3vlubi2ibdcfjgtqvcwrzmfu5lujwtmgjial36gzrum ✅
Create your profile today to start building social connection and trust online at https://3Box.io/
@alebaffa
alebaffa / cloudSettings
Last active August 28, 2018 01:17
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-08-28T01:17:18.202Z","extensionVersion":"v3.1.0"}
version: '3'
services:
rem-api:
container_name: java-api
build: .
links:
- oracledb
- redis
ports:
- "443:443"
@alebaffa
alebaffa / es_client.py
Created February 22, 2018 11:56
elasticsearch client from jupyter
## Import all the needed libraries
from elasticsearch import helpers
from elasticsearch import Elasticsearch
import os
import sys
import json
import logging.config
from elasticsearch import RequestsHttpConnection
## Create connection using proxy
### Keybase proof
I hereby claim:
* I am alebaffa on github.
* I am alebaffa (https://keybase.io/alebaffa) on keybase.
* I have a public key ASCuG3qyeOFenECA4Lil5-V8vpI8ilfcZK9dVV5lpQVvfgo
To claim this, I am signing this object:
@alebaffa
alebaffa / get_name_current_git_branch.sh
Last active September 15, 2017 03:48
Get name of the current branch in git
branch="$(git rev-parse --abbrev-ref HEAD)"
echo ${branch}
@alebaffa
alebaffa / cloudSettings
Last active July 3, 2017 00:16
Visual Studio Code Sync Settings Gist
{"lastUpload":"2017-07-03T00:16:19.577Z","extensionVersion":"v2.8.2"}
@Test
public void should_return_the_string_converted() throws IOException {
HtmlTextConverter converter = new HtmlTextConverter("");
Reader stringReader = new StringReader("foo");
assertThat(converter.convertToHtml(stringReader), is("foo<br />"));
}
public String convertToHtml() throws IOException {
return convertToHtml(new FileReader(fullFilenameWithPath));
}
protected String convertToHtml(Reader reader) throws IOException {
BufferedReader bufferedReader = new BufferedReader(reader);
String line = bufferedReader.readLine();
String html = "";
while (line != null) {