Skip to content

Instantly share code, notes, and snippets.

anonymous
anonymous / Mouse-cursor-motion-blur-with-TweenMax-#html5-#motion-#blur-#motionblur-#css3-#tweenmax-@greensock.markdown
Created May 3, 2015 00:49
Mouse cursor motion blur with TweenMax #html5 #motion #blur #motionblur #css3 #tweenmax @greensock
@arufian
arufian / withMethod.cls
Last active August 29, 2015 14:07
Select * in SOQL using Apex Class
String table = 'TableName'; // with __c if use Custom Object
Map<String, Schema.SObjectType> m = Schema.getGlobalDescribe() ;
Schema.SObjectType s = m.get(table) ;
Schema.DescribeSObjectResult r = s.getDescribe() ;
Map<String, Schema.SObjectField> fields = r.fields.getMap() ;
string soql = '';
for (String fieldName : fields.keyset()) {
if (soql != '') {
soql += ', ';
}