User Sekhat - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T01:24:50Zhttp://stackoverflow.com/feeds/user/1610http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1184297/bdd-and-mspec-am-i-approaching-this-right1BDD and MSpec, am I approaching this right?Sekhat2009-07-26T11:12:23Z2009-12-10T21:34:18Z
<p>Hi guys,</p>
<p>Just wondering if any MSpec and BDDers out there could give me there thoughts on my first attempt at writing a MSpec spec. Now I've left the specs uncoded, but my context has code in it, I just want to know if I'm heading along the right lines, or if there are any improvements to be made with what I've done.</p>
<p>As this can be subjective, I've marked it community wiki.</p>
<p>Right, first, here is my story and first scenario:</p>
<pre><code>Story: "Blog admin logs in to the system"
As a blog writer
I want to be able to log in to my blog
So that I can write posts and administrate my blog
Scenario: "Logs in from the login page"
Given the user enters in correct credentials for a user in the system
When the user clicks the "Login" button
Then log the user in and redirect to the admin panel with a message
stating that he logged in correctly
</code></pre>
<p>and heres my MSpec code:</p>
<pre><code>using System;
using Machine.Specifications;
using Machine.Specifications.Model;
using Moq;
using MyBlog.Controllers;
using System.Web.Mvc;
using MoqIt = Moq.It;
using ThenIt = Machine.Specifications.It;
[Subject("User tries logging in")]
public class When_user_enters_valid_credentials : With_user_existing_in_membership
{
protected static ActionResult result;
Because of = () =>
{
result = loginController.Login(validUsername, validPassword);
};
ThenIt should_log_the_user_in;
ThenIt should_redirect_the_user_to_the_admin_panel;
ThenIt should_show_message_confirming_successful_login;
}
public abstract class With_user_existing_in_membership
{
protected static Mock<ISiteMembership> membershipMock;
protected static string validUsername;
protected static string validPassword;
protected static LoginController loginController;
Establish context =()=>
{
membershipMock = new Mock<ISiteMembership>();
validUsername = "ValidUsername";
validPassword = "ValidPassword";
//make sure it's treated as valid usernames and password
membershipMock.Setup<bool>(m => m.Validate(MoqIt.Is<string>(s => s == validUsername), MoqIt.Is<string>(s => s == validPassword)))
.Returns(true);
loginController = new LoginController(membershipMock.Object);
};
}
</code></pre>
<p>Now I've had to do the aliasing of the It class and delegate because of Moq and MSpec conflicting, but I hope it still reads well.</p>
<p>Be happy to hear you thoughts.</p>
http://stackoverflow.com/questions/40211/how-to-compare-flags-in-c/1769814#17698141Answer by Sekhat for How to Compare Flags in C#?Sekhat2009-11-20T11:12:51Z2009-11-20T11:12:51Z<p>:) For those who have trouble visualizing what is happening with the accepted solution
(which is this)</p>
<pre><code>if ((testItem & FlagTest.Flag1) == FlagTest.Flag1)
{
// do stuff
}
</code></pre>
<p>We have (as per the question) test item defined as so</p>
<pre><code>testItem
= flag1 | flag2
= 001 | 010
= 011
</code></pre>
<p>Then in the if statement the left hand side of the equals is as so:</p>
<pre><code>(testItem & flag1)
= (011 & 001)
= 001
</code></pre>
<p>And the full if statement (that evaluates to true if flag1 is set in testItem) as so</p>
<pre><code>(testItem & flag1) == flag1
= (001) == 001
= true
</code></pre>
<p>Hope that makes sense to people :)</p>
http://stackoverflow.com/questions/1748542/how-can-i-bind-a-command-of-a-control-in-template-to-my-viewmodel0How can I bind a command of a control in template to my ViewModelSekhat2009-11-17T12:29:05Z2009-11-17T15:41:08Z
<p>Hi guys,</p>
<p>Right, what I have is:</p>
<pre><code><Window x:Class="WpfGettingThingsDone.View.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
AllowsTransparency="True"
Background="Transparent"
WindowStyle="None"
Title="{Binding Title}" Height="300" Width="300">
<Window.Resources>
<ResourceDictionary>
<Style x:Key="WindowBorderBackground" TargetType="{x:Type Border}">
<Setter Property="Background">
<Setter.Value>
<LinearGradientBrush StartPoint="0,1" EndPoint="1,0">
<GradientStop Color="#FF222222" Offset="0" />
<GradientStop Color="#FF222222" Offset="0.2" />
<GradientStop Color="#FFAAAAAA" Offset="0.6" />
<GradientStop Color="#FF222222" Offset="0.7" />
<GradientStop Color="#FFAAAAAA" Offset="0.9" />
<GradientStop Color="#FF222222" Offset="1" />
</LinearGradientBrush>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="WindowHeaderedContent" TargetType="{x:Type HeaderedContentControl}">
<Setter Property="HeaderTemplate">
<Setter.Value>
<DataTemplate>
<Border
Background="Black"
BorderBrush="Black"
BorderThickness="1"
CornerRadius="5,5,0,0"
Padding="4"
SnapsToDevicePixels="True"
>
<DockPanel>
<Button DockPanel.Dock="Right" Command="{Binding Path=CloseCommand}">X</Button>
<TextBlock
FontSize="14"
FontWeight="Bold"
Foreground="White"
HorizontalAlignment="Center"
Text="{TemplateBinding Content}" />
</DockPanel>
</Border>
</DataTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
</Window.Resources>
<Border CornerRadius="5" Style="{StaticResource WindowBorderBackground}">
<HeaderedContentControl Header="Current Contexts"
Style="{StaticResource WindowHeaderedContent}"
>
</HeaderedContentControl>
</Border>
</Window>
</code></pre>
<p>Basically draws a window with a pretty gradient background, using a HeaderedContentControl to create the title bar, which uses a HeaderTemplate to put the x button there.</p>
<p>Like so:</p>
<p><img src="http://img24.imageshack.us/img24/7936/screenshotrl.png" alt="alt text"></p>
<p>However, as you can see, I've tried binding the command of the X (close) button to the CloseCommand in my ViewModel. Assuming my ViewModel is correct and that my lack of understanding of the WPF databinding stuff is the problem, what am I doing wrong? Can it not be done the way I'm trying?</p>
<p>(Note: For the purposes of this question I merged all resources in use by the window into the windows resource dictionary.)</p>
<p><strong>Edit:</strong> Since Sam suggested my DataContext for my window isn't set, I'll clarify that it is set, but done in the code behind for App.Xaml when it creates the MainWindow.</p>
<pre><code>/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
MainWindow mainWindow = new MainWindow();
var viewModel = new MainWindowViewModel();
viewModel.RequestClose += (s, ev) => mainWindow.Close();
mainWindow.DataContext = viewModel;
mainWindow.Show();
}
}
</code></pre>
http://stackoverflow.com/questions/1748601/when-to-add-classes-when-to-add-selectors/1748617#17486170Answer by Sekhat for When to add classes, when to add selectors?Sekhat2009-11-17T12:43:17Z2009-11-17T12:43:17Z<p>I'd generally use class because that has wider support than attribute selectors amoung browsers. Until the vast majority of the population have a browser that supports the CSS attribute selectors I would continue to uses classes in such a case.</p>
http://stackoverflow.com/questions/1748586/i-dont-get-how-a-program-can-update-itself-how-can-i-make-my-software-update/1748604#17486040Answer by Sekhat for I don't "get" how a program can update itself. How can I make my software update?Sekhat2009-11-17T12:39:03Z2009-11-17T12:39:03Z<p>For windows (generally due to windows locking the .exe file while it's being executed)</p>
<ul>
<li>Software determines it needs updating</li>
<li>Software runs packaged update executable (at this point Software exits)</li>
<li>Update downloads required files into some temp folder</li>
<li>Update applies patches</li>
<li>Update restarts Software</li>
</ul>
http://stackoverflow.com/questions/1674384/access-denied-when-loading-dependancy-dll-net0Access denied when loading dependancy .dll .NETSekhat2009-11-04T15:06:17Z2009-11-12T12:55:54Z
<p>Okay,</p>
<p>We have a .NET WinForms application that has several .NET dll's it depends on, running on an XP machine, that is connected to a network in a large domain.</p>
<p>A little story, that defines the problem.</p>
<p>We deployed this application on a customers machine while logged in as an admin and all worked fine.</p>
<p>We then logged into a lower privalaged account, and low and behold the application failed to start, <strong>but that was expected</strong>. </p>
<p>so we got their IT department to make the folder Read/Write access <em>(as we use folders in there for holding temp files)</em> and they allowed the .exe to be executable by that user.</p>
<p>Now starting the executable, the application runs (<em>yay</em>) but then we got it to perform an action that required code in one of it dependant (managed) dll's...</p>
<p>An Exeception is thrown, stating "The assembly "xxxx.dll" failed to load (access is denied)" I am assured by their IT department that the dll's have the same file permissions as the main executable (and by quick look at what the lower privilege user can see of security settings, it did appear that way) and they were not set as "blocked" as XP sometimes does.</p>
<p>So the question is more of a fish for possible ideas that may be causing this...</p>
<p><strong>EDIT:</strong> Turns out it was file permissions that were the problem and that the IT department in question hadn't followed through checking that permissions had been applied to all child objects. As I can't accept all 4 of your answers for such good ideas I have given you all an up vote.</p>
http://stackoverflow.com/questions/1180302/xna-spritebatch-and-basiceffect-not-compatible/1651137#16511370Answer by Sekhat for XNA SpriteBatch and BasicEffect not compatible?Sekhat2009-10-30T17:13:30Z2009-10-30T17:13:30Z<p>As far as I'm aware, sprite batch uses it's own effect internally when rendering it's quads to the screen, as you can only render with one effect at the time, my answer would be no, they are not compatible.</p>
http://stackoverflow.com/questions/1650800/difference-between-using-and-scoping/1651056#16510563Answer by Sekhat for Difference between 'using' and scoping?Sekhat2009-10-30T16:55:23Z2009-10-30T17:05:04Z<p>Just to literally show the difference...</p>
<pre><code>using (FileStream fileStream = new FileStream("log.txt", FileMode.OpenCreate))
{
//stuff with file stream
}
</code></pre>
<p>is the same as...</p>
<pre><code>{
FileStream fileStream = new FileStream("log.txt", FileMode.OpenCreate);
try
{
//stuff with filestream
}
finally
{
if (fileStream != null)
((IDisposable)fileStream).Dispose();
}
}
</code></pre>
<p>where as</p>
<pre><code>{
FileStream fileStream = new FileStream("log.txt", FileMode.OpenCreate);
fileStream.Dispose();
}
</code></pre>
<p>is as it is.</p>
http://stackoverflow.com/questions/1575700/nhibernate-is-turning-my-collection-readonly-how-can-i-stop-it0NHibernate is turning my collection readonly. How can I stop it?Sekhat2009-10-15T23:41:01Z2009-10-19T20:07:31Z
<p>Hi guys, I'm having a bit of an issue with Nhibernate / Fluent NHibernate</p>
<p>I have a class that has a collection and a backing field, and methods for manipulating the collection like so:</p>
<p><strong>Edit: I've added the virtual modifier to <code>Children</code> since I forgot to stick it in the example code below (it was 2 am)</strong></p>
<pre><code>public class MyClass
{
private IList<SomeChildObject> children;
public virtual IList<SomeChildObject> Children { get { return new ReadOnlyCollection<SomeChildObject>(children); } }
public void AddToChildren(SomeChildObject obj)
{
children.Add(obj);
}
}
</code></pre>
<p>And I have my Fluent NHibernate mapping like this:</p>
<pre><code>public class MyClassMapping : ClassMap<MyClass>
{
public MyClassMapping()
{
HasMany(x => x.Children)
.Inverse()
.LazyLoad()
.Cascade.AllDeleteOrphan()
.KeyColumnNames.Add("MyClassID")
.Access.AsReadOnlyPropertyThroughCamelCaseField();
}
}
</code></pre>
<p>Now all is good when I pull back an instance of MyClass from the database.</p>
<pre><code>MyClass myClass = repo.GetById(12);
myClass.AddToChildren(new SomeChildObject());
</code></pre>
<p>This works fine.</p>
<p><strong>And then I make some changes and persist the changes to the database.</strong></p>
<p>Once the changes have been saved, I then try and add another child object</p>
<pre><code>myClass.AddToChildren(new SomeChildObject("Another One!!!"));
</code></pre>
<p>And it falls over with "InvalidOperationException: The Collection is ReadOnly"</p>
<p>Seems the NHibernate is doing something somewhere in it's proxy. Does anyone know how to resolve this issue?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/375316/xna-keyboard-text-input0XNA - Keyboard text inputSekhat2008-12-17T17:24:53Z2009-10-17T00:43:48Z
<p>Okay, so basically I want to be able to retrieve keyboard text. Like entering text into a text field or something. I'm only writing my game for windows.
I've disregarded using Guide.BeginShowKeyboardInput because it breaks the feel of a self contained game, and the fact that the Guide always shows XBOX buttons doesn't seem right to me either. Yes it's the easiest way, but I don't like it.</p>
<p>Next I tried using System.Windows.Forms.NativeWindow. I created a class that inherited from it, and passed it the Games window handle, implemented the WndProc function to catch WM_CHAR (or WM_KEYDOWN) though the WndProc got called for other messages, WM_CHAR and WM_KEYDOWN never did. So I had to abandon that idea, and besides, I was also referencing the whole of Windows forms, which meant unnecessary memory footprint bloat.</p>
<p>So my last idea was to create a Thread level, low level keyboard hook. This has been the most successful so far. I get WM_KEYDOWN message, (not tried WM_CHAR yet) translate the virtual keycode with Win32 funcation MapVirtualKey to a char. And I get my text! (I'm just printing with Debug.Write at the moment)</p>
<p>A couple problems though. It's as if I have caps lock on, and an unresponsive shift key. (Of course it's not however, it's just that there is only one Virtual Key Code per key, so translating it only has one output) and it adds overhead as it attaches itself to the Windows Hook List and isn't as fast as I'd like it to be, but the slowness could be more due to Debug.Write.</p>
<p>Has anyone else approached this and solved it, without having to resort to an on screen keyboard? or does anyone have further ideas for me to try?</p>
<p>thanks in advance.</p>
<p><strong>note:</strong> This is cross posted from the XNA Creators Forums, so if I get an answer there I'll post it here and Vice-Versa</p>
<p>Question asked by Jimmy</p>
<blockquote>
<p>Maybe I'm not understanding the question, but why can't you use the XNA Keyboard and KeyboardState classes?</p>
</blockquote>
<p>My comment:</p>
<blockquote>
<p>It's because though you can read keystates, you can't get access to typed text as and how it is typed by the user.</p>
</blockquote>
<p>So let me further clarify. I want to implement being able to read text input from the user as if they are typing into textbox is windows. The keyboard and KeyboardState class get states of all keys, but I'd have to map each key and combination to it's character representation. This falls over when the user doesn't use the same keyboard language as I do especially with symbols (my double quotes is shift + 2, while american keyboards have theirs somewhere near the return key).</p>
http://stackoverflow.com/questions/1476957/prevent-stack-overflow-for-to-many-unclosed-silverlight-socket-connections/1550638#15506380Answer by Sekhat for Prevent stack overflow for to many unclosed Silverlight Socket connectionsSekhat2009-10-11T12:56:24Z2009-10-11T12:56:24Z<p>On the server, you should really be polling your socket connections to see if they are still alive. Sending out "Are you still alive" messages. </p>
<p>Usually once a socket connection is lost, sending data down the socket will cause it to fall over with an exception. </p>
<p>Unfortunately computers often can't detect if a socket has lost it's link until you try and do something with it. The only time it knows is when the client (or server) sends a "close connection" command (which is often done in .NET via the Socket.Close() method).</p>
<p>Sockets are a pain like that.</p>
http://stackoverflow.com/questions/1458791/googles-robots-txt-is-scraping-your-positions-ignoring-it/1458832#14588321Answer by Sekhat for Google's robots.txt: Is scraping your positions = ignoring it?Sekhat2009-09-22T08:41:18Z2009-09-22T08:41:18Z<p>robots.txt is just a file that says do and don't look at these pages. Good robots read and abide by it, bad robots ignore it. A bit like "Don't walk on the grass" signs.</p>
<p>However, at the end of the day, the author can't stop the robot from doing what the hell it likes, except block it's IP. Normally this wont happen unless the robot is the type that sits and uses enough of the websites bandwidth to annoy the owners of the site enough to block it.</p>
<p>If it had a similar request pattern to a single human user, then I doubt most site owners (including google) would care which page it reads.</p>
<p>As your tag says "legal", I can tell you that a robot ignoring a robot.txt file is -not- illegal, but might be against the ToS of the website if theres a section on robots, which may result (as said above) in an ban on the service. But that is about as far as it goes.</p>
<p>Of course this is my opinion on the situation, don't take it as fact, do some reading around see if there are actual factual answers somewhere.</p>
http://stackoverflow.com/questions/1284509/fluent-nhibernate-stuggling-with-one-to-many-relationships0Fluent Nhibernate, stuggling with one-to-many relationshipsSekhat2009-08-16T15:13:36Z2009-08-16T15:53:08Z
<p>Okay so I have two tables:</p>
<pre><code>Companies
| id int
| name varchar(50)
</code></pre>
<p>and</p>
<pre><code>Contacts
| id int
| name varchar(50)
| companyID int
</code></pre>
<p>In my code I have the following classes</p>
<pre><code>public class Company
{
public int Identity { get; set; }
public string Name { get; set; }
public IList<Contact> Contacts { get; set; }
}
</code></pre>
<p>and</p>
<pre><code>public class Contact
{
public int Identity { get; set; }
public string Name { get; set; }
public Company Company { get; set; }
}
</code></pre>
<p>And my fluent nhibernate mappings as so:</p>
<pre><code>public class CompanyMapping : ClassMap<Company>
{
public CompanyMapping()
{
WithTable("Companies");
Id(x => x.Identity, "Id");
Map(x => x.Name);
HasMany<Contact>(x => x.Contacts)
.Inverse()
.LazyLoad()
.Cascade.All()
.AsList();
}
}
</code></pre>
<p>and</p>
<pre><code>public class ContactMapping : ClassMap<Contact>
{
public ContactMapping()
{
WithTable("Contacts");
Id(x => x.Identity, "Id");
References<Company>(x => x.Company, "CompanyID");
Map(x => x.Name);
}
}
</code></pre>
<p>Yet when I try to access the Company.Contacts property I get the following error</p>
<pre><code>Invalid column name 'Company_id'.
Invalid column name 'Company_id'.
</code></pre>
<p>(yes twice in one message)</p>
<p>obviously the key column on the contacts table isn't called Company_id it's called CompanyID</p>
<p>So what am I doing wrong? I can't seem to set what the Key Column as WithKeyColumn doesn't seem to exist (it's what I've found in other solutions people have done, but they might be using a different version of fluent nhibernate to me)</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1284509/fluent-nhibernate-stuggling-with-one-to-many-relationships/1284606#12846060Answer by Sekhat for Fluent Nhibernate, stuggling with one-to-many relationshipsSekhat2009-08-16T15:53:08Z2009-08-16T15:53:08Z<p><a href="http://stackoverflow.com/questions/657056/fluent-nhibernate-hasmany-withkeycolumnname">http://stackoverflow.com/questions/657056/fluent-nhibernate-hasmany-withkeycolumnname</a></p>
<p>solved it :)</p>
<p>Edit:</p>
<p>Apparently, because I've accepted my own answer on another question today, I have to wait another two days to do so.</p>
<p>That kind sucks but meh.</p>
http://stackoverflow.com/questions/1274026/ninject-asp-net-and-custom-controls1Ninject, ASP.NET and Custom ControlsSekhat2009-08-13T19:17:43Z2009-08-16T15:33:34Z
<p>Hey guys,</p>
<p>I'm currently using ASP.NET (standard, <strong>not</strong> MVC) and I'm using Ninject as my IOC container.</p>
<p>I'm already using it to inject dependencies into my pages, however, I was wondering if there was a way to inject dependencies into my custom controls?</p>
<p>If not, I'll get underway extending Ninject :)</p>
http://stackoverflow.com/questions/1274026/ninject-asp-net-and-custom-controls/1284554#12845542Answer by Sekhat for Ninject, ASP.NET and Custom ControlsSekhat2009-08-16T15:33:34Z2009-08-16T15:33:34Z<p>Okay so I ended up extending Ninject and added two classes to Ninject.Framework.Web dll.</p>
<p>Heres the patch for anyone who's interested in adding it themselves:</p>
<pre><code>Index: src/Framework/Web/Ninject.Framework.Web.csproj
===================================================================
--- src/Framework/Web/Ninject.Framework.Web.csproj (revision 158)
+++ src/Framework/Web/Ninject.Framework.Web.csproj (working copy)
@@ -2,7 +2,7 @@
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>9.0.21022</ProductVersion>
+ <ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{C46075DB-A0FB-466B-BA76-C093227FA9C7}</ProjectGuid>
<OutputType>Library</OutputType>
@@ -42,17 +42,24 @@
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
+ <Reference Include="System.Data" />
+ <Reference Include="System.Drawing" />
<Reference Include="System.Web" />
<Reference Include="System.Web.Services" />
+ <Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\GlobalAssemblyInfo.cs">
<Link>Properties\GlobalAssemblyInfo.cs</Link>
</Compile>
+ <Compile Include="WebControlBase.cs" />
<Compile Include="NinjectHttpApplication.cs" />
<Compile Include="HttpHandlerBase.cs">
</Compile>
<Compile Include="NinjectHttpModule.cs" />
+ <Compile Include="UserControlBase.cs">
+ <SubType>ASPXCodeBehind</SubType>
+ </Compile>
<Compile Include="WebServiceBase.cs">
<SubType>Component</SubType>
</Compile>
Index: src/Framework/Web/UserControlBase.cs
===================================================================
--- src/Framework/Web/UserControlBase.cs (revision 0)
+++ src/Framework/Web/UserControlBase.cs (revision 0)
@@ -0,0 +1,65 @@
+#region License
+//
+// Author: Nate Kohari <nkohari@gmail.com>, Nik Radford <nikradford@googlemail.com>
+// Copyright (c) 2007-2008, Enkari, Ltd.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+#endregion
+#region Using Directives
+using System;
+using Ninject.Core.Logging;
+using Ninject.Core;
+using System.Web.UI;
+#endregion
+
+namespace Ninject.Framework.Web
+{
+ /// <summary>
+ /// A <see cref="UserControl"/> that supports injection
+ /// </summary>
+ public class UserControlBase : UserControl
+ {
+ /*----------------------------------------------------------------------------------------*/
+ private ILogger _logger;
+ /*----------------------------------------------------------------------------------------*/
+ /// <summary>
+ /// Gets or sets the logger associated with the object.
+ /// </summary>
+ [Inject]
+ public ILogger Logger
+ {
+ get { return _logger; }
+ set { _logger = value; }
+ }
+ /*----------------------------------------------------------------------------------------*/
+ /// <summary>
+ /// Raises the <see cref="E:System.Web.UI.Control.Init"></see> event to initialize the page.
+ /// </summary>
+ /// <param name="e">An <see cref="T:System.EventArgs"></see> that contains the event data.</param>
+ protected override void OnInit(EventArgs e)
+ {
+ base.OnInit(e);
+ RequestActivation();
+ }
+ /*----------------------------------------------------------------------------------------*/
+ /// <summary>
+ /// Asks the kernel to inject this instance.
+ /// </summary>
+ protected virtual void RequestActivation()
+ {
+ KernelContainer.Inject(this);
+ }
+ /*----------------------------------------------------------------------------------------*/
+ }
+}
Index: src/Framework/Web/WebControlBase.cs
===================================================================
--- src/Framework/Web/WebControlBase.cs (revision 0)
+++ src/Framework/Web/WebControlBase.cs (revision 0)
@@ -0,0 +1,65 @@
+#region License
+//
+// Author: Nate Kohari <nkohari@gmail.com>, Nik Radford <nikradford@googlemail.com>
+// Copyright (c) 2007-2008, Enkari, Ltd.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+#endregion
+#region Using Directives
+using System;
+using System.Web.UI.WebControls;
+using Ninject.Core.Logging;
+using Ninject.Core;
+#endregion
+
+namespace Ninject.Framework.Web
+{
+ /// <summary>
+ /// A <see cref="WebControl"/> that supports injection
+ /// </summary>
+ public class WebControlBase : WebControl
+ {
+ /*----------------------------------------------------------------------------------------*/
+ ILogger _logger;
+ /*----------------------------------------------------------------------------------------*/
+ /// <summary>
+ /// Gets or sets the logger associated with the object.
+ /// </summary>
+ [Inject]
+ public ILogger Logger
+ {
+ get { return _logger; }
+ set { _logger = value; }
+ }
+ /*----------------------------------------------------------------------------------------*/
+ /// <summary>
+ /// Raises the <see cref="E:System.Web.UI.Control.Init"></see> event to initialize the page.
+ /// </summary>
+ /// <param name="e">An <see cref="T:System.EventArgs"></see> that contains the event data.</param>
+ protected override void OnInit(EventArgs e)
+ {
+ base.OnInit(e);
+ RequestActivation();
+ }
+ /*----------------------------------------------------------------------------------------*/
+ /// <summary>
+ /// Asks the kernel to inject this instance
+ /// </summary>
+ protected virtual void RequestActivation()
+ {
+ KernelContainer.Inject(this);
+ }
+ /*----------------------------------------------------------------------------------------*/
+ }
+}
</code></pre>
http://stackoverflow.com/questions/1226646/paging-in-asp-net/1226682#12266820Answer by Sekhat for Paging in asp.netSekhat2009-08-04T10:10:49Z2009-08-04T10:10:49Z<p>Check this link: <a href="http://blogs.x2line.com/al/archive/2005/11/18/1323.aspx" rel="nofollow">http://blogs.x2line.com/al/archive/2005/11/18/1323.aspx</a></p>
http://stackoverflow.com/questions/1219214/asp-net-authorization-what-does-the-and-mean1ASp.NET Authorization what does the * and ? mean?Sekhat2009-08-02T16:29:06Z2009-08-02T16:33:11Z
<p>In ASP.NET I often see (and have copied the following) but never really understood the difference between the * and ? symbols.</p>
<p>for example</p>
<pre><code><system.web>
<authorization>
<deny users="*" />
<deny users="?" />
</authorization>
</system.web>
</code></pre>
<p>Just wondering if anyone can tell me the difference?</p>
<p>Cheers.</p>
http://stackoverflow.com/questions/1177855/searching-on-a-table-whose-name-is-defined-in-a-variable0Searching on a table whose name is defined in a variableSekhat2009-07-24T13:56:56Z2009-07-24T14:15:18Z
<p>Hi guys,</p>
<p>simple problem, but perhaps no simple solution, at least I can't think of one of the top of my head but then I'm not the best at finding the best solutions.</p>
<p>I have a stored proc, this stored proc does (in a basic form) a select on a table, envision this:</p>
<pre><code>SELECT * FROM myTable
</code></pre>
<p>okay, simple enough, except the table name it needs to search on isn't known, so we ended up with something pretty similiar to this:</p>
<pre><code>-- Just to give some context to the variables I'll be using
DECLARE @metaInfoID AS INT
SET @metaInfoID = 1
DECLARE @metaInfoTable AS VARCHAR(200)
SELECT @metaInfoTable = MetaInfoTableName FROM MetaInfos WHERE MetaInfoID = @MetaInfoID
DECLARE @sql AS VARCHAR(200)
SET @sql = 'SELECT * FROM ' + @metaInfoTable
EXEC @sql
</code></pre>
<p>So, I, recognize this is ultimately bad, and can see immediately where I can perform a sql injection attack. So, the question is, is there a way to achieve the same results without the construction of the dynamic sql? or am I going to have to be super, super careful in my client code?</p>
http://stackoverflow.com/questions/1087264/what-is-the-mvc-way-of-simultaneously-sending-a-file-and-redirecting-to-a-new-pag/1087306#10873064Answer by Sekhat for What is the MVC way of simultaneously sending a file and redirecting to a new page?Sekhat2009-07-06T14:32:27Z2009-07-06T14:37:36Z<p>Just add a header to your response, in the action for your redirected page.</p>
<p>Googling came up with this header:</p>
<pre><code>Refresh: 5; URL=http://host/path
</code></pre>
<p>In your case the URL would be replaced with the URL to your download action</p>
<p>As the page I was reading says, the number 5 is the number of seconds to wait before "refreshing" to the url.</p>
<p>With the file being a download, it shouldn't move you off your nice redirect page :)</p>
http://stackoverflow.com/questions/1046056/having-multiple-outputs-for-a-single-action2Having Multiple Outputs for a single actionSekhat2009-06-25T20:28:11Z2009-06-25T20:49:47Z
<p>Hi guys, just a question that needs a quick answer,</p>
<p>I have a Action, lets say,</p>
<pre><code>BlogPostController.List();
</code></pre>
<p>Which lists all the Posts in a hypothetical blog engine.</p>
<p>I want both a HTML output of this data and an XML output of this data.</p>
<p>Preferably I'd like to be able to address these purely by URL, for example:</p>
<pre><code>http://MyHypotheticalBlogEngine.com/BlogPosts/List
http://MyHypotheticalBlogEngine.com/BlogPosts/List.xml
</code></pre>
<p>And then when I call View() in my Action method it'd pick either the .aspx view or the .xml view depending.</p>
<p>Is this something built in (I can't seem to find info on it as it is, but I can't think of good keywords to really search for it either) or is it a "find another way or roll your own way" jobby?</p>
<p>Cheers</p>
http://stackoverflow.com/questions/951797/rendering-div-in-firefox-issue/952322#9523220Answer by Sekhat for Rendering Div in Firefox issueSekhat2009-06-04T18:34:43Z2009-06-04T18:34:43Z<p><img src="http://img190.imageshack.us/img190/7959/whatshappening.png" alt="The problem and the solution" /></p>
<p>hence resulting code</p>
<pre><code><html>
<head>
</head>
<body>
<div style="float:left; background: red;">
Row 1 column 1
</div>
<div style="background: blue;margin-left: 200px;">
<p>Row 1 column 2</p>
<p>fdsfsfsdfsdfsdfsdfs</p>
</div>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/253982/ruby-and-linux-prefered-setup3Ruby and linux, prefered setup?Sekhat2008-10-31T15:49:29Z2009-05-22T10:03:53Z
<p>Mac's have TextMate as there preferred application for ruby development, but what would be the preferred application for linux? I need something where it's easy to work with multiple files, project structure and setup commands to run my ruby app or if it is one my merb app.Syntax highlighting is also a must.</p>
<p>Now I typically use Vim, but it's not the best for working with multiple files or with a project structure, even with VTreeView plug-in or multiple VIM windows.</p>
<p>So what would you guys suggest?</p>
<p>If you have better plugins to use for VIM feel free to mention them, I'm not ruling out VIM here.</p>
http://stackoverflow.com/questions/656564/do-you-think-auto-interface-implementation-would-be-useful-in-net-c/730199#7301991Answer by Sekhat for Do you think "auto interface implementation" would be useful in .NET / C#Sekhat2009-04-08T14:11:14Z2009-04-08T14:11:14Z<p>I'd at least like Visual Studio to implement my properties from an interface as auto properties if I request it to do so.</p>
<p>Unfortunately this option doesn't and I have to deal with Not Implemented Exception stubs</p>
http://stackoverflow.com/questions/717725/understanding-recursion/717748#7177483Answer by Sekhat for Understanding recursionSekhat2009-04-04T20:22:59Z2009-04-04T20:22:59Z<p>Recursion</p>
<p>Method A, calls Method A calls Method A. Eventually one of these method A's won't call and exit, but it's recursion because something calls itself.</p>
<p>Example of recursion where I want to print out every folder name on the hard drive: (in c#)</p>
<pre><code>public void PrintFolderNames(DirectoryInfo directory)
{
Console.WriteLine(directory.Name);
DirectoryInfo[] children = directory.GetDirectories();
foreach(var child in children)
{
PrintFolderNames(child); // See we call ourself here...
}
}
</code></pre>
http://stackoverflow.com/questions/708938/calculating-volumes-of-hollow-three-dimensional-geometric-objects/708999#7089991Answer by Sekhat for Calculating volumes of hollow three dimensional geometric objectsSekhat2009-04-02T09:34:22Z2009-04-02T11:01:24Z<p>Get the volume of the shapes as if they were not hollow, then, get the volume of the hollow are only (Shape - Thickness)</p>
<p>subtract full volume from hollow volume to get the actual volume of the metal.</p>
<p>Example:</p>
<p>Cube:</p>
<pre><code>Full Volume: Height * Width * Depth
hollow volume: (Height - Thickness) * ( Width - Thickness ) * ( Depth - Thickness)
Volume of the metal used: Full Volume - hollow Volume
</code></pre>
<p>Work out the weight from the volume of the metal used..</p>
<p><hr /></p>
<p>Assuming your prism is triangular and <strike>the triangle is equilateral</strike> that the base line is the base of the triangle and the height is from the baseline to the opposite point (and the height line is at an right angle from the baseline). </p>
<p>Then the full volume would be </p>
<pre><code>fv = (1/2 * baseLine * triangleHeight) * prismHeight
</code></pre>
<p>the hollow volume would be </p>
<pre><code>hv = (1/2 * (baseline - thickness) * (triangleHeight - thickness)) * (prismHeight - thickness)
</code></pre>
<p><hr /></p>
<p>After reading you comment to jpaleck, <strike>it would seem your baseline is the Hypotenuse of the triangle, (the longest line), </strike> the above should still hold true with that.</p>
<p><hr /></p>
http://stackoverflow.com/questions/669547/2d-bone-system42D Bone systemSekhat2009-03-21T16:22:54Z2009-03-27T20:05:11Z
<p>I'm trying to write a 2D Bone system in XNA.</p>
<p>My initial thought was using matrices to keep track of the rotations and positioning through out the bone tree so items could easily displayed.</p>
<p>Cool I thought, and then dismay hit me in the face when I saw matrices could only be applied to single sprite batch.Begin call and not on a per draw call!</p>
<p>I ran some performance tests to check if my dismay was desevered, and it was, calling spritebatch.Begin and End a bunch of time drops my frame rate by a huge (and unacceptable) amount.</p>
<p>So, before drawing a single bones image I'm going to have to construct it's final position and rotation (and maybe scale in the future) manually. In this case would you still use matrices and somehow extract the information at the end just before drawng the bone? If so, any ideas on how to get the final information I need? Or would it be easier to try and construct it all from the raw positions and rotations of it's parent nodes?</p>
<p>Thanks in advance to anyone with ideas.</p>
http://stackoverflow.com/questions/515930/places-you-can-ask-for-quick-code-review2Places you can ask for quick code review?Sekhat2009-02-05T13:44:12Z2009-03-22T07:32:50Z
<p>Learning how to unit test in my own time though is providing me with further insight, I'd often would of liked to have someone there saying that I'm indeed going in the right direction with my tests.</p>
<p>Doing this by myself (and being the only developer at my company actively looking into unit testing) I get no privilege nor do I have contacts that can do this for me. I was wondering if there are any sites out there that contain a community of developers that would be happy to help review how I'm approaching my unit testing, discuss with me what I could be doing better or how my approach could be improved / changed / complete revised from scratch.</p>
<p>Such a site probably doesn't exist, and for a personal play project I'm not really willing to spend money on a code review (at what is currently not very much code at all) unless this really becomes a barrier to my progression.</p>
<p>I just thought that perhaps I'd missed something out there in interdev world :P</p>
http://stackoverflow.com/questions/375316/xna-keyboard-text-input/647273#6472732Answer by Sekhat for XNA - Keyboard text inputSekhat2009-03-15T04:08:23Z2009-03-15T04:08:23Z<p>For adding a windows hook in XNA</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using System.Diagnostics;
using System.Reflection;
/* Author: Nicholas Radford
*
* License: Public Domain.
*
* Usage:
*
* Inherit from this class, and override the WndProc function in your derived class,
* in which you handle your windows messages.
*
* To start recieving the message, create an instance of your derived class, passing in the
* window handle of the window you want to listen for messages for.
*
* in XNA: this would be the Game.Window.Handle property
* in Winforms Form.Handle property
*/
namespace WindowsHookExample
{
public abstract class WindowsHook : IDisposable
{
IntPtr hHook;
IntPtr hWnd;
// Stored here to stop it from getting garbage collected
Win32.WndProcDelegate wndProcDelegate;
public WindowsHook(IntPtr hWnd)
{
this.hWnd = hWnd;
wndProcDelegate = WndProcHook;
CreateHook();
}
~WindowsHook()
{
Dispose(false);
}
private void CreateHook()
{
uint threadId = Win32.GetWindowThreadProcessId(hWnd, IntPtr.Zero);
hHook = Win32.SetWindowsHookEx(Win32.HookType.WH_CALLWNDPROC, wndProcDelegate, IntPtr.Zero, threadId);
}
private int WndProcHook(int nCode, IntPtr wParam, ref Win32.Message lParam)
{
if (nCode >= 0)
{
Win32.TranslateMessage(ref lParam); // You may want to remove this line, if you find your not quite getting the right messages through. This is here so that WM_CHAR is correctly called when a key is pressed.
WndProc(ref lParam);
}
return Win32.CallNextHookEx(hHook, nCode, wParam, ref lParam);
}
protected abstract void WndProc(ref Win32.Message message);
#region Interop Stuff
// I say thankya to P/Invoke.net.
// Contains all the Win32 functions I need to deal with
protected static class Win32
{
public enum HookType : int
{
WH_JOURNALRECORD = 0,
WH_JOURNALPLAYBACK = 1,
WH_KEYBOARD = 2,
WH_GETMESSAGE = 3,
WH_CALLWNDPROC = 4,
WH_CBT = 5,
WH_SYSMSGFILTER = 6,
WH_MOUSE = 7,
WH_HARDWARE = 8,
WH_DEBUG = 9,
WH_SHELL = 10,
WH_FOREGROUNDIDLE = 11,
WH_CALLWNDPROCRET = 12,
WH_KEYBOARD_LL = 13,
WH_MOUSE_LL = 14
}
public struct Message
{
public IntPtr hWnd;
public uint msg;
public IntPtr wparam;
public IntPtr lparam;
}
/// <summary>
/// Defines the windows proc delegate to pass into the windows hook
/// </summary>
public delegate int WndProcDelegate(int nCode, IntPtr wParam, ref Message m);
[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
public static extern IntPtr SetWindowsHookEx(HookType hook, WndProcDelegate callback,
IntPtr hMod, uint dwThreadId);
[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
public static extern bool UnhookWindowsHookEx(IntPtr hhk);
[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
public static extern int CallNextHookEx(IntPtr hhk, int nCode, IntPtr wParam, ref Message m);
[DllImport("coredll.dll", SetLastError = true)]
public static extern IntPtr GetModuleHandle(string module);
[DllImport("user32.dll", EntryPoint = "TranslateMessage")]
public extern static bool TranslateMessage(ref Message m);
[DllImport("user32.dll")]
public extern static uint GetWindowThreadProcessId(IntPtr window, IntPtr module);
}
#endregion
#region IDisposable Members
public void Dispose()
{
Dispose(true);
}
private void Dispose(bool disposing)
{
if (disposing)
{
// Free managed resources here
}
// Free unmanaged resources here
if (hHook != IntPtr.Zero)
{
Win32.UnhookWindowsHookEx(hHook);
}
}
#endregion
}
}
</code></pre>
http://stackoverflow.com/questions/20993/storing-logged-in-user-details7Storing logged in user detailsSekhat2008-08-21T19:59:57Z2009-03-10T10:20:32Z
<p>When creating a web application, and lets say you have a User object denoting a single user, what do you think is the best way to store that the user has logged in?</p>
<p>Two ways I've thought about have been:</p>
<ul>
<li>Stored the user database id in a session variable</li>
<li>Stored the entire user object in a session variable</li>
</ul>
<p>Any better suggestions, any issues with using the above ways? Perhaps security issues or memory issues, etc, etc.</p>
http://stackoverflow.com/questions/783238/why-windows-7-isnt-written-in-c/783646#783646Comment by Sekhat on Why Windows 7 isn't written in C#?Sekhat2009-12-22T00:07:23Z2009-12-22T00:07:23ZIf my C# code wasn't using the .NET library, I could write a compiler that compiled C# code to x86 instead of CIL and then yes, I could run C# code without .NET or mono.http://stackoverflow.com/questions/783238/why-windows-7-isnt-written-in-cComment by Sekhat on Why Windows 7 isn't written in C#?Sekhat2009-12-21T23:56:32Z2009-12-21T23:56:32Zyou don't need a VM for a GC either.http://stackoverflow.com/questions/1943259/linq-to-xml-newbie-question/1943371#1943371Comment by Sekhat on LINQ to XML Newbie QuestionSekhat2009-12-21T23:55:24Z2009-12-21T23:55:24Zthis caught me out the first time I used Linq to XML.http://stackoverflow.com/questions/1928928/how-do-i-compensate-for-the-overflow-property/1928962#1928962Comment by Sekhat on How do I compensate for the overflow property?Sekhat2009-12-18T15:50:51Z2009-12-18T15:50:51Zwhy is absolute positioning preferred to display: none? display: none is most certainly my preferred way of hiding things and make more sense than pushing stuff off screen.http://stackoverflow.com/questions/1748542/how-can-i-bind-a-command-of-a-control-in-template-to-my-viewmodel/1749592#1749592Comment by Sekhat on How can I bind a command of a control in template to my ViewModelSekhat2009-11-20T13:23:30Z2009-11-20T13:23:30ZTa, thanking you very muchy :)http://stackoverflow.com/questions/1755742/former-php-user-trying-to-learn-ruby-very-toughComment by Sekhat on former php user trying to learn ruby...very toughSekhat2009-11-18T13:46:07Z2009-11-18T13:46:07Za = myObj.new
b = a
in this case, b and a point to the same thing. Exactly.
a.hello = 2
puts b.hello
# output: 2
The same was true with PHP5, as pass by reference became the default for objects in PHP5, where as in previous versions of PHP it was pass by value.http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/121604#121604Comment by Sekhat on What is the one programming skill you have always wanted to master but haven't had time?Sekhat2009-11-17T13:33:31Z2009-11-17T13:33:31ZLazy, sloppy code? Nah, lean and mean code that isn't littered with if (something != NULL)
delete somethinghttp://stackoverflow.com/questions/1748542/how-can-i-bind-a-command-of-a-control-in-template-to-my-viewmodel/1748621#1748621Comment by Sekhat on How can I bind a command of a control in template to my ViewModelSekhat2009-11-17T13:18:06Z2009-11-17T13:18:06ZActually, sorry, it does. App.Xaml.cs sets up the data context for my main window from the OnStartup function.http://stackoverflow.com/questions/1748601/when-to-add-classes-when-to-add-selectors/1748610#1748610Comment by Sekhat on When to add classes, when to add selectors?Sekhat2009-11-17T12:43:43Z2009-11-17T12:43:43Zpipped me to the post :Phttp://stackoverflow.com/questions/1674384/access-denied-when-loading-dependancy-dll-net/1674422#1674422Comment by Sekhat on Access denied when loading dependancy .dll .NETSekhat2009-11-04T15:56:23Z2009-11-04T15:56:23Zas far as I'm aware no. It's the assembly itself that's failing to load anyway, the JIT compiler throws an assembly load exception as opposed to the assembly itself throwing an error..
As for the group policy, I thought of that too, but I have to get their IT department to really investigate it.http://stackoverflow.com/questions/1674384/access-denied-when-loading-dependancy-dll-net/1674404#1674404Comment by Sekhat on Access denied when loading dependancy .dll .NETSekhat2009-11-04T15:53:32Z2009-11-04T15:53:32ZI also thought this, but any DLL's, besides the standard windows DLL's .NET ties into, are all located in the apps directory.http://stackoverflow.com/questions/1674384/access-denied-when-loading-dependancy-dll-net/1674423#1674423Comment by Sekhat on Access denied when loading dependancy .dll .NETSekhat2009-11-04T15:52:21Z2009-11-04T15:52:21Zit is local I'm afraid :(http://stackoverflow.com/questions/654381/what-is-the-point-of-having-using-blocks-in-c-code/654391#654391Comment by Sekhat on What is the point of having using blocks in C# code?Sekhat2009-10-30T17:01:08Z2009-10-30T17:01:08Zadding { } around a block of code also scopes that section of code, theres no need for a using if your object isn't disposable.http://stackoverflow.com/questions/1575700/nhibernate-is-turning-my-collection-readonly-how-can-i-stop-it/1587609#1587609Comment by Sekhat on NHibernate is turning my collection readonly. How can I stop it?Sekhat2009-10-24T13:28:26Z2009-10-24T13:28:26ZIt is indeed possible.
<code>SetAttribute("lazy", "false")</code> did the trick :)http://stackoverflow.com/questions/1575700/nhibernate-is-turning-my-collection-readonly-how-can-i-stop-it/1587609#1587609Comment by Sekhat on NHibernate is turning my collection readonly. How can I stop it?Sekhat2009-10-19T10:04:22Z2009-10-19T10:04:22ZI'll have a look to see if Fluent NHibernate has an equivalent. (Would be suprised if not) Thanks for the suggestion.