Skip to content

Instantly share code, notes, and snippets.

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

Sulaeman feelinc

🏠
Working from home
View GitHub Profile
@feelinc
feelinc / paginator.go
Created October 17, 2019 04:08
Golang from Beego paginator utility, with new function to get pages with ellipsis
// Copyright 2014 beego Author. All Rights Reserved.
//
// 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
// distributed under the License is distributed on an "AS IS" BASIS,
@feelinc
feelinc / RNPaypalWrapperModule.java
Created June 17, 2017 00:25
React Native Paypal Android SDK Wrapper module java file
package com.namasaya.RNPaypalWrapper;
import android.app.Activity;
import android.content.Intent;
import com.facebook.react.bridge.ReactApplicationContext;
import com.facebook.react.bridge.ReactContextBaseJavaModule;
import com.facebook.react.bridge.ReactMethod;
@feelinc
feelinc / Sulaeman\PaypalWebService\Plugin\Paypal\Model\Express.php
Created June 16, 2017 05:23
Process the Paypal express payment information from external app in Magento 2
<?php
/**
* This file is part of the Sulaeman Paypal Web Service package.
*
* @author Sulaeman <me@sulaeman.com>
*/
namespace Sulaeman\PaypalWebService\Plugin\Paypal\Model;
use Magento\Framework\Registry;
use Magento\Framework\Model\Context;
@feelinc
feelinc / CorsHeader.php
Created September 14, 2016 12:24
CORS Middleware for Laravel
<?php
namespace App\Http\Middleware;
use Closure;
class CorsHeader
{
/**
* Handle an incoming request.
@feelinc
feelinc / Translator.php
Created September 17, 2015 10:23
Translation class similar to Gettext usage approach
<?php
use Symfony\Component\Translation\Translator as SymfonyTranslator;
use Symfony\Component\Translation\MessageSelector;
use Symfony\Component\Translation\Loader\PhpFileLoader;
class Translator
{
/**
@feelinc
feelinc / UploadDirS3.py
Last active November 2, 2023 14:53
Upload folder contents to AWS S3
#!/usr/bin/python
import os
import sys
import boto3
# get an access token, local (from) directory, and S3 (to) directory
# from the command-line
local_directory, bucket, destination = sys.argv[1:4]
@feelinc
feelinc / UploadDirDropbox.py
Created June 30, 2015 05:35
Upload folder content to Dropbox
#!/usr/bin/python
import os
import sys
from dropbox.client import DropboxClient
# get an access token, local (from) directory, and Dropbox (to) directory
# from the command-line
access_token, local_directory, dropbox_destination = sys.argv[1:4]
@feelinc
feelinc / aname-async.js
Last active August 29, 2015 14:02
REST API Resource Template Data
/**
* Module dependencies.
*/
var async = require('async')
, countryTemplate = require('./country')
, _ = require('underscore');
function aname(models, model, options, callback) {
if ( ! _.isObject(model)) {
if (typeof callback != 'undefined') {
<?php
class SomeClass
{
/**
* Hold options data for later use.
*
* @var Array
*/
<?php
return Response::json(new SettingTemplate($data));