Skip to content

Instantly share code, notes, and snippets.

View ecr007's full-sized avatar
Github Refactoring ... 10%

ECR007 ecr007

Github Refactoring ... 10%
  • ...
  • In The World
View GitHub Profile
@lupena
lupena / AzulPaymentGateway.php
Last active December 16, 2021 05:15
Class to handle Azul Payment Gateway Methods / Banco Popular Dominicano BPD / Azul.com.do
/**
* PHP version 5
* @package AzulPaymentGateway
* @author ideologic SRL <touch@ideologic.do>
* @since File available since Release 1
*/
<?php namespace App;
// use Illuminate\Database\Eloquent\Model;
// use DB;
@voghDev
voghDev / PreferenceHelper.java
Last active June 29, 2020 20:16
Generic Preference Helper to save some lines of code managing shared preferences
/*
* Copyright (C) 2016 Olmo Gallegos Hernández.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
@guptasanchit90
guptasanchit90 / PreferenceHelper.java
Created November 20, 2015 16:34
A preference helper class for android.
package <Package Name>;
import android.content.Context;
import android.content.SharedPreferences;
import android.preference.PreferenceManager;
import java.util.Map;
import java.util.Set;
public class PreferenceHelper {