Skip to content

Instantly share code, notes, and snippets.

View mpurbo's full-sized avatar

Mohamad Purbo mpurbo

View GitHub Profile
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.messaging.Message;
import org.springframework.messaging.MessageChannel;
import org.springframework.messaging.simp.stomp.StompHeaderAccessor;
import org.springframework.messaging.support.ChannelInterceptorAdapter;
public class StompInboundChannelInterceptor extends ChannelInterceptorAdapter {
static final Log LOG = LogFactory.getLog(StompInboundChannelInterceptor.class);
@mpurbo
mpurbo / android-aar-maven-local.sh
Last active June 14, 2019 06:05
Installing Facebook SDK as aar to local maven repository
export ANDROID_HOME=/Applications/Android\ Studio.app/sdk/
cd facebook-android-sdk-3.14
gradle facebook:build
mv facebook/build/libs/facebook.aar facebook/build/libs/facebook-3.14.aar
mvn install:install-file -Dfile=facebook/build/libs/facebook-3.14.aar -DgroupId=com.facebook -DartifactId=android-sdk -Dversion=3.14 -Dpackaging=aar
__author__ = 'purbo'
import os
import time
import threading
import urllib
import re
import logging
from pyftpdlib.authorizers import DummyAuthorizer
from pyftpdlib.handlers import FTPHandler
@mpurbo
mpurbo / create_framework_ws.sh
Created August 30, 2013 04:54
XCode .framework build script for xcworkspace based projects (works for CocoaPods projects as well).
# adapted from following sources:
# https://github.com/jverkoey/iOS-Framework
# http://codefriend.blogspot.jp/2011/09/creating-ios-framework-with-xcode4.html
# http://www.cocoanetics.com/2010/04/making-your-own-iphone-frameworks/
# "No architecture.." error resolved by trying some of these:
# http://stackoverflow.com/questions/6151549/how-can-i-build-a-specific-architecture-using-xcodebuild
set -e
set +u
@mpurbo
mpurbo / create_framework_prj.sh
Created August 30, 2013 04:53
XCode .framework build script for xcodeproj based projects.
# adapted from following sources:
# https://github.com/jverkoey/iOS-Framework
# http://codefriend.blogspot.jp/2011/09/creating-ios-framework-with-xcode4.html
# http://www.cocoanetics.com/2010/04/making-your-own-iphone-frameworks/
# "No architecture.." error resolved by trying some of these:
# http://stackoverflow.com/questions/6151549/how-can-i-build-a-specific-architecture-using-xcodebuild
set -e
set +u
@mpurbo
mpurbo / gist:5132544
Created March 11, 2013 07:33
Integer bits of double/float
#include <stdint.h>
uint64_t doubleToBits(double x) {
const union { double f; uint64_t i; } xUnion = { .f = x };
return xUnion.i;
}
uint32_t floatToBits(float x) {
const union { float f; uint32_t i; } xUnion = { .f = x };
return xUnion.i;
@mpurbo
mpurbo / gist:5131291
Created March 11, 2013 01:10
GCD for static array of objects.
static NSArray *objectRegistry;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
objectRegistry = [[NSArray alloc] initWithObjects:obj1, obj2, nil];
});
return objectRegistry[index];
@mpurbo
mpurbo / gist:5104750
Created March 7, 2013 01:14
Disable horizontal auto-rotation on iOS >= 6.0
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskPortrait;
}
@mpurbo
mpurbo / gist:5087295
Created March 5, 2013 01:31
Generic methods for fetching rows from table using Core Data.
- (NSArray *)fetchRecordsForEntity:(NSString *)entityName
{
return [self fetchRecordsForEntity:entityName orderBy:nil];
}
- (NSArray *)fetchRecordsForEntity:(NSString *)entityName orderBy:(NSString *)column
{
NSError *error = nil;
NSManagedObjectContext *managedObjectContext = [self managedObjectContext];
@mpurbo
mpurbo / gist:1875511
Created February 21, 2012 09:43
geomon-client-ios: ユーザーの登録(非同期のリクエスト)
/**
* 非同期的にユーザーを登録する。
*/
- (void)registerUserUsingClient:(MMGClient *)client
{
[client registerUserWithId:@"baabaa"
name:@"Baa Baa Black Sheep"
email:@"baabaa@blacksheep.com"
password:@"moomoo"
delegate:self];