Sunday 30 May 2010

WSDL, WSSL & other variants



Reviewing, WSDL and its variants seeing how this could co-incide with the concurrent literature review of 'BEEP – the definitive guide'.

Saturday 29 May 2010

Google I/O Day 2 keynote





One of many keynote speeches, google analytics and abstracted toolset for business, organisation and online networking..

Thursday 27 May 2010

Privacy rulings, Web Applications and their Frameworks



Review of past applications, correspondence and web-blogs. Rediscovery of Intervals and their MVC – Model-view Controller framework application, along with several tertiary accounts hosted on it – developed by pelagodesign of Santa Barbara, California.

Interesting their disclosure of approaches to hosting, administration and developmental models using PHP, Ruby, MVC hosted on Ubuntu Linux..

Wednesday 26 May 2010

Review of Protocols, the theoretical



Reviewing, an introduction to beep – persistent connections with multiple exchanges occuring serially over a single connection. Unicast applications connection-oriented models using domain name system managing name-to-address resolution.

Scheduling systems, protocols and their paradigms, the implementation and function of ad-hoc security models re-application of session concepts series, logic of managing multiple session states.

Tuesday 25 May 2010

Data-centric Communications, innovation and marketing;



Reviewing TCP, the layering of HTTP and SMTP developers choice for social networking the applicability and principles of social networking sites in current times plus future direction, as a lead on from the prior research into data-centric communication in remote regions.

Analyzing popular applications, both desktop and web-based communications using asynchronous push technologies. Moreover, the time-insensitive pull synchronous protocol of the World-wide web – exploring the division between marketing for platforms and degredation in delivery of same name brand services.

Monday 24 May 2010

Data Communications: exploring the application of I.t. In remote regions



Started a draft document, synopsis for study, research through social networking an enquiry, examining practices of designers, developers and beta testers, how self properties in autonomic systems are able to be regulated through better understanding of languages and their paradigms during and following the development of software for remote environments with restricted network connectivity.

Saturday 22 May 2010

ECMAScript & Low Level Paradigms on Social Networking Sites



Isnt MySpace dry, discovered the low-level paradigms of myspace's developer testbed. A cheap time preserving alternate to the alternate? , anyway.. still a case of 'rtfm' though.

Tuesday 11 May 2010

SOA-J, CVS on Apache



Another non-practical (596 registery key errors last count), review of projects both established and to be developed. Quick look at ECMAScript, tertiary online marketing and their analytics – is trends too extensive – searching for solution to the problem of redirecting / driving traffic in most cost- effective manner i.e. - FREE.

Sunday 9 May 2010

Social Networking, Data Management



Renewed presence on Twitter, again. Migration of event data from .csv to windows.live data and other portals – googlemail etc.
Forums, data and its organisation – looking for feedback on Application Protocol Interfaces, how they work, factors of their development alongside Software development kits; legality of Managed and Native Code.

Saturday 8 May 2010

Social Networking Sites & their Feeds



Viadeo network, filtering Blog threads from mySpace remains a problem – widget cancelled altogether.

Friday 7 May 2010

Progressive Enhancement:



iPhone: Objective C

Listings, my first go at this language apart from Cocoa. Interested to note other peoples experience as PC rather than MAC users.

-----------------------------------------------------------

*(Integer.h)

#import
@interface Integer: Object{int integer;
}
-(int) integer;-(id) integer: (int) -integer;
@end


*(Integer.m)

#import "Integer.h"
@implementation Integer
-(int) integer
{
return integer;
}
-(id) integer:(int) integer{
integer
=_integer;return self;
}
@end


*(arithmetic.h)

#import "Integer.h"
@interface Integer
(arithmetic)
-(id) add:(Integer *) addend;
-(id) sub:(Integer *) subtrahend;
@end

*(arithmetic.m)

#import "arithmetic.h"
@implementation Integer (Arithmetic)
- (id) add: (Integer *) addend{
return [self integer: [self integer]
+ [addend integer]];

} - (id) sub: (Integer *) subtrahend{
return [self integer: [self integer] - [subtrahend
integer]];
}@end

*(display.h)

#import "Integer.h"
@interface
Integer (Display)
- (id)
showstars;
- (id) showint;
@end

*(display.m)

#import "Display.h"
@implementation Integer (Display)
- (id) showstars{
int i, x = [self integer];
for(i=0; i <>
printf("\n");
return
self;
}

- (id)
showint{
printf("%d\n", [self
integer]);
return self;
}

@end

*(main.m)

#import "Integer.h"
#import "arithmetic.h"
#import "display.h"

intmain(void){
Integer *num1 =
[Integer new], *num2 = [Integer new];
int x;
printf("Enter an
integer: ");
scanf("%d", &x);
[num1 integer:x];
[num1 showstars];
printf("Enter an integer: ");
scanf("%d", &x);
[num2
integer:x];
[num2 showstars];
[num1 add:num2];
[num1 showint];
return 0;

}