Wednesday, 11 August 2010

Duplicate Post - Redirect: #11.08.10: BlogSpot6, Fair Trade dealing



“..transactional thinkingand individual autonomy to shift risk from governments and corporations onto individuals and to extend this kind of market logic into the realm of social and affective relationships.”
 Reference post, dated #09.08.10: DOI and digital copyright / patent law

Instead suggesting that this, in certain financial climates could be the total opposite, saying that the risk should now be with those same governments and corporations whose transactional thinking has been dictated by their environment / employees, who without individual autonomy at influential levels - operated within that capacity at that time without full autonomy and individualism. Adjudicating, in future years the impact on the open source objective, both by businesses groups and sole contributors moreover the copyright laws which surround the sharing and dissemination of material – and the standardisation of evolving techniques which increase developer capabilities to quash it’s unlicensed broadcast more to the point it’s re-invention - making it a proposition for mainstream acceptance.


Fair dealing, in certain circumstances, some works may be used if that use is considered to be 'fair dealing'. There is no strict definition of what this means but it has been interpreted by the courts on a number of occasions by looking at the economic impact on the copyright owner of the use. Where the economic impact is not significant, the use may count as fair dealing. So, it may be within the scope of 'fair dealing' to make single photocopies of short extracts of a copyright work for non-commercial research or private study, criticism or review, or reporting current events.
 Reference http://www.ipo.gov.uk/

Thursday, 29 July 2010

Revenue, the future of social networking


revenue-the-future-of-social-networking

BlogPosts, and transitionals

cmt3095.blogspot.com, will now be continued on wordpress - http://blogspot6.wordpress.com/. Not due to better functionality just standards of UI. although cmt3095 will still be up allowing .js testing etc. Pending viable revenue and the final transfer to a domain space..@ookwudili

Wednesday, 9 June 2010

Reviewing recruitment portals & data warehousing sites



Mostly for my own requirements, as currently seeking contractual, full-time employment.

Seems to be a lack of impartiality as concerns the development of middleware, geared towards content aggregation and re-appropriation between recruitment sites.

Thursday, 3 June 2010

Viability study, foundation research



Provisioning the design, build and administration of applications over Re – conditioned hardware, forward to study 'an alternate means of data-centric media design for tertiary communications'.

Theoretical application of recursive scheduling systems (day)



Application protocol interfaces based on extended sceduling systems, using established data as its testbed. In the first instance looking at national holidays around the globe, their traditions, recursion and relevance. Towards better understanding of API's - application protocol interfaces, basing this new area of study on basic sceduling systems and their tertiary attributes.

Tuesday, 1 June 2010

Cloud Computing & its components



Rough review of 'UDDI, WAS, WSDL, WSSL Sandboxes, Unified Modelling Language, AMAZON EC2, VPC, VPN' plus other solutions for optimizing performance of distance communication. With the objective of better understanding the role of Application Protocol Interfaces,

W3C Specification;

Most of the APIs defined by this specification are interfaces rather than classes. That means that an implementation need only expose methods with the defined names and specified operation, not implement classes that correspond directly to the interfaces. This allows the DOM APIs to be implemented as a thin veneer on top of legacy applications with their own data structures, or on top of newer applications with different class hierarchies.

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;

}




Friday, 16 April 2010

Legacy Themes: Java the language, a brief history



snippets from:

  • SmallTalk
  • C++
  • C / BPCL – (Basic Combined Programming Language)
Reviewing Embedded Java Platform and its continous use today for closed systems.
success in creating a portable programming language in turn making it compatible with other platforms – such as 'microsoft windows', 'unix' & 'mactintosh'.

Endorsement by corporations of java as a replacement for legacy applications – written in 'C' / 'C++', java's utilisation for internet / intranet – enabled applications - looking at aspects of both languages.

Thursday, 16 July 2009

Development of 'Web-centric' Applications



Acknowledging the principles of Web Enabled Applications, even at a basic level (ECMAScript: query strings), Information Technology and cost-effective computer applications, the approach of client / server architecture, peer-to-peer communication. Speculative, the introduction of a 'two-tier architecture', in which 'client – side software requests information from the user – formatting the request into a query which in turn is sent over the network to the database server for processing.

HTML4.0, ECMAScript, XML*(various parsers), Perl (variants) and Oracle10g (Sql);

if I am able to find a successful parser, and an original installPak of perl which works without daft variants..