Skip to main content

Home/ Agency Oasis Developers/ Group items matching "and" in title, tags, annotations or url

Group items matching
in title, tags, annotations or url

Sort By: Relevance | Date Filter: All | Bookmarks | Topics Simple Middle
Mark Ursino

CARTOVIEW - 0 views

  •  
    Our famework is fast, flexible, and FREE. It's designed for people who edit map content. Find out more, or try it out yourself with our online demo. CartoView allows you to use Google maps, Google Earth Browser, Openlayers and other mapping APIs interchangeably. CartoView offers an advanced plugin architecture for rendering plugins on many web mapping applications. Use Cartoview to develop your mapping plugin once and use it in many different online mapping applications.
Mark Ursino

jQuery Bubble Popup - 0 views

  •  
    jQuery Bubble Popup is a plugin to display smart, animated & shadowed, "bubble" popups or tooltips with few lines of code in jQuery. The plugin support HTML5 and it is fully compatible with IE, Firefox, Chrome, Opera and Safari. It needs jQuery v.1.4.2 to run, the fastest and concise JavaScript Library.
Mark Ursino

jParallax - 0 views

  •  
    jParallax turns a selected element into a 'window', or viewport, and all its children into absolutely positioned layers that can be seen through the viewport. These layers move in response to the mouse, and, depending on their dimensions (and options for layer initialisation), they move by different amounts, in a parallaxy kind of way.
Mark Ursino

OAuth.net - 0 views

  •  
    OAuth.net is a .net library which provides full OAuth consumer and provider support. The library facilitates secure API authentication in a simple and standard method for desktop and web applications.
Mark Ursino

jQuery Spritely - 1 views

  •  
    jQuery.spritely is a jQuery plugin created by Artlogic for creating dynamic character and background animation in pure HTML and JavaScript. It's a simple, light-weight plugin with a few simple methods for creating animated sprites such as the birds you see on this page, and dynamic scrolling backgrounds.
Mark Ursino

Reactive Extensions for JavaScript :: Sessions :: Microsoft MIX10 - 0 views

  •  
    Come hear how the Reactive Extensions ("Rx") framework takes care of the difficult parts of asynchronous programming by viewing asynchronous computations as push-based collections. Instead of focusing on the hard parts, developers now can start dreaming about the endless possibilities of orchestrating and synchronizing computations at a high-level of abstraction. In this session we cover the design philosophy of the new Reactive Extensions for JavaScript, rooted on the deep duality between the well-known iterator and the observer design patterns. From this core understanding, we start looking at various combinators and operators defined over observable collections, as provided by Rx, driving concepts home by a bunch of samples. Democratizing asynchronous programming starts today. Don't miss out on it!
Mark Ursino

http is deprecated. - 0 views

shared by Mark Ursino on 29 Jan 11 - Cached
  •  
    By default, all popular Web browsers assume the HTTP protocol. In doing so, the software prepends the 'http://' onto the requested URL and automatically connect to the HTTP server on port 80. Why then do many pages explictly set http on all hypertext links? Surely it is easier to type "domain.com" than "http://domain.com". HTTP is also deprecated due to the ever-evolving web: The HyperText Transfer Protocol is no longer used to transfer hypertext. It is increasingly becoming used a means to transfer any content over port 80. Thus the definition "http" no longer means anything in the context of a URL since you are unlikely to be requesting hypertext. As the web evolves, next generation protocols will begin to replace http. By explicitly using "http://domain.com" in your links you are forcing your viewers of the future into using an obsolete protocol. By using "//domain.com" you will guarantee the protocol of tomorrow will work with your pages of today. Succinctly, use of the http protocol is redundant and time consuming to communicate. The internet, media, and society are all better off without it.
Mark Ursino

