-
Replied To a Post in Auth cookie doesn't work
Here is the User object; /*Author: Cameron Block*/ using System; using System.Collections.Generic; using System.Linq; using System.Security.Cryptography; using System.Text; using System.Web; using System.Configuration; namespace CameronBlog.Models { /// <summary> /// Representation of … -
Replied To a Post in Auth cookie doesn't work
Here is the Login Model; /*Author: Cameron Block*/ using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel.DataAnnotations; using CameronBlog.Repositories; namespace CameronBlog.Models { /// <summary> /// The object associated with … -
Replied To a Post in Auth cookie doesn't work
Here is the markup; <!-- Author: Cameron Block --> @model CameronBlog.Models.Login @{ ViewBag.Title = "Login"; } <div class="jumbotron"> <h1>Login</h1> <p class="lead">Log into Cameron's Web Blog. </p> </div> @using (Html.BeginForm("Login", "Login", … -
Replied To a Post in Auth cookie doesn't work
Here is the login controller; /*Author: Cameron Block*/ using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using System.Web.Security; using CameronBlog.Models; namespace CameronBlog.Controllers { public class LoginController : Controller … -
Created Auth cookie doesn't work
The following lines do not work. The bool is always false. I have been having trouble getting danni's site to work so if the reply is too short it's 'cuz … -
Began Watching Auth cookie doesn't work
The following lines do not work. The bool is always false. I have been having trouble getting danni's site to work so if the reply is too short it's 'cuz … -
Replied To a Post in nhibernate error could not find setter
Actually those two things appear to be right. It looks like when I posted the xml danni's site converted **& quot;** to actual quotation marks. The Quotation marks are specified … -
Created nhibernate error could not find setter
I have the following error as part of my nhibernate project; **Could not find a setter for property '0' in class 'AdHockey.Models.User'** The following is my model; public class User … -
Began Watching nhibernate error could not find setter
I have the following error as part of my nhibernate project; **Could not find a setter for property '0' in class 'AdHockey.Models.User'** The following is my model; public class User … -
Created NHibernate Inheritance problems.
I am creating an application that uses NHibernate, an object relational mapper that is a port of the Java Object relational mapper hibernate. Currently I am trying to represent my … -
Began Watching NHibernate Inheritance problems.
I am creating an application that uses NHibernate, an object relational mapper that is a port of the Java Object relational mapper hibernate. Currently I am trying to represent my … -
Created Serial Com Socket for transferring files
I am trying to build a program for transferring files to an arduino project with an attached sd card. I have some code, it does some interesting stuff, but it's … -
Began Watching Serial Com Socket for transferring files
I am trying to build a program for transferring files to an arduino project with an attached sd card. I have some code, it does some interesting stuff, but it's … -
Replied To a Post in Strange stuff found in production code
Actually I should make my own base 64 decoder app, just in case there's anything sensitive going on. Actually due to the fact that the code has been changing from … -
Replied To a Post in Verify if data sent by servers? How do bigger companies do that?
Since there are public and private keys on all three computers, of which private keys don't get transmitted, and we are talking about **encryption** which by it's nature protects data … -
Replied To a Post in hard drive options for a raspberry pi 2 backup server
Well, congrats you picked all the hard ones to learn. JK. I think OOP is a much better way to go most of the time. It seems easier to think … -
Began Watching hard drive options for a raspberry pi 2 backup server
I've been wanting to build a backup server for my Mint desktop as well as for my Debian media server for a while now. To save money I purchased a … -
Replied To a Post in hard drive options for a raspberry pi 2 backup server
Do you know much programming? Reason I ask is that if you intend to code your own 'server' software, you could implement a journaling type setup for your hard drive. … -
Replied To a Post in Verify if data sent by servers? How do bigger companies do that?
Sorry, it's 3 way encryption, there are basically 3 parties involved, and the way the crypto works it requires that all 3 parties communicate. There are public and private keys, … -
Edited Strange stuff found in production code
Hey guys, have you ever had an application where it was necessary to stuff a large base 64 string into a ticket tracking application? It's a javascript variable which is … -
Created Strange stuff found in production code
Hey guys, have you ever had an application where it was necessary to stuff a large base 64 string into a ticket tracking application? It's a javascript variable which is … -
Began Watching Strange stuff found in production code
Hey guys, have you ever had an application where it was necessary to stuff a large base 64 string into a ticket tracking application? It's a javascript variable which is … -
Replied To a Post in No-IR webcams for RPI
I also got an error while compiling a library on a linux development virtual machine. If anybody knows how to get make to build correctly that could be very helpful. … -
Edited No-IR webcams for RPI
I was wondering if there were any USB powered web cams for the Raspberry pi that are specifically No-IR. I know about the camera module which plugs directly into the … -
Created No-IR webcams for RPI
I was wondering if there were any USB powered web cams for the Raspberry pi that are specifically No-IR. I know about the camera module which plugs directly into the … -
Began Watching No-IR webcams for RPI
I was wondering if there were any USB powered web cams for the Raspberry pi that are specifically No-IR. I know about the camera module which plugs directly into the … -
Began Watching C# Encog Neural Net
Hi all, I am doing some basic experimenting with ENCOG ANN, but am having issue following a simple walthough. At this stage I am simply trying to grab data from … -
Replied To a Post in C# Encog Neural Net
What exactly is this encog stuff? I remeber buying a book on C# web bots by the same guy that made encog, and all I got out of it was … -
Gave Reputation to ddanbe in star shape
In which programming language? [This one?](https://en.wikipedia.org/wiki/Brainfuck) -
Gave Reputation to ddanbe in star shape
In which programming language? [This one?](https://en.wikipedia.org/wiki/Brainfuck) -
Began Watching Verify if data sent by servers? How do bigger companies do that?
As soon as I find out exact manner of communication between the server and the software. I realized how easy it is to use programs to intercept it, analyze it … -
Replied To a Post in Verify if data sent by servers? How do bigger companies do that?
They have some good points. You see, when you use ssh, or ssl, or some form of encryption you not only verify that no-one has modified the transmission in transit, … -
Began Watching Design Flaw solution for c++ code
Hi, In below design a big problem is whenever DoSomething() signature is changed to introduce new functionality caller class (return m.DoSomething()) also needs to be changed which might not be … -
Replied To a Post in Design Flaw solution for c++ code
You mean you want these two classes to be, perhaps used in the same array, or code etc as if they were the same type of object? Perhaps the adapter … -
Gave Reputation to ddanbe in VB no Yield Return?
? VB has evolved to C# with somewhat different syntax. It is also called VB.NET instead of just VB, VB4-5-6 or VBA. So yield exists. [See here](https://msdn.microsoft.com/en-us/library/hh156729.aspx). -
Replied To a Post in VB no Yield Return?
Ok, so the keyword I was missing was that it actually needs to have the "Iterator" Keyword. I had actually looked at that page, and I completely missed that nuance … -
Edited VB no Yield Return?
Am having some difficulty, I had some code that had a static helper method in C#, and now I am looking to port it to vb, but unfortunately vb doesn't … -
Created VB no Yield Return?
Am having some difficulty, I had some code that had a static helper method in C#, and now I am looking to port it to vb, but unfortunately vb doesn't … -
Began Watching VB no Yield Return?
Am having some difficulty, I had some code that had a static helper method in C#, and now I am looking to port it to vb, but unfortunately vb doesn't … -
Began Watching Blood Bank Management System please provide some headstart
Hi, I have been assigned Blood Bank Management System as java oop project.So i was wondering i someone can give me a headstart on which classes and methods to implement … -
Replied To a Post in Blood Bank Management System please provide some headstart
No! do not let the vampires take over the world! JK -
Replied To a Post in Spooky web stuff
Actually, I have specified not to use the secure search, due to it being too difficult to use, and having unsatisfactory searching features. The spooky feature is quite literally a … -
Replied To a Post in Spooky web stuff
Ok, I just want to make sure of something here. Could I have a few people type in "computer glasses" as a search query into google, and scroll down the … -
Gave Reputation to IntegratedTweak in Spooky web stuff
Hi overwraith :) I'll try and assist you the best I can, but you haven't posted in the last five days, but if you ever post here again i'll be … -
Replied To a Post in Spooky web stuff
That is awesome. Thanks man. I will try things out. AVG on my computer also just flagged some cookies, so I will try things out and see if I am … -
Replied To a Post in Spooky web stuff
Ok, am thinking it did not solve the problem. Must be something else. -
Began Watching help me :)
Hi everyone I am new with you. I study in the university, they teaching us many programming languages. I wont you to help me to found the best to focus … -
Replied To a Post in help me :)
It seems you are missing a few tags... What you will find in software dev- is that things are often organized into toolchains, and you can mix'n match. For instance … -
Replied To a Post in Spooky web stuff
Ok, I may have figured it out. I just deleted my entire browsing history using google's advanced delete options. I think that has solved the problem. Some-one may have weighted … -
Created Spooky web stuff
So, a few times I have typed in some specific searches into google, and ultimately come up with some really spooky coming back to me from google. I don't really …
The End.