Skip to content

Instantly share code, notes, and snippets.

View SuelenGC's full-sized avatar

Suelen Carvalho SuelenGC

View GitHub Profile
This PR solves the [XXX-XXX](https://yourcompany.atlassian.net/browse/XXX-XXX) ticket.
## Business motivation:
[Describe in a non technical way. Think about bussiness]
## Tasks
- [x] [example] Found error and created tests.
- [x] [example] Refactored old tests remove deprecated method.
## Evidence of % Test Increased 😄 [Optional]
export PATH=/usr/local/bin:$PATH
export PATH=/usr/local/share/npm/bin/:$PATH
export USER_HOME=~/
export GOPATH=~/works
export PATH=$GOPATH/bin:$PATH
# Terminal Colors
export CLICOLOR=1
Emmet
GitGutter
Latexing
Text Pastry
SublimeCodeIntel
{
"bold_folder_labels": true,
"caret_style": "phase",
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
"dictionary": "Packages/User/hunspell-portuguese-brazil/pt_BR.dic",
"fade_fold_buttons": false,
"font_size": 12,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
@SuelenGC
SuelenGC / Distraction Free.sublime-settings
Created May 9, 2017 03:23
My personal distraction free mode at Sublime 3
{
"draw_centered": false,
"wrap_width": 0,
"highlight_line": true,
"gutter": true,
"line_numbers": true,
}
@SuelenGC
SuelenGC / WebClient.java
Created April 15, 2014 23:33
Doing https request with unknown certificate
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.util.EntityUtils;
import java.security.cert.X509Certificate;