Asusultra's Profile
Reputation: 7
Worker
- Group:
- Contributors
- Active Posts:
- 39 (0.03 per day)
- Joined:
- 24-March 09
- Profile Views:
- 3,788
- Last Active:
Nov 02 2012 06:26 AM- Currently:
- Offline
Previous Fields
- Country:
- US
- OS Preference:
- Windows
- Favorite Browser:
- Chrome
- Favorite Processor:
- AMD
- Favorite Gaming Platform:
- XBox
- Your Car:
- Chevrolet
- Dream Kudos:
- 75
Latest Visitors
-
jjsaw5 
06 Dec 2011 - 09:54 -
wiero 
23 Jul 2011 - 04:54 -
yyc2001 
22 Jul 2011 - 14:45 -
eclipsed4utoo 
17 Jun 2011 - 06:07 -
Zdrenka 
08 Jun 2011 - 21:37 -
xtremer360 
01 Jun 2011 - 16:21 -
Nuha_IT 
22 May 2011 - 15:41 -
Nakor 
22 May 2011 - 11:16 -
JDewey 
22 May 2011 - 11:01
Posts I've Made
-
In Topic: Customizing SharePoint 2010 Enterprise Search WebPart
Posted 7 Dec 2011
I was able to move away from this task but, I believe I'll be blogging on some SharePoint 2010 in the future. This site has a plethora of information. There isn't enough regarding SharePoint though.
Thank you for the reply jjsaw5. -
In Topic: Aspect Oriented Javascript: The "Prefix"
Posted 10 Aug 2011
As per Atspulgs 's request (and most likely from here on out with tutorials/snippets and the like:
-Clean Code-
Imlementation:
function Prefix(OwnerObject, MethodName, PrefixFunc, PrefixFuncArgs) { var OriginalRef = OwnerObject[MethodName]; OwnerObject[MethodName] = function prefixProxy() { if (typeof PrefixFuncArgs != 'undefined' && PrefixFuncArgs != null) { PrefixFunc.call(window, PrefixFuncArgs); } else { PrefixFunc.call(); } var res = OriginalRef.call(this, arguments[0]); return res; }; }
Test the "no arguments" condition in the Prefix method.:
var str = new String(); function prefixFuncNoArgs() { str += "\nprefixFuncNoArgs - called"; } function originalFunc() { str += "\noriginalFunc - called"; } Prefix(this, "originalFunc", prefixFuncNoArgs, null); originalFunc(); alert(str); originalFunc(); alert(str); -
In Topic: Space between tables issue
Posted 13 Jun 2011
I didn't run your code but after just looking at it:
I would output the headers IMMEDIATELY before the "10-year" loop.
--rate loop-- { ... --Output Header-- ... --"10-year" loop-- { ... } } -
In Topic: Model Validation - where should it live?
Posted 1 Jun 2011
Hm, thank you for the response. I like hearing/reading of the countless ways certain things can be done when programming with .Net
Also, in regards to your signature, I don't know what a vextor is either. -
In Topic: Arrays
Posted 25 May 2011
I am certainly partial to Objects. I would create one for: master, matches, and segments
I am unsure of the relationship these objects have with each other
i.e. does a match contain multiple segments?
Then, if any object (or the masterarray) can contain multiple ..matches, segments, etc,.. use an array of those objects.
e.g. (Note: This is just a very basic example)
var masterArray = function () { this.introduction = ""; this.conclusion = ""; this.matches = []; this.segments = []; } var segment = function () { this.number = 0; this.writerId = 0; this.order = 0; } var match = function () { this.number = 0; this.typeId = 0; this.titleIds = []; this.stipulationsIds = []; this.charactersIds = []; this.writerId = 0; this.title = ""; this.preview = ""; }
My Information
- Member Title:
- New D.I.C Head
- Age:
- Age Unknown
- Birthday:
- Birthday Unknown
- Gender:
-
- Interests:
-
Programming
Computer assembly
Drumming
Learning
Teaching - Years Programming:
- 6
- Programming Languages:
- C#, C++, VB, Java, Asp.Net, JavaScript, CSS, T-SQL, Turbo Pascal
Contact Information
- E-mail:
- Click here to e-mail me
- MSN:
-
asusultra@live.com
- Website URL:
-
http://
- Skype:
-
asusultra
- LinkedIn:
- http://www.linkedin.com/in/calebmcelrath
|
|


Find Topics
Find Posts
View Reputation Given
|
Comments
Asusultra has no profile comments yet. Why not say hello?