Max Titov IV @ TechSplice

The most beautiful music of all is the music of what happens.
  • Home
  • About

Archive for the ‘Web Development’ Category

You are currently browsing the archives for the Web Development category.

25 Feb 2009

3D NetMeeting world

Each one of us has experienced the benefits of hosting a meeting through online visualization tools. Such online providers as NetMeeting gave regular users a more flexible way to share information over the internet.

Now with the ever growing demand for richer environment Intel is introducing a concept of meeting online in a 3D environment.
The ScienceSim will give users the capability to build their own virtual worlds. The possibilities are endless.

ScienceSim provides the basic building blocks (client viewers, installation utilities, management tools, etc.), and new technologies that enable broader interoperability through content sharing. Interested people can quickly bring up their own worlds on their own systems and experiment with creating 3D worlds of their own.” What’s interesting about this project is the amount of open source used and yet the compatibility with Second Life.

25 February, 2009 at 8:18 by Max

Posted in Software Engineering, Web Development | 1 Comment »

9 Feb 2009

PayPal SOAP basics

The purpose of this article is to cover standard SOAP capability of PayPal interfaces.  As a reference I use PP_API_Reference.pdf document provided in the documentation section of PayPal Developer Center.

Lets begin by defining some standard references that will come in-play later on:

Test Sandbox links: PayPal Schema, eBL [Ebay Business Language] Base Components and Component Types

Production links: PayPal Schema,  eBL Base Components and Component Types

9 February, 2009 at 22:20 by Max

Tags: api, basic, center, components, developer, guide, paypal, reference, soap
Posted in Web Development | No Comments »

9 Feb 2009

PayPal Sandbox Setup

I am in the process of developing a online e-commerce application for a e-learning business.  As so I am targeting the utilization paypal to enhance my financial architecture.A few things that I found helpful along the way:

  1. Set up of a sandbox account that would allow you to play with your virtual development shopping cart.
  2. Go look at the development center for the PayPal SDK
9 February, 2009 at 19:28 by Max

Tags: basic, paypal, sandbox, setup, soap
Posted in Web Development | No Comments »

21 Jul 2008

stacyhung.com

stacyhung.com screenshot Another creation, this time for someone special. Happy Birthday Stacy.
21 July, 2008 at 18:14 by Max

Tags: new, website
Posted in Everyday stuff, Web Development | No Comments »

4 Jul 2008

Google & Yahoo are ready to search Flash files

It is about time someone in Adobe stood up and fixed the oldest disadvantage in Flash.  Finally, Google and Yahoo caches will be able to adequately parse the contents of SWF Flash files and retrieving text values from graphically advanced objects. 

Developers such as my self who are boggled by Flash capabilities and at the same time annoyed by the disadvantages of setting up a highly functional webpage only to face the inevitability of fighting browsers and client settings were forced to find other means of providing the infamous crawlers with the content that could not be retrieved from the compiled Flash executable. 

 

Here are some facts that one might find interesting:

1.       The new improvement can be applied to every version of the SWF format.  [Both old and new].

2.       Developers do not need to modify their existent project to make the content more searchable, the information will be available at the get go.

3.       Google has already began the rollout process of the new searchable SWF capability.

4.       At the moment the searching capabilities only affects the text base interior of the SWF file.  Currently there is no logic that focuses on the graphical [images] aspect of the infrastructure. 

Overall the new changes spell faster, better search results when it comes to working with flash.  The long despised draw back can finally be forgotten and a new age of vibrant high dimensional applications is waiting to make their mark on the web.

4 July, 2008 at 7:28 by Max

Tags: ability, innovation, new, search
Posted in Web Development | No Comments »

11 Apr 2008

New project: two-become-one.org

Another client, another design, another adventure.

Two-Become-One.org screen shot.

www.two-become-one.org: Soon to be fully up and running a new wedding planner website is in the process of being created.

11 April, 2008 at 23:13 by Max

Tags: adobe, create, development, Flex, new, project
Posted in Web Development | No Comments »

11 Dec 2007

Workaround for: “Click to activate and use this control” IE problem.

Those of you who have been found of putting up interesting controls on your web pages might have come across the ‘Click to activate and use this control’ bug that occurs in Internet explorer.  If you do some searching you will find a lot of posts that require upgrade and an installation of a patch.   Having explored the problem my self I offer you an alternative solution:

  1. Create a javascript function that is initiated when the page is loaded ‘onload’ event.
  2. Create a tag with a particular id somewhere on your page [lets say "fuzzy_object" for a sake of an argument].
  3. In your javascript function create a  single string containing the specifications of your object [in my case it was an swf file].
  4. Perform the following: document.getElementById(‘fuzzy_object’).innerHTML = concatinated_string.

