Wednesday, December 15, 2010

Configuration of Windows Remote Management for PowerShell

1.   winrm quickconfig PS C:\Windows\system32> Winrm quickconfig WinRM already is set up to receive requests on this machine. WinRM is not set up to allow remote access to this machine for management. The following changes must be made: Create a WinRM listener on HTTP://* to accept WS-Man requests to any IP on this machine. Enable the WinRM firewall exception. Make these changes [y/n]? y WinRM has been updated for remote management. Created a WinRM listener on HTTP://* to accept WS-Man requests to any IP on this machine. WinRM...

Enable IIS7 PowerShell snapin in PowerShell session

Installation: http://learn.iis.net/page.aspx/429/installing-the-iis-70-powershell-snap-in Set-ExecutionPolicy -ExecutionPolicy RemoteSigned Import-Module webadministration | Out-Null Get-Website http://www.iisworkstation.com/2009/06/troubleshooting-iis-powershell-module.html P.S. PowerShell is installed by default on Windows Server 2008...

Tuesday, December 14, 2010

Set-ExecutionPolicy in PowerShell

To alllow all user to execute scripts in PowerShell: Set-ExecutionPolicy -ExecutionPolicy Unrestric...

Wednesday, December 8, 2010

"Load needed DLLs for kernel": Windows recovery console example

