Skip to content

Instantly share code, notes, and snippets.

View samaddico's full-sized avatar
🏠
Working from home

Samuel Addico samaddico

🏠
Working from home
View GitHub Profile
@samaddico
samaddico / BankReader.java
Created October 22, 2019 11:13 — forked from ah052070/BankReader.java
Java program involving transactions
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.URL;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
/**
* Class which reads clients transactions from internet database file and returns for its consumers
*/
@samaddico
samaddico / OkHttpUtil.java
Created October 4, 2019 15:04 — forked from preethamhegdes/OkHttpUtil.java
OkHttp Client Ignore certificate
import okhttp3.*;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.net.ssl.*;
import java.net.*;
import java.security.cert.CertificateException;
/*
okhttp version used 3.8.1
@adilsoncarvalho
adilsoncarvalho / bitbucket-pipelines.yml
Last active April 16, 2024 12:03
Bitbucket Pipelines deployment to a Google Container Engine configuration
options:
docker: true
pipelines:
branches:
master:
- step:
image: google/cloud-sdk:latest
name: Deploy to production
deployment: production
caches: