Sunday, April 30, 2017
Alright Already
Alright AlreadyCripes, what a pushy bunch. I take time out from a rare family holiday to write a post with photos of a finished project*and what happens? Almost as one, the readers rise up and shout,"BUT WHERES THE PONCHO?"Perhaps, like global warming and the war in Afghanistan, its my own fault. I mustnt have been clear that the pink poncho is not, and was never intended to be, a Christmas gift....
Android To Case Android App to log Salesforce Case

Android To Case Android App to log Salesforce CaseHi All,Most of you may know "Web To Case" functionality of Salesforce. I have used the same concept and reuse that idea to make simple Android App, which works exactly same as "Web to case", so i called this app as "Android To Case".Here is some screen shot how it will look like:1) Initial Screen:2) After Submit below screen will come:The code and...
Android Wear 1 3 0 2171751

Android Wear 1 3 0 2171751 My Granpa - 1948 This is my Granpa, from about 1948. He passed away when I was nearly 12, so I only have faint memories of him. I remember him as a clown for the Lions Club, as my Grandpa who thought that I could do no wrong, as a strong man of the community. I know from looking through old albums with my Granma that he has numerous commendations from past presidents,...
Android Rabbids Big Bang v2 1 2 Premium APK

Android Rabbids Big Bang v2 1 2 Premium APK That confuses me to manage th bandwidth traffic is the video stream such a youtube and others on the Internet Cafe Network. Video streams can be spend a lot of bandwidth of the bandwidth totally that you have. Even until the children were familiar with video streams such a youtube to watch the video that they want. Its very frustrating to me when the...
Annoying Myths on the Bailout

Annoying Myths on the BailoutSince I missed my connection and Im spending New Years in an airport hotel, I figured Id take this time when everyone is out celebrating to point out something I know is unpopular, but which still annoys me. Joe Stiglitz, writing at the New Deal 2.0, echoes the conventional wisdom on the bailouts: We are accustomed to thinking of government transferring money from the...
Announcing Upcoming Giveaway!

Announcing Upcoming Giveaway!Happy Friday! Since summer school started this week, it actually seems important that today is a Friday – days of the week again carry meaning! Where did my summer go?!**Just an FYI…this Sunday I will post my 100 followers giveaway! Some of my blogging friends mentioned they would like to participate, I will be emailing you! If you don’t receive...
Labels:
announcing,
giveaway,
upcoming
Animated Widget Contact Pro v1 6 3 Apk

Animated Widget Contact Pro v1 6 3 ApkAnimated Widget Contact Pro v1.6.3 ApkRequirements: for Android version 2.1 and higherOverview: + NEW! Apps Launcher Widget. Animated fast dial widget greatly facilitates such tasks as dialing frequent or favourite contacts, sending SMS, MMS or e-mailing. The user’s actions are accompanied by customizable video effects, which are perfectly realistic and strikingly...
ApexDoc A Salesforce Code Documentation Tool
ApexDoc A Salesforce Code Documentation Tool
Hi All,
Most of you java people may be familar with "javadoc" utility, and who are not from java they must know about good code documentation :).
A good documentation is always a good thing for your project for long term success. A good documentation contains well defined comments, usage, public methods used, their parameters, return types, author, dates etc. Generally documentations used for a open source project or a library projects, so that if any new person is using your library or project then he will get good help about that easily.
A good documentation is always a good thing for your project for long term success. A good documentation contains well defined comments, usage, public methods used, their parameters, return types, author, dates etc. Generally documentations used for a open source project or a library projects, so that if any new person is using your library or project then he will get good help about that easily.
I am working in Salesforce about 3 years with lot of Apex coding. I also created some libraries in Apex also. I wanted something similar documentation for my work using same like javadoc. But i could not found any tool exist for that. So started this utility project in java. My main moto is to make it as simpler as javadoc command. So, here comes my apexdoc.

Go to here http://www.aslambari.com/apexdoc.html and download the "apexdoc" java client. You can also find one screen cast there. Its a zip, so after download, unzip it on your disc, for example D:apexdoc.
Command Syntax:-
apexdoc <source_directory> [<
1) source_directory :- The folder location which contains your apex .cls classes. Ideally it is the folder classes under your Eclipse IDE project setup on disc under "src" subfolder. I think best is that you should first copy that classes folder somewhere on disc for example "D:myprojectclasses", and use this as source folder.
2)
3) homefile :- This option is optional. This is to specify your contents for the home page right panel, Ideally it contains the project information for which you making documentation and it MUST be in html format containing data under tags.
4) authorfile
---------------------
projectname=<project name will be shown on top header>
authorname=<author name will be shown on top header>
email=<email will be shown on top header>
sampleauthor.txt
----------------------
projectname=my project
authorname=Aslam Bari
email=aslam.bari@gmail.com
5) Ideally if you need logo at top of your documentation header, you must put your file under your
Sample commands:-
1) Sample 1:-
apexdoc D:myprojectclasses D:homehtml D:myhome.html D:myauthor.txt
It will generate documentation of all "*.cls" files containing under "D:myprojectclasses" folder and output will be generated under "D:homehtml" folder with name "ApexDocumentation", your home page will contain project info from "D:myhome.html" file, and your header will get contents from D:myauthor.txt file.
It will generate documentation of all "*.cls" files containing under "D:myprojectclasses" folder and output will be generated under "D:homehtml" folder with name "ApexDocumentation", your home page will contain project info from "D:myhome.html" file, and your header will get contents from D:myauthor.txt file.
2) Sample 2:-
apexdoc D:myprojectclasses
It will generate documentation in current folder of given source directory "D:myprojectclasses".
If all goes fine you will get one good documentation of all your classes, public properties and public methods generated. One sample generated output is here:-
Guidelines for comments and code:-
You code must have two types of comments. One for Classes, one for Methods. By default all public properties will be fetched in documentation, no need for comments for them.
Comments must start with /** and ends with */
Following attributes are supported for now:-
@author
@date
@param
@param
---(multiple @param supported)
@description
@return
Some sample code with comments as below:-
/**
* @author Aslam Bari
* @date 25/01/2011
* @description Class calculates some accounting information based on user experience and given methods. Usually user need to make one object of the class and call methods direcly.
*/
public class Accounting{
public string accountNo {get;set;}
public Integer discount {get;set;}
public string bankname {get;set;}
private string balance = 0;
/**
* @author Mark P
* @date 25/01/2011
* @description It accepts one account number and discount from external
user and calculates some info based on user profile and return the total price.
* @param accountNumber Users account number
* @param discount discount applicable for the user
* @return Double Price calculated after calculating based on profile
*/
public double calculatePrice(string accountNumber, integer discount){
-----------------
-----------------
-----------------
return price;
}
}
This
Thanks
Aslam Bari
Labels:
a,
apexdoc,
code,
documentation,
salesforce,
tool
Alphabakes March 2015

Alphabakes March 2015Its the 1st of March so its officially spring. Yay! The days are definitely getting lighter and the weather is warming up albeit slowly. I hope this will inspire you to bake something for AlphaBakes this month particularly as its an easy letter. Before I tell you what it is, do head on over to Carolines blog for the V Round up if you havent already seen it. We had lots of lovely...
Labels:
2015,
alphabakes,
march
Angry Birds Go! V1 0 0
Angry Birds Go! V1 0 0Version: 1.0.0 T iPhone FreeCategory: GamesFree Apk Files Angry Birds Go! V1.0.0d: 26 November 2013Version: 1.0.0Size: 97.9 MBLanguage: EnglishSeller: Rovio Entertainment Ltd© Rovio Entertainment Ltd Free Apk Files Angry Birds Go! V1.0.0: Requires iOS 6.0. Compatible 4, iPhone 4S, iPhone 5, iPhone 5c, iPhone 5s, iPad touch. T 5.Free Apk Files Angry Birds Go! V1.0.0 http://shareflare.net/download/31077...0-ber.ipa.htmlhttp://freakshare.com/files/kzvtge6s...0-ber.ipa.htmlryBirdsGo-v1.0.0-ber.ipa.htmlAvailable link for...
Saturday, April 29, 2017
AKVIS HDRFactory v5 5 812 14260 x64 Multilingual P2P

AKVIS HDRFactory v5 5 812 14260 x64 Multilingual P2PP2P group has released the updated version of “AKVIS HDRFactory” for Windows. AKVIS HDRFactory is a versatile program for creating HDR images and making photo correction.Description: AKVIS HDRFactory is a versatile program for creating HDR images and making photo correction. High Dynamic Range Imaging is a technique used to produce an image...
Labels:
14260,
5,
812,
akvis,
hdrfactory,
multilingual,
p2p,
v5,
x64
Another online game platform but this one may be the best one yet for promoting mastery learning

Another online game platform but this one may be the best one yet for promoting mastery learningIn a perfect world, we would monitor each students learning and growth by name and need. One student may need help with mastering causes of the War of 1812. Another cant remember the 3/5 Compromise. How to structure instruction so that each students individualized needs are met?A free...
An All Black Denim Look To Try Now
An All Black Denim Look To Try NowPhoto via: Shop Super StreetThis outfit inspiration goes out to the girl who loves both denim and an all-black look. Its super easy to pull off and gives you an instant cool-girl factor. All youll need is a black denim jacket, a black tee or sweater, cropped black flared jeans, and black high top Converse sneakers.Get the look:+ Ray-Ban New Wayfarer Sunglasses+ Monki...
Akhil Th Power Of Jua 2017 450MB 720P BRRip Hindi Dubbed – HEVC

Akhil Th Power Of Jua 2017 450MB 720P BRRip Hindi Dubbed – HEVC Ratings: 4.1/10Genre(s): Action, Drama, RomanceReleased On: 2017Directed By: Vinayak V.V.Movie Star Cast: Akhil Akkineni, Sayyeshaa Saigal, Rajendraprasad Synopsis: A cruel business official attacks a tribal village for a stone which the people treat it as something special a guy who thinks he is somehow related to the stone comes to...
Andaman 2016 Tamil Watch Online Full Movie Free HD

Andaman 2016 Tamil Watch Online Full Movie Free HD #main-wrapper {margin-top: 0px!important;} .goog-inline-block fyre-button-right-inner-box{width: 90pxImportant;} h3,h4 { background: none!important; } .postmeta { display: none !important;} .red {color:red!Important;} span { font-size: 16px!Important;} a { color: white;} #sidebar-wrapper, #sidebar1-wrapper {display:none;} #main-wrapper {width: 945px;}...
Subscribe to:
Posts (Atom)