This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<UserSettings> | |
<ApplicationIdentity version="10.0"/> | |
<ToolsOptions> | |
<ToolsOptionsCategory name="Environment" RegisteredName="Environment"/> | |
</ToolsOptions> | |
<Category name="Database Tools" RegisteredName="Database Tools"/> | |
<Category name="Environment_Group" RegisteredName="Environment_Group"> | |
<Category name="Environment_FontsAndColors" Category="{1EDA5DD4-927A-43a7-810E-7FD247D0DA1D}" Package="{DA9FB551-C724-11d0-AE1F-00A0C90FFFC3}" RegisteredName="Environment_FontsAndColors" PackageName="Visual Studio Environment Package"> | |
<PropertyValue name="Version">2</PropertyValue> | |
<FontsAndColors Version="2.0"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" lang="cs"> | |
<head> | |
<title></title> | |
<script src="scripts/jquery-1.4.2.min.js" type="text/javascript"></script> | |
<script src="scripts/rx.js" type="text/javascript"></script> | |
<script type="text/javascript"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Generická šablona s Implementací IPricipal | |
public abstract class WebUser<TUser> : IPrincipal { | |
public WebUser(TUser user, FormsAuthenticationTicket ticket) { | |
if (user == null) { | |
throw new ArgumentNullException("user", "user is null."); | |
} | |
User = user; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Fact] | |
void It_should_lowercase_letters() { | |
Assert.True(result.Where(Char.IsLetter).All(Char.IsLower)); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dobrý den, | |
čtu pravidelně články skrze Váš agregátor, dokonce i "tvíty" jsou často užitečné a většinou oborové, | |
ale to co předvádí blázen, diskofil a metrosexuál Roubíček mě dohnalo k naprosté nenávisti k tomuto člověku. | |
Proto se přimlouvám o vyřazení jeho dementních příspěvků, které jsou typu | |
"Ale fuj článek s neomezenou délkou řádku, musim zůžit wokno :(", | |
"Po několika dnech poprvé bez kocoviny. Dobré ráno :o)" a dnešní vrcholné dílo | |
"aaaaaaaaaaaaahaha aaaaaaaaaaaaahaha aaaaaaaaaaaaahaha aaaaaaaaaaaaahaha" + link nikam. | |
Myslím, že toto stvoření intelektu medvídka Pů prudí mnohem víc lidí a je tu pravděpodné riziko, | |
že někoho dalším budoucím "tvítem" dožene ke své fyzické eliminaci. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="cs" | |
xmlns:og="http://opengraphprotocol.org/schema/" | |
xmlns:fb="http://developers.facebook.com/schema/"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" | |
xmlns:og="http://opengraphprotocol.org/schema/" | |
xmlns:fb="http://developers.facebook.com/schema/"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html version="HTML+RDFa 1.1" lang="cs" | |
xmlns:og="http://opengraphprotocol.org/schema/" | |
xmlns:fb="http://developers.facebook.com/schema/"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Properties { | |
$Build_dir = Split-Path $psake.build_script_file | |
$Packages_dir = Join-Path $build_dir 'Packages' | |
$MsDeploy_dir = Join-Path $env:ProgramFiles 'IIS\Microsoft Web Deploy' | |
$SiteName = 'www.example.com' | |
$Package = "$SiteName.zip" | |
$Dest = 'hosting.com' | |
$UserName = 'IIS User Name' | |
$Pwd = 'Secret Password' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ControllersInstaller : IWindsorInstaller { | |
public void Install(IWindsorContainer container, IConfigurationStore store) { | |
container.Register( | |
Classes. | |
FromThisAssembly(). | |
BasedOn<IController>(). | |
LifestyleTransient(), | |
Component. |
OlderNewer