4
votes
3answers
101 views
How can I get a random time between Now and some previous time point (eg. 1 hour ago)?
Hi folks,
I'm trying to make an extension method that allows me to create a random time between Now and some user requested historical time point in the form of a TimeSpan.
For example : a random …
0
votes
3answers
76 views
How to generate random values that don’t keep giving me the same value in ‘runs’ of numbers?
Hi I coded this OneAtRandom() extension method:
public static class GenericIListExtensions
{
public static T OneAtRandom<T>(this IList<T> list)
{
…
1
vote
5answers
91 views
Returning items randomly from a collection
I've a method which returns a generic list collection(List) from the database. This collection has got order details i.e., Order Id, order name, product details etc.
Also, method the method returns a …
2
votes
6answers
163 views
Linq2sql: efficient way to get random elements with weight?
Byt lets say I have an integer weight where i.e. elements with weight 10 has 10 times higher probability to be selected than element with weight 1.
var ws = db.WorkTypes
.Where(e => e.HumanId != …
1
vote
3answers
68 views
.NET: Random number or number of free bytes in memory?
How can I get the number of free bytes available in memory, in .NET?
Also, can you think of a potentially better random number beside new Random().Next(), DateTime.Now.Ticks, or available system …
2
votes
3answers
173 views
C# Random Code Field Generator for Object
I have an object with the following properties
GID
ID
Code
Name
Some of the clients dont want to enter the Code so the intial plan was to put the ID in the code but the baseobject of the orm is …
4
votes
7answers
255 views
How could I improve this C# randomising method?
I think I've settled on this as the most simple and unit-testable method for randomising a list, but would be interested to hear of any improvements.
public static IList<T> …
1
vote
2answers
43 views
Select Random Datas From File
Hello,
I'm learning C# and now I need to build a home project(just to learn how to use file I/O and random). I have a file(names.txt) like this:
Nathan
John
Max
Someone
But how I can access this …
0
votes
3answers
126 views
Random background image on DIV
I'm trying to get a randomly picked background image (from a selection of 4 images) to appear as the background image for a asp.net panel.
The problem I have is that the code works when stepping …
1
vote
4answers
203 views
Random number: 0 or 1
Am I looking too far to see something as simple as pick a number: 0 or 1?
Random rand = new Random();
if (rand.NextDouble() == 0)
{
lnkEvents.CssClass = "selected";
}
else
{
…
0
votes
6answers
157 views
(.NET) Easy way to generate random, easy to remember passcodes
I have a project in the works, and I'll need to associate a passcode with an item.
The password should be completely non sequential or easily guessable, yet simple to remember.
I thought about doing …
1
vote
5answers
358 views
Random number generation in C#
I have been writing some C# code for a training exercise, in which I had to create an array of random rectangles.
Problem being that the rectangle being produced by my GetRandomRectangle function was …
8
votes
8answers
327 views
How can I generate pseudo-random “readable” strings in Java?
Generating a truly random string of a given length is a fairly straightforward (and already-well-covered) task.
However; I'd like to generate a "pseudo" random string with the additional constraint …
6
votes
6answers
430 views
special random number
I'd like to have a random number like this:(in C#)
Random r = new Random();
r.next (0,10)
BUT it's important to the random number be more near 8,(or it be usually big),
I mean if we use a for:
…
1
vote
2answers
86 views
Are there any tools to populate class properties with random data?
What I'd like to do is create a class with some attributes on different properties, pass that class to another that will set the properties with appropriate random data... here in pseudo code:
public …