This is a tad generic but it should work.   If not just let me know and I’ll post a more detailed solution.

11 December, 2007 at 17:45 by Max

Tags: browser, development, fix, problem, solution, solve, web, workaround
Posted in Web Development | No Comments »

9 Dec 2007

Cyrilic integration of Flex and PHP

A recent project involved integration between a PHP content management tool like Joomla and Adobe Flex 2. I wrote a PHP script that parsed a MySQL database creating an XML structure that was then picked up by a HTTPService in a Flex application.

The information in the database was stored in Cyrillic format, hence when ever I was loading the data in to the SWF compiled file the end result was a collection of garbage data.  Setting the actuall HTML to Windows-1251 encoding did not help the situation.

My following approach was to locate a native functionality within the Flex architecture to mediate the situation.  Unforchunately I wasn’t successful in aquiring sattisfying examples to solve the problem.  For that matter it became sadly obvious that I haven’t seen any flash pages using non/english alphabet [either I haven't been checking international sites that much or Adobe Flex isn't widely used overseas] .

My third approach was to look at the actual php code that was generating the XML structure.  I’ve discovered a useful function mb_convert_encoding that eventually solved my problems.  Using a simple snippet of code:

mb_convert_encoding($string_to_convert,'UTF-8','Windows-1251');

I was able to convert the data from UTF-8 in to Windows-1251 which allowed me to display the desired Cyrillic characters.

9 December, 2007 at 19:57 by Max

Tags: code, development, flash, Flex, php, sql
Posted in Flex, Web Development | 2 Comments »

29 Nov 2007

Hacking CSS

There’s quite a few links out there that talk about the different methods of hacking IE and Firefox along with many other browsers.

Having been developing in Adobe Flex for the past while I’ve been ignoring the CSS issue but in my latest project I had to face the beast. My goal was to find a way in which I can block particular tags in both IE and in Firefox. so here’s what I found after doing some research.

For a page where you have an internal <div id=”pathway_text_inner”> the following will be ignored in Firefox:

#pathway_text_inner{ 
_width: 900px;
_padding-left: 10px;
_padding-top: 7px;
}

Pretty much anything that is preceded by an underscore is ignored in Firefox.

Similarly the following is ignored in IE7.

*:lang(en) #pathway_text_inner{ 
padding-left: 10px;
padding-top: 10px;
height: 20px;
overflow: hidden;
width: 890px;
}

where <body lang=”en”> .

I know there’s been quite a bit written about the subject but I couldn’t find the exact answer from the first Google search that I performed. Hence this post.

Cheers.

29 November, 2007 at 10:34 by Max

Tags: css, development, fix, hack, solution
Posted in Web Development | No Comments »

10 Sep 2007

Getting your web optimization hat on.

A friend of mine asked me a question: “Do you know anything about Search Engine Optimization?”.

Sadly I had to respond that ‘No, not really’. Neadless to say, eager to learn more about the subject and knowing that soon in the near future I would have to look in to the subject my self I started Googling.

Without long I came across two interesting articles, ‘A modern approach to Flash SEO‘ – related to designing website in Flash and dealing with the known problem that Google might/might-not parse .swf files when crawling through web pages. A second article dealt with an example of how when developing a website the QA rarely takes in to account the prespective of a search engine web-crawler to which I suggest examining the ‘SEO Tools – Spider Simulator‘ article.

Thats it for now, stay tuned for more info.

10 September, 2007 at 11:51 by Max

Posted in Web Development | No Comments »

« Older Entries
  • Subscribe using FeedBurner
  • Cloud

    abap adobe animation basic beautiful builder camera code configuration contribution design development digital engineering fix flash Flex friends function images interesting lesson new paypal Photography php problem problems program programmer review sap SAP/ABAP sdk setup soap software solution story system tables transaction transports user video

    WP Cumulus Flash tag cloud by Roy Tanck and Luke Morton requires Flash Player 9 or better.

  • My Links

    • Cooking
    • Gallery
    • Resume
  • Online Tools

    • Airline Ticket Search
    • Estimate Shipping Cost [from US]
    • Link your Blog
  • Software Engineering Blogs

    • Adam Goucher
    • Joel on Software
    • The Third Bit
    • Wide Awake Developers
  • Categories

    • Everyday stuff
    • Flex
    • Photography
    • SAP/ABAP
    • Short Stories
    • Software Engineering
    • Web Development
  • Gallery

    Roy Tanck's Flickr Widget requires Flash Player 9 or better.

Max Titov IV @ TechSplice is proudly powered by WordPress
Design & code by Jonk
Entries (RSS) and Comments (RSS).
Podcast Powered by podPress (v8.8)