HTML Email Boilerplate - 0 views

  •  
    This website and its sample code creates a template of sorts, absent of design or layout, that will help you avoid some of the major rendering problems with the most common email clients out there - Gmail, Outlook, Yahoo Mail, etc. While not plug and play (you know, you'll have to do some work ;-), it will provide some helpful examples and snippets that will keep your email design rendering as true-to-form as possible.
Mark Ursino

Using Web Performance Load Tester - 1 views

  •  
    Web Performance Load Tester is a powerful and easy to use tool that will allow you to automate load testing and generate reports to help you analyze the performance of a web site. The 10 virtual user version, which is full featured, is free to use and is ideal for identifying pages that exceed a threshold value for further investigation.
Mark Ursino

spin.js - 0 views

  •  
    Spin.js uses the CSS3 to render the UI, falling back to VML Internet Explorer. If supported by the browser, @keyframe rules are used to animate the spinner. The spin() method creates the necessary HTML elements and starts the animation. If a target element is passed as argument, the spinner is added as first child and horizontally and vertically centered.
Douglas Couto

How to Fix "PageHandlerFactory-Integrated" bad module "ManagedPipelineHandler in IIS7 - 0 views

  •  
    Apparently, the reason I was recieving the Internal Server error message was that I had installed SQL Server 2008, after installing Visual Studio 2010, and because of this it corrupted the IIS Machine level configuration files ("If you install VS2010 and then install VS2008 and VS2008 SP1, the configuration files for ASP.NET in IIS only include about 1/2 of the correct .Net 4.0 configuration sections." read more here).
Mark Ursino

Ideal Forms - 0 views

  •  
    Ideal Forms is a small framework to build powerful and beautiful online forms. It's very easy to use and requires minimal html syntax. Absolutely everything is stylable with css, no images needed. Support for IE 7+, Firefox 3+, Chrome 3+, Safari 3.1+ and Opera 11+. Degrades gracefully with javascript disabled.
Mark Ursino

HouseCall - Trend Micro USA - 0 views

  •  
    "HouseCall can quickly identify and fix a wide range of threats including viruses, worms, Trojans, and spyware. It is now faster, more powerful and browser independent!"
Mark Ursino

JS-Kit ECHO - 0 views

  •  
    Echo is the next generation commenting system. It's the way to share your content, and watch the live reaction. You can quickly embed Echo on WordPress, Blogger, or any website and turn your static pages into a real-time stream of diggs, tweets, comments and more.
Douglas Couto

IIS7 & Trend Micro Officescan 8 : The Official Microsoft IIS Site - 0 views

  •  
    "Hey. Had this problem myself. Just turns out had to install the CGI feature. You can do this by going to the server manager, expanding Rolls, right clicking on IIS and clicking the add feature option. CGI should be listed under 'Application Development'. You may also want to go to the root IIS7 (server) node and click ISAPI Permissions and make sure that any cgi files have execute permissions. -Keith "
Mark Ursino

diagonalFade : A jQuery plugin - 1 views

  •  
    a jQuery plugin allowing you to easily specify direction, fade-in, fade-out, and a host of other options to a grouping of elements. All you have to do is import it, specify the container to which the group of items resides, and poof, you're off and away.
Mark Ursino

Standard Type Casting and "as" Operator Conversions - 0 views

  •  
    Converting objects from one type to another is a common practice in software development. When dealing with this, it is important to understand the difference between standard casting and using the "as" operator to convert. In this article, Brendan explains this difference and when to use each type of conversion. His code snippets demonstrate the information he is explaining in the article.
Mark Ursino

GTmetrix | Website Speed and Performance Optimization - 1 views

  •  
    GTmetrix uses Google Page Speed and Yahoo! YSlow to grade your site's performance and provides actionable recommendations to fix these issues.
Nick Laidlaw

Custom Logging in Sitecore - 0 views

  •  
    How to create a debugger console using Sitecore and Log4net. Can be used to trap 404s and to log them.
Mark Ursino

MockFlow - Online Wireframe Tool for Software and Websites - 0 views

shared by Mark Ursino on 14 Oct 09 - Cached
  •  
    Create and collaborate interactive UI mockups for your software and websites.
‹ Previous 21 - 40 of 519 Next › Last »
Showing 20 items per page