Vasiliy Selivanov

  • RSS

Microsoft’s plans for post-Windows OS revealed

Posted on Wednesday, July 30th, 2008

July 29, 2008 — Microsoft is incubating a componentized non-Windows operating system known as Midori, which is being architected from the ground up to tackle challenges that Redmond has determined cannot be met by simply evolving its existing technology. SD Times has viewed internal Microsoft documents that outline Midori’s proposed design, which is Internet-centric and predicated on [...]

continue reading

Microsoft WorldWide Telescope

Posted on Tuesday, June 3rd, 2008

The WorldWide Telescope (WWT) is a Web 2.0 visualization software environment that enables your computer to function as a virtual telescope—bringing together imagery from the best ground and space-based telescopes in the world for a seamless exploration of the universe.   WorldWide Telescope minimum system requirements For PC:   Microsoft® XP SP2 (minimum), Windows® Vista® [...]

continue reading

Adobe Photoshop Lightroom 2.0 Beta

Posted on Wednesday, April 2nd, 2008

Today released Adobe Photoshop Lightroom 2.0 Beta. So whats new: Localized corrections — Enhance specific areas of an image for unsurpassed nondestructive flexibility and control reminiscent of the traditional darkroom dodge and burn experience. Improved organizational tools — Find the images you need quickly and easily. Multiple monitor support — Add an additional monitor to [...]

continue reading

Archive for the ‘jQuery’ Category

Facebook friend autocomplete selector with JQueryUI

Friday, March 23rd, 2012

Let’s create Facebook Friend selector using JQueryUI. So we will have something like this

FB selector

(more…)

symfony ahDoctrineEasyEmbeddedRelations plugin, IE and Compatibility View Mode

Friday, March 18th, 2011

I have found interesting bug with symfony ahDoctrineEasyEmbeddedRelations plugin when you use IE Compatibility View Mode. Always save only 2 instance and never more. So lets find why it is happen.

(more…)

Simple JQuery slide show

Friday, March 27th, 2009

For example you have couple of photos with this html

1
2
3
4
5
6
7
8
9
10
<div id="photos">
  <ul>
         <li><img src="/img/1.jpg" /></li>
         <li><img src="/img/2.jpg" /></li>
         <li><img src="/img/3.jpg" /></li>
         <li><img src="/img/4.jpg" /></li>
         <li><img src="/img/5.jpg" /></li>
         <!-- any count you want -->
  </ul>
</div>

(more…)

Multiple File Upload plugin for jQuery and Cancel button

Thursday, November 20th, 2008

QuocKien here ask me to help him with Multiple File Upload plugin and cancel button

This the most easy way I think

it’s this simple js code (cancel button will work for second multi input file)

1
2
3
4
5
6
7
8
9
10
$(document).ready(function(){
        $(‘.multi).MultiFile();
        $(‘.multi2).MultiFile();
       
         $("#cancel_but").click(function() {
            $(".multi2").parent().find(‘span a’).each(function() {
                $(this).click();
            });
        })
});

where is .multi2 – it’s selector of your multi file input
simple html

1
2
3
<input type="file" class="multi" />
<input type="file" class="multi2" />
<input type="button" value="cancel" id="cancel_but" />

 

I hope this help