Asusultra's Profile User Rating: -----

Reputation: 7 Worker
Group:
Contributors
Active Posts:
39 (0.03 per day)
Joined:
24-March 09
Profile Views:
3,788
Last Active:
User is offline 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

Icon   Asusultra has not set their status

Posts I've Made

  1. 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.
  2. 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);
    
    
  3. 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--
       {
          ...
       }
    }
    
    
  4. 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.
  5. 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:
MSN  asusultra@live.com
Website URL:
Website URL  http://
Skype:
Skype  asusultra
LinkedIn:
http://www.linkedin.com/in/calebmcelrath

Friends

Comments

Asusultra has no profile comments yet. Why not say hello?