Skip to content

Instantly share code, notes, and snippets.

View alebaffa's full-sized avatar
🗼
Focusing

Alessandro alebaffa

🗼
Focusing
View GitHub Profile
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
@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"}
### 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 / git-squash.md
Last active November 30, 2023 21:28
Git squash alternatives

Git Squash alternatives:

  • git rebase -i HEAD~X - this allows you to merge interactively several commits
    • then fixup OR pick OR reword AND push --force
  • git reset --hard HEAD~X - this rollbacks the index back to X commits (check git status before doing this. Commit first)
    • commit again using just one commit
  • git reset --hard COMMIT_ID - this rollbacks the index back to the commit_id
@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) {
@Test
public void should_convert_to_html() throws IOException {
HtmlTextConverter converter = new FakeHtmlTextConverter("ciao");
assertThat(converter.convertToHtml(), is("ciao<br />"));
}