Lately I read a lot of people are having this error which stops your system from booting. This is a very awful error which is solved by Microsoft with the solution to do a in-place install from Windows XP. This is a lot of work and I have a much safer and fast solution. Boot your system from the Windows XP Cdrom and choose to repair your system which will put you in the "Recovery Console" mode. Now make the following steps: CHKDSK (which will fix the error(s) on your disk) BOOTCFG /rebuild (you will rebuild your boot configuration now,  just...

Wednesday, November 3, 2010

Extensions

http://www.extensionmethod....

Silverlight effects

Images with Rounded Corners and Drop Shadows in Silverlighthttp://www.silverlight.net/learn/quickstarts/effects  Tiled Image Brush in Silverli...

Saturday, September 4, 2010

Twitter auth changes

There are over 250,000 applications built using the Twitter API. To use most applications, you first authorize the application to access your Twitter account, after which you can use it to read and post Tweets, discover new users and more. Applications come in many varieties, including desktop applications like TweetDeck, Seesmic, or EchoFon, websites such as TweetMeme, fflick, or Topsy, or mobile applications such as Twitter for iPhone, Twitter for Blackberry, or Foursquare.Update 1: New authorization rules for applicationsStarting August...

Html 5 brower support

http://html5test.com http://fmbip.com http://www.deepbluesky.com/blog/-/browser-support-for-css3-and-html5...

Thursday, July 15, 2010

HTML5 Mobile App Framework

www.sencha....

Sunday, July 4, 2010

Convert .dmg files to .iso files

hdiutil convert /path/to/filename.dmg -format UDTO -o /path/to/savefile....

Wednesday, June 30, 2010

Business Logic Toolkit for .NET

http://bltoolkit....

NServiceBus

http://www.techdays.ru/videos/2295.html http://www.nservicebus.com/Documentation.a...

Tuesday, June 29, 2010

Анонимная рекурсия на C# и лямбды

Лямбды есть анонимные функции, а рекурсия требует определения имен. Определение функции, которая вычисляет число Фибоначчи: Func fib = n => n > 1 ? fib(n - 1) + fib(n - 2) : n; Но работать это не будет, т.к. компилятор выдаст ошибку:Use of unassigned local variable 'fib' Проблема в том, что правая сторона выражения оценивается до того, как fib будет определена. Быстрый обход этой проблемы - присвоить fib null, то есть явно определить fib перед тем, как она будет использована. Func fib = null; fib = n => n > 1 ? fib(n - 1) + fib(n...

Friday, June 11, 2010

Ошибки файловых операций - I/O Error

Исходный список можно посмотреть здесь: http://support.microsoft.com/kb/320081 Интерес представляют 4 и 6, поскольку в последнее время часто приходилось сталкиваться с этим. Такой файл средствами .NET невозможно ни удалить, ни переименовать. Вкратце одно из возможных решений: 1. Преобразовать файл к короткому имени. 2. Выполнить копирование файла в новое имя при помощи CopyFileEx     [Flags]     public enum CopyFileFlags : uint     {       COPY_FILE_FAIL_IF_EXISTS...

Monday, June 7, 2010

CallContext Data Slots, CallContext

CallContext - удобный способ обмена информации между клиентом и сервером. CallContext записывает данные в Thread Local Storage. Чтобы для каждого потока информация была уникальной, необходимо использовать методы SetData и GetData, но передаваться через границы AppDomain они будут только в том случае, если унаследованы от интерфейса ILogicalThreadAffinative. Объекты, сохраненные через метод LogicalSetData, будут передаваться через границы домена даже в том случае, если они не унаследованы от ILogicalThreadAffinative. Logical[Get/Set]Data...

Friday, June 4, 2010

Y Combinator

Для начала, список ссылок, по которым можно ознакомиться с материалом: http://mvanier.livejournal.com/2700.html http://www.paulbatum.com/2009/01/refactoring-towards-y-combinator-part-1.html http://blogs.msdn.com/madst/archive/2007/05/11/recursive-lambda-expressions.aspx http://www.dreamsongs.com/Files/WhyOfY....

Wednesday, June 2, 2010

Flash Cookies and Supercookies

Дополнительная ссылка: Сниффинг истории посещений через чтение ‘visited’ стиля ссылок и через Cache timing Several browsers give you the option to select a privacy option that supposedly lets you surf the Web without leaving fingerprints. Don't believe it. That option generally stops the browser from storing the URLs of pages you've visited in a pull down under the browser bar or recently visited tab. But it does nothing to conceal the pages and images you've viewed from advertisers who want to serve tailored ads to you, or even worse,...

Data Structures And Algorithms Alfred V. Aho

...

Pure functional data structures

http://www.cs.cmu.edu/~rwh/theses/okasaki.pdf http://www.cs.cmu.edu/~rwh/ http://www.haskell.org/haskellwiki/Zipper http://community.livejournal.com/ru_lambda/119596.html http://www.eecs.usma.edu/webs/people/okasaki/pubs.html http://books.google.com/books/about/Purely_functional_data_structures.html?id=SxPzSTcTa...

Tuesday, June 1, 2010

DryadLINQ

DryadLINQ is a simple, powerful, and elegant programming environment for writing large-scale data parallel applications running on large PC clusters....

Differential Privacy

Источник: http://research.microsoft.com/apps/pubs/default.aspx?id=64346 Далее: Database Privacy и P...

Tuesday, May 18, 2010

Threaded Search Tree

Реализация и учебники можно найти по следующим ссылкам: http://www.stanford.edu/~blp/avl/libavl.html/Threaded-Binary-Search-Trees.html http://www.eternallyconfuzzled.com/tuts/datastructures/jsw_tut_bst1.aspx#thread http://www.cs.rutgers.edu/~kaplan/503/thread.html http://en.wikipedia.org/wiki/Tree_traversal http://en.wikipedia.org/wiki/Threaded_binary_tree http://datastructures.itgo.com/appendix....

Friday, May 7, 2010

Grand Central Dispatch, Apple

Только что обнаружил: технология Apple предназначенная для создания приложений, использующих преимущества многоядерных процесссоров и других SMP-систем[1]. Эта технология является реализацией параллелизма задач и основана на шаблоне проектирования "Пул потоков". GCD впервые была представлена в Mac OS X 10.6. Исходные коды библиотеки libdispatch, реализующей сервисы GCD, были выпущены под лицензией Apache 10 сентября 2009 г.[1]. Впоследствии библиотека была портирована[2] на другуюоперационную...

Thursday, May 6, 2010

Сервисы сокращений

http://habrahabr.ru/blogs/twitter/90090/ http://bit....

Monday, May 3, 2010

English

RSS пакет для изучающих английский язык — Learning English http://feeds.feedburner.jp/EslCulips-iTunes http://www.eslpod.com/website/index_new.html http://effortlessenglish.com http://npr.podcast.com http://www.businessenglishpod.com http://www.forvo.com http://www.howjsay.com http://englishpod.com http://www.bbc.co.uk/russian/learning_english http://www.bbc.co.uk/worldservice/learningenglish/language/wordsinthenews/index.shtml http://news.bbc.co.uk/hi/russian/learn_english/newsid_6989000/6989071.stm http://www.bbc.co.uk/russian/learning_english/2009/11/091113_elt_teacher_video_archive.shtml http://www.alleng.ru/mybook/6top2500/TOP2500.htm http://www.livemocha.com http://www.urbandictionary.com http://allengl.narod.ru/top/phvTOP170.htm http://www.englishcentral.com/en/videos http://www.uz-translations.su/?category=english http://www.greylib.su/?category=english http://www.ska4ka.com/en-audio http://www.livemocha.com http://www.ecenglish.com http://englishtips.org http://multitran.ru http://www.englishcentral.com/en/videos http://lingualeo.ru http://rutracker.org/forum/viewtopic.php?t=2294503 http://www.ted.com http://librivox.org http://www.kwiz.me http://kimir.org http://englishtips.org http://www.italki.com http://www.lingq.com/ru/ http://habrahabr.ru/blogs/study/85405 Дополнительно:  http://www.alleng.ru/english/fren.htm и...

Sunday, May 2, 2010

Ruby rutorials

Ruby on Rails Tutorial book http://ruby.railstutorial.org/ruby-on-rails-tutorial-book Show Me Do http://showmedo.com/videotutorials/ruby Mac Ruby: http://www.macruby.org http://www.macruby.org/trac/wiki Other resources: http://rubysource.com/category/getting-started/ http://rubyonrails.org http://www.zepho.com http://www.zepho.com/download http://www.rubyonrails.ru http://peepcode.com http://www.rubyplus.org http://podcast.sdruby.com http://railscasts.com http://railslab.newrelic.com/scaling-rails http://www.railsforum.ru http://www.tutorialspoint.com/index.htm http://www.rubyplus.org http://djbook.ru/ch03s03.html http://coenraets.com/tutorials/flexonrails/flexonrails.html http://live.julik.nl/2005/11/ror-for-starters http://blog.igorekk.com http://www.djangoproject.com http://www.railsecommerce.com http://ru.wikipedia.org/wiki/Ruby_on_Rails Beginning...

Google labs

http://code.google.com/intl/ru/l...

Social Graph

http://code.google.com/intl/ru/apis/socialgraph/d...

Наибольшая общая мера последние 2500 лет

...

http://hackday.ru

http://hackday.ru HackDay -- это два дня работы, в течении которых участники делают решительный шаг от обсуждения идей к их практической реализации.В этот раз HackDay будет посвящен разработкам в области медиа и контента. Мы приглашаем три категории участников:(1) профессионалов медиа - журналистов, редакторов, сотрудников IT отделов, операторов, ведущих, актеров, режиссеров и блоггеров;(2) программистов, дизайнеров и продюсеров интернет-проектов;(3) студентов технических и медийных направлений.Будет идти работа над проектами в трех направлениях: ...

Wednesday, April 21, 2010

Using the QTKit Framework

From here: http://developer.apple.com/quicktime/qtkit.html The heart of QuickTime is its comprehensive underlying framework which is powerful, extensible, and flexible. This framework provides developers with the ability to display, import, export, modify, and capture more than 200 different media types. Until recently, however, using this power from Cocoa applications hasn't always been straightforward. Before the release of Mac OS X Tiger,...

Powered by Blogger.