Skip to content

Instantly share code, notes, and snippets.

@briscula
briscula / Python3 Virtualenv Setup.md
Created May 27, 2020 20:25 — forked from pandafulmanda/Python3 Virtualenv Setup.md
Setting up and using Python3 Virtualenv on Mac

Python3 Virtualenv Setup

Requirements
  • Python 3
  • Pip 3
$ brew install python3
@briscula
briscula / OIDExternalUserAgentIOSSafariViewController.swift
Created February 4, 2020 14:33 — forked from ugenlik/OIDExternalUserAgentIOSSafariViewController.swift
OIDExternalUserAgentIOSSafariViewController in swift
//
// OIDExternalUserAgentIOSSafariViewController.swift
// Hugin
//
// Created by Umut Genlik on 12/7/18.
// Taken from https://gist.github.com/WilliamDenniss/18f3779b4a310361bb955cf4e534f29c
import UIKit
import SafariServices
open class BaseRepository{
suspend fun <T : Any> safeApiCall(call: suspend () -> Response<T>, errorMessage: String): T? {
val result : Result<T> = safeApiResult(call,errorMessage)
var data : T? = null
when(result) {
is Result.Success ->
data = result.data
@briscula
briscula / AppDatabse.kt
Created September 30, 2019 08:26 — forked from tinmegali/AppDatabse.kt
Android Room with Kotlin
package com.tinmegali.daggerwithkotlin.room
import android.arch.persistence.room.Database
import android.arch.persistence.room.RoomDatabase
import android.arch.persistence.room.TypeConverters
import com.tinmegali.daggerwithkotlin.room.daos.NoteDAO
import com.tinmegali.daggerwithkotlin.room.daos.UserDAO
import com.tinmegali.daggerwithkotlin.room.entities.Note
import com.tinmegali.daggerwithkotlin.room.entities.User
@briscula
briscula / Interceptor.java
Created August 8, 2019 07:20 — forked from alex-shpak/Interceptor.java
Refreshing OAuth token with okhttp interceptors. All requests will wait until token refresh finished, and then will continue with the new token.
private class HttpInterceptor implements Interceptor {
@Override
public Response intercept(Chain chain) throws IOException {
Request request = chain.request();
//Build new request
Request.Builder builder = request.newBuilder();
builder.header("Accept", "application/json"); //if necessary, say to consume JSON
@briscula
briscula / update_android_sdk.sh
Created August 6, 2019 11:21 — forked from philosuke/update_android_sdk.sh
Auto update android sdk with authentication proxy
#!/bin/bash
export PATH=$PATH:${ANDROID_SDK_PATH}/tools
USER="your proxy-user"
PASS="your proxy-password "
PROXY_HOST="your proxy-host"
PROXY_PORT="your proxy-port"
expect -c "
spawn android update sdk -u -s --proxy-host ${PROXY_HOST} --proxy-port ${PROXY_PORT}
@briscula
briscula / build.gradle
Created June 17, 2019 06:10 — forked from up1/build.gradle
Android Library with Artifactory
apply plugin: 'com.android.library'
apply plugin: 'com.jfrog.artifactory'
apply plugin: 'maven-publish'
def packageName = 'codeinputlib'
def libraryVersion = '1.0.0'
buildscript {
repositories {
jcenter()
@briscula
briscula / bitbucket-branches-job-dsl.groovy
Created June 13, 2019 10:17 — forked from mgrebenets/bitbucket-branches-job-dsl.groovy
Jenkins Job DSL Example - Bitbucket Branches
//
// Jenkins Job DSL example to create build projects for Bitbucket branches
//
// Imports
import java.text.DateFormat
import java.text.SimpleDateFormat
import groovy.time.TimeCategory
// URL components
@briscula
briscula / bitbucket_project.groovy
Created June 13, 2019 10:16 — forked from navidurrahman/bitbucket_project.groovy
Jenkins Job DSL Example - Bitbucket project and branches
// URL components
String baseUrl = "https://bitbucket.org/rest/api"
String version = "1.0"
String project = "SYS"
// Put it all together
String reposUrl = [baseUrl, version, "projects", project, "repos"].join("/")
def send_request(url_string){
// Create URL
@briscula
briscula / Jenkinsfile
Created June 13, 2019 07:02 — forked from merikan/Jenkinsfile
Some Jenkinsfile examples
Some Jenkinsfile examples