-
Replied To a Post in Flexible Cupon Service
I think the best advise one would have been able to give on this topic is calculate tax prior to issuing the cupon perhaps? Sound about right? Don't let the … -
Marked Solved Status for Flexible Cupon Service
Hello all, I was wondering if I could get some questions answered about how cupons work in the work place. I have an idea which involves creating a very flexible … -
Marked Solved Status for Altering statistics of generated random numbers
This may sound wierd, or easy, I just don't have a statistics background. How do I alter the statistical value of an array of emmitted random numbers? I am completely … -
Replied To a Post in Altering statistics of generated random numbers
I think I have a better idea than you guys how to do this. I recently created a casino random numbers algorithim which would instead of emitting a random value, … -
Created Flexible Cupon Service
Hello all, I was wondering if I could get some questions answered about how cupons work in the work place. I have an idea which involves creating a very flexible … -
Began Watching Flexible Cupon Service
Hello all, I was wondering if I could get some questions answered about how cupons work in the work place. I have an idea which involves creating a very flexible … -
Created Programatically Open Windows Firewall Port
I would like to be able to open a port on windows programatically. I don't care whether is power shell, or something else, but I would like it to be … -
Began Watching Programatically Open Windows Firewall Port
I would like to be able to open a port on windows programatically. I don't care whether is power shell, or something else, but I would like it to be … -
Created Start MonoDevelop Program as background Service
How do I start a MonoDevelop software program as a system service on Windows, Linux, and Mac? Windows appears to not have a system service setting. I have a WCF … -
Began Watching Start MonoDevelop Program as background Service
How do I start a MonoDevelop software program as a system service on Windows, Linux, and Mac? Windows appears to not have a system service setting. I have a WCF … -
Created Altering statistics of generated random numbers
This may sound wierd, or easy, I just don't have a statistics background. How do I alter the statistical value of an array of emmitted random numbers? I am completely … -
Began Watching Altering statistics of generated random numbers
This may sound wierd, or easy, I just don't have a statistics background. How do I alter the statistical value of an array of emmitted random numbers? I am completely … -
Replied To a Post in how to run c# program in clients machine
It's called WPF, windows presentation forms, or alternatively WCF, windows communication framework. WPF is a graphical user interface, whereas WCF is a communication framework for distributed computing. -
Began Watching how to run c# program in clients machine
Hi Every one, i have a server and a numbers of clients and i have a C# program on that server. My question is how to run that program on … -
Replied To a Post in Genetic Algorithm
Read this book; Genetic Algorithms in Java Basics 1st ed. Edition by Lee Jacobson (Author), Burak Kanber (Author) -
Began Watching Genetic Algorithm
Could anyone please review my code https://github.com/LeoUpperThrower4/GeneticAlgorithm -
Replied To a Post in What do you mean when you say hacker?
Well, let's remember there are three types of hackers, white hat, black hat, and gray hat. Two of them are illegal. One is not. White hats work as penetration testers … -
Began Watching What do you mean when you say hacker?
A survey of attendees at Infosecurity Europe earlier this month showed 70 percent in favour of the dictionary definition (in this case the Cambridge Dictionary) of a hacker being amended. … -
Replied To a Post in Trump
Well, I do think my observations are related if you actually read post number 2 it justifies the assertations as being related to this topic. You don't suppose you just … -
Replied To a Post in Trump
Actually you are contemplating why trump rose to power, and not applying the context to which he did rise to power, he was versing a democrat who had an email … -
Replied To a Post in Trump
Well, at least trump does not use home made email servers for top secret documents. Anybody else would be thrown in jail for that. There is a slew of regulations … -
Began Watching Trump
I think I finally understand why Trump is doing so well (he recently pulled even with Hillary Clinton). It's only after years of shows like American Idol and America's Got … -
Replied To a Post in C# gone out of Programming menu?
I noticed this too. I also noticed that some people think it's just straignt C, which is incorrect, due to the implementation of the common language runtime, JIT compiler, and … -
Began Watching C# gone out of Programming menu?
Why is it that C# disappeared from the Programming menu? Something to do with upcoming changes? -
Replied To a Post in Personal Travel Blog
At the very least you will need to research the technologies you will be utilizing for locational data. For sql server this will be the spatial functionality, for postgre sql … -
Began Watching Personal Travel Blog
Hi, I am a legacay (cobol) developer and wants to learn how to build websites. For this I decided to do a little project for myself. The site would be … -
Replied To a Post in How can we do guest blogging?
Shout boxes are interesting, they basically just display all user input that is submitted via button to the web page. I believe some of them use session state on the … -
Began Watching How can we do guest blogging?
Hi guys, I need to do guest blogging and get back links for the same. since I heard guet posting or guest blogging is the best way to get backlinks … -
Replied To a Post in how to make multi-vendor website like amazon
Bootstrap is always a good idea. It makes your pages portable device friendly with very little effort. Some people use it in lieu of learning the portable device application technologies … -
Replied To a Post in Windows Forms Authentication project
So, let me get this straight, your users, all of them on the other side of a web screen has their own database login? This seems kinda contrary to some … -
Replied To a Post in Windows Forms Authentication project
The sql server does have a table with the user's object inside it. It's just the user is already authenticated once they pass through my page, so the other applications … -
Created Windows Forms Authentication project
I started working on a windows forms authentication project, which uses nhibernate, and has some management pages for managing user settings, such as resetting user password. This forms based authentication … -
Began Watching Windows Forms Authentication project
I started working on a windows forms authentication project, which uses nhibernate, and has some management pages for managing user settings, such as resetting user password. This forms based authentication … -
Replied To a Post in JSON and databases
JSON is a markup language, like XML, but vastly different in appearance. It is meant to be read into an object where you can actually use and manipulate the data. … -
Replied To a Post in Increment mysql database table column by +1 continuously in every 24 hours
Right, you could have your class that is pulled from the table implementing a calculated method based on that date diff (a getter). I use object relational mappers. If you … -
Began Watching Increment mysql database table column by +1 continuously in every 24 hours
I have db table called **subscription** and a column called **duration**. I want the column** duration** to be incremented by +1 in every 24 hours until it gets to 30 … -
Replied To a Post in Biggest DaniWeb pain points
Actually, you could probably cache or write to a table as far as banning by static ip address. If you get a threshold for repeated spamming ip addresses you can … -
Replied To a Post in Biggest DaniWeb pain points
Jeese. That's a lot of spam. Why don't you just ban the members who are spamming? Have a domain event for the admins which says flag for spamming. Then the … -
Created Delete all tables from schema
This is surprisingly difficult. Consider it a snippet. Deletes all tables from a sql server schema. Useful for those times on your dev machine where you need to tear down … -
Began Watching Delete all tables from schema
This is surprisingly difficult. Consider it a snippet. Deletes all tables from a sql server schema. Useful for those times on your dev machine where you need to tear down … -
Replied To a Post in Biggest DaniWeb pain points
One of the pain points I have had with danni web is that there is not a very good turn around time with this site as compared to stack overflow, … -
Began Watching Biggest DaniWeb pain points
I'm trying to save DaniWeb. :) What are the biggest pain points you have with DaniWeb? If you don't visit DaniWeb as much as you used to, what changed? Where … -
Replied To a Post in C / C#
No, you are wrong. C is not C#. C# is built on a common language runtime with a just in time compiler. C# is c-esque, but not C. C# is … -
Began Watching C / C#
Is C similar to C# (C-sharp); or are they completely different ? I was wondering if I should begin learning C# and the transition to C will be a tad … -
Replied To a Post in Simple takeaway database
One of the things I had to learn is first, there is always a database. Second, always go back to the database in order to get current data, don't rely … -
Began Watching Simple takeaway database
Hey guys. So this should be a pretty simple question (but doesn't appear to be) that I'm hoping some of the database wizards out there can help me with. I'm … -
Created Cool threading idea for microsoft
I had a cool idea concerning threading in C#. I was reading a book called "CLR via C#" and it was discussing threading, and how people should seldom use actual … -
Began Watching Cool threading idea for microsoft
I had a cool idea concerning threading in C#. I was reading a book called "CLR via C#" and it was discussing threading, and how people should seldom use actual … -
Replied To a Post in IIS Windows Server 2012 R2 Instillation
With Docker becoming a thing now perhaps we will all get linux servers! ha! -
Created IIS Windows Server 2012 R2 Instillation
Ok, So I have an instance of **Windows Server 2012 R2** installed to a virtual machine on my local development PC with **IIS** . The idea being I need to …
The End.