User EnderMB - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T07:33:58Zhttp://stackoverflow.com/feeds/user/3609http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/874576/is-latex-worth-learning-today47Is LaTeX worth learning today?EnderMB2009-05-17T13:01:17Z2009-12-02T15:45:27Z
<p>I know that LaTeX is big in the world of academia, and was probably a big name in desktop publishing before the glory days of WordPerfect and Microsoft Office but as a Windows user that is interested in the power of LaTeX and the general smoothness of a LaTeX generated page is it really worth learning?</p>
<p>In a couple of months I'll be starting my final year in Computer Science and LaTeX has been bounced around the campus by many of the Linux geeks. In reality, is there any need to use it today? What will I actually gain from it and will I enjoy using it?</p>
<p>Finally, how does one use LaTeX on a Windows machine? What software do I really need? I've read a couple of guides but many of them seem like overkill.</p>
<p>Please help break a LaTeX newbie into the world of professional academic publishing!</p>
http://stackoverflow.com/questions/1803770/list-all-column-names/1803823#18038231Answer by EnderMB for list all column namesEnderMB2009-11-26T14:00:19Z2009-11-26T14:00:19Z<p>I'm not sure what you mean by listing the column names. As already mentioned to list the data within all columns you'll need to write:</p>
<pre><code>select * from table
</code></pre>
<p>Whereas if you'd like a list of just the columns in your table, give these a try:</p>
<pre><code>show columns from table
</code></pre>
<p>or</p>
<pre><code>describe table
</code></pre>
<p>More information on the latter can be found here</p>
<p><a href="http://dev.mysql.com/doc/refman/5.0/en/show-columns.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/show-columns.html</a></p>
<p><a href="http://dev.mysql.com/doc/refman/5.0/en/describe.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/describe.html</a></p>
http://stackoverflow.com/questions/172565/designers-developers-would-you-work-for-an-adult-company13Designers/Developers: Would you work for an "Adult" Company?EnderMB2008-10-05T20:14:10Z2009-11-26T12:44:32Z
<p>Although I try to distance myself from web-oriented work nowadays (unless I need the money) I've received a number of emails from clients wishing for me to help design and develop online solutions for adult websites. Hell, when I was 17 I was asked to help design an adult website that I would not legally be able to view.</p>
<p>After talking to a few Software Engineers and Flash Developers I have heard that there is a lot of interesting work in the adult industry for those who like to work with new technologies. Have any of you worked for a company dealing with adult/pornographic content? Did you enjoy it? If you haven't would you ever consider it?</p>
<p>More than anything I find it interesting to see how others would view the offer, whether you would be afraid to list it on a CV/Resume, how interesting the work would be, how you think future employees would see you and whether you believe that they would judge you for working in a <em>dirty</em> industry.</p>
http://stackoverflow.com/questions/1695195/optimising-and-redesigning-an-existing-application4Optimising and Redesigning an existing ApplicationEnderMB2009-11-08T02:50:18Z2009-11-08T12:56:21Z
<p>This seems to be a popular complaint on many programmer forums so I wouldn't be surprised if this question was already on here. Sorry if it has already been answered but I've searched and couldn't find one that relates to Java/OO.</p>
<p>I have a somewhat complicated application that was written a number of months ago. It works well, but is slow and the code is extremely ugly. Classes are split up for no logical reason, half the UI is in the logic code and it's really frustratingly built. I want to redesign and redevelop this program to the correct design standards, yet I don't want to break it completely. There's no design documents, no documentation, nothing but the code (with no formatting) and the built application.</p>
<p>What's the best way of taking an existing Java project, written in the most annoying way possible and redeveloping it in the best way possible? Are there any good tools that'll help me find speed bottlenecks or for extensive testing in NetBeans? Any help for a total novice of testing would be greatly appreciated.</p>
<p><strong>EDIT:</strong> You're correct when saying that we don't really understand this program. It does what we want, but it also does other things and we're not exactly aware of, like creating strange graphics and weird numbers appearing on the UI. The main reason we want this redesigned is so that we can actually find out what's going on, but as I've said the code is so messy you'd think it was written by a genius that didn't want us to find out his secrets.</p>
http://stackoverflow.com/questions/1695131/why-is-garbage-collection-so-important/1695158#16951583Answer by EnderMB for Why Is Garbage Collection So Important?EnderMB2009-11-08T02:33:15Z2009-11-08T02:33:15Z<p>In many older and less <em>strict</em> languages deallocating memory was hard-coded into programs by the programmer; this of course will cause problems if not done correctly as the second you reference memory that hasn't been deallocated your program will break. To combat this garbage collection was created, to automatically deallocate memory that was no longer being used. The benefits of such a system is easy to see; programs become far more reliable, deallocating memory is effectively removed from the design process, debugging and testing times are far shorter and more. </p>
<p>Of course, you don't get something for nothing. What you lose is performance, and sometimes you'll notice irregular behaviour within your programs, although nowadays with more modern languages this rarely is the case. This is the reason many typical applications are written in Java, it's quick and simple to write without the trauma of chasing memory leaks and it does the job, it's perfect for the world of business and the performance costs are little with the speed of computers today. Obviously some industries need to manage their own memory within their programs (the Games industry) for performance reasons, which is why nearly all major games are written in C++. A lecturer once told me that if every software house was in the same area, with a bar in the middle you'd be able to tell the game developers apart from the rest because they'd be the ones drinking heavily long into the night.</p>
http://stackoverflow.com/questions/1575061/genetic-algorithm-in-java5Genetic Algorithm in JavaEnderMB2009-10-15T21:04:05Z2009-10-22T13:04:45Z
<p>I am attempting to write a Genetic Algorithm based on techniques I had picked up from the book "AI Techniques for Game Programmers" that uses a binary encoding and fitness proportionate selection (also known as roulette wheel selection) on the genes of the population that are randomly generated within the program in a two-dimensional array.</p>
<p>I recently came across <a href="http://geneticalgorithms.ai-depot.com/Tutorial/Overview.html" rel="nofollow">a piece of pseudocode</a> and have tried to implement it, but have come across some problems with the specifics of what I need to be doing. I've checked a number of books and some open-source code and am still struggling to progress. Here is the code I have so far:</p>
<p><strong>Individual</strong></p>
<pre><code>public class Individual {
int n;
int[] genes = new int[500];
int fitnessValue;
public int getFitnessValue() {
return fitnessValue;
}
public void setFitnessValue(int fitnessValue) {
this.fitnessValue = fitnessValue;
}
public int[] getGenes() {
return genes;
}
public void setGenes(int index, int gene) {
this.genes[index] = gene;
}
public int getN() {
return n;
}
public void setN(int n) {
this.n = n;
}
// Constructor
public Individual() {
}
}
</code></pre>
<p>I understand that I have to get the sum of the total fitness of the population, pick a random number between the sum and zero, then if the number is greater than the parents to overwrite it, but I am struggling with the implementation of these ideas.</p>
<p>Any help in the implementation of these ideas would be very much appreciated as my Java is rusty.</p>
<p><hr /></p>
<p>I've given a number of these answers a try in implementation but am still struggling to find an implementation that works. The pseudocode is pointing me in the right direction but all my attempts to write a decent fitness method have come up short and some of the finer details I'm still yet to understand. </p>
<p>I am trying to write a generational genetic algorithm that represents each individual as a data structure; an array of binary genes and a fitness value (I have used a two-dimensional array). Obviously these need to be created by random and have been done so already.</p>
<p>According to a couple of books I have read on the subject a fitness function can define the fitness of an individual as equal to the number of 1's in its array of genes. This is one of the details I am having trouble with and I assume it's to do with how my code is currently. I haven't used Java in a while and I am pretty rusty with it so any help with what code I have at the moment would be appreciated.</p>
<p>Once this has been created and evaluated I want to write the fitness proportionate (roulette-wheel) selection function. I have written some pseudocode (similar to what I and others have written) and just need some help implementing it in the code I have already written. I am still reading about bit-wise crossover and mutation so I don't wish to try and write those yet until I actually understand what's going on.</p>
<p>According to the book I should try to maximise the overall fitness over a hundred generations. I assume this means everything will either need to be in a loop or some form of recursion will be needed?</p>
<p>I will try to post some code up soon, but at the moment my laptop with code is broken and I am writing this from a mobile phone.</p>
<p><hr /></p>
<p>As promised, here is the code I am using right now. You'll have to excuse it all being in the main method as I'm still chopping and changing things around.</p>
<p><strong>Population</strong></p>
<pre><code>import java.util.Arrays;
import java.util.Collections;
import java.util.Random;
public class Population {
public Population() {
}
public static void main(String[] args) {
Random rand = new Random();
int p = rand.nextInt(10);
int n = rand.nextInt(10);
Individual pop[] = new Individual[p];
Individual newPop[] = new Individual[p];
Individual indiv1 = new Individual();
Individual indiv2 = new Individual();
System.out.println("P is: " + p + "\nN is: " + n);
int[] individualFitness = new int[p];
int totalFitness = 0;
for(int j = 0; j < p; j++) {
pop[j] = new Individual();
for(int i = 0; i < n; i++) {
pop[j].setGenes(i, rand.nextInt(2));
individualFitness[j] += pop[j].getGenes(i);
totalFitness += pop[j].getGenes(i);
}
// Unordered
//System.out.println("Total Fitness for " + j + ": " + individualFitness[j]);
}
System.out.println("Total Fitness is: " + totalFitness);
Arrays.sort(individualFitness);
// Reverse the array (quickest way with primitive variables)
for(int i = 0; i < individualFitness.length/2; i++) {
int temp = individualFitness[i];
individualFitness[i] = individualFitness[individualFitness.length-(i+1)];
individualFitness[individualFitness.length-(i+1)] = temp;
}
// Ordered list
for(int j = 0; j < p; j++) {
System.out.println("Total Fitness for " + j + ": " + individualFitness[j]);
}
System.out.println("\n\n");
int randNum;
int idx1, idx2;
int count = 0;
// Roulette Wheel Selection
for(int i = 0; i < 50; i++) {
// Length is always same. Needs to be changed
while(newPop.length < p) {
// Select first individual
randNum = rand.nextInt(totalFitness);
idx1 = 0;
while(randNum >= 0 && idx1 < p) {
randNum -= individualFitness[idx1];
idx1++;
}
indiv1 = pop[idx1];
// Select second individual
randNum = rand.nextInt(totalFitness);
idx2 = 0;
while(randNum >= 0 && idx2 < p) {
randNum -= individualFitness[idx2];
idx2++;
}
indiv2 = pop[idx2];
System.out.println("Indiv1: " + indiv1);
// Crossover
// Mutation
}
}
}
public static void sortByFitness() {
}
public static void rouletteWheelSelection() {
}
}
</code></pre>
http://stackoverflow.com/questions/1600822/tool-for-webpage-ui-design/1602221#16022210Answer by EnderMB for Tool for Webpage UI designEnderMB2009-10-21T17:11:35Z2009-10-21T17:11:35Z<p>As <a href="http://stackoverflow.com/questions/1600822/tool-for-webpage-ui-design/1600955#1600955">David Dorward</a> has already mentioned there is really no substitute for a pencil and a couple of pieces of paper. My best designs always come from a couple of sketches and in my eyes no designer is truly above sketching their ideas out.</p>
<p>Once I draw out what I intend my application to do I typically scan it onto my computer and open it in a graphics program, typically Photoshop because it's what I have available to me (feel free to replace it with any other program). From there I set up my layers and start designing. I always find it good to have some design galleries (deviantART is a favourite of mine) just so I can gain some inspiration from what others have designed for purely artistic purposes. Some of the best user interfaces I've used have their roots in art and natural/mechanical design.</p>
<p>Whilst I am doing this I typically use a small whiteboard to jot down changes and properties of my designs. This approach has served me well on several occasions and I'll typically catch out any major issues before testing.</p>
<p>In short, if you're using just one tool then you're going to suffer a lot of problems with the flexibility of your design. The most flexible approach is by using a pen and paper but I'd recommend that you use everything you can to plan out what you're trying to do, then to press on with a raster graphics tool and start building.</p>
http://stackoverflow.com/questions/197481/is-it-possible-to-teach-several-languages-paradigms-at-once5Is it possible to teach several languages/paradigms at once?EnderMB2008-10-13T12:49:52Z2009-10-18T16:58:18Z
<p>If you had the opportunity to teach new students how to program for a year, what would you teach? I've always found that a multi-paradigm approach to teaching programming works best, but is it too much for first-year students? Is it better for a student to be great at one or good at 3-5?</p>
<p>At the moment I am looking to help tutor students on the following:</p>
<ul>
<li>x86 Assembly Language</li>
<li>C</li>
<li>Haskell</li>
<li>Java</li>
<li>Perl</li>
<li>C++</li>
<li>Prolog</li>
</ul>
<p>At the moment these students are only exposed to some very basic Java, so my theory is that these students would be able to expand further from here far better than they would with a basic understanding of just one language.</p>
<p>Please note that the question is not whether students can handle it, because a simple look at the programmes at the top universities show that <em>they</em> can, but whether it is advisable to those not at the top universities to focus on knowing as much as possible. It's not necessarily about knowing a language well, but giving students the ability to pick up and choose the right language for the job, and to become proficient in it as their studies continue.</p>
http://stackoverflow.com/questions/1532756/automating-mouse-movement-and-clicks-in-firefox-programmatically1Automating Mouse Movement and Clicks in Firefox programmaticallyEnderMB2009-10-07T16:35:19Z2009-10-07T21:39:25Z
<p>I am trying to create an automated clicker program in C# to make some administrative tasks quicker. In short, I will be using one program (Firefox) and will need a program to automatically move the mouse and click wherever I tell it to.</p>
<p>At the moment I have this code, although I think I'm pretty far away from an actual solution.</p>
<pre><code>using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.Drawing;
namespace Clicker
{
public partial class Form1 : Form
{
[DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)]
public static extern void mouse_event(long dwFlags, long dx, long dy, long cButtons, long dwExtraInfo);
private const int MOUSEEVENTF_LEFTDOWN = 0x02;
private const int MOUSEEVENTF_LEFTUP = 0x04;
private const int MOUSEEVENTF_RIGHTDOWN = 0x08;
private const int MOUSEEVENTF_RIGHTUP = 0x10;
public void DoMouseClick()
{
//Call the imported function with the cursor's current position
Cursor.Position = new Point((int)10, (int)10);
mouse_event(MOUSEEVENTF_LEFTDOWN | MOUSEEVENTF_LEFTUP, Cursor.Position.X, Cursor.Position.Y, 0, 0);
}
public Form1()
{
//InitializeComponent();
}
}
}
</code></pre>
<p>I want my program to run on top of Firefox and once it has loaded to immediately start clicking in the positions I tell it to. It'll need to click thirteen 30x30 pixel buttons and will then stop, leaving me to finish the task.</p>
<p>How would I go about such a task?</p>
<p>EDIT: I forgot to mention that the front-end is in Flash. Weird, I know. Either way, it means that programs like Selenium won't work as its tracks page movements and clicks on links.</p>
http://stackoverflow.com/questions/1491837/writing-a-search-engine-in-half-a-year2Writing a Search Engine in half a yearEnderMB2009-09-29T10:48:02Z2009-09-30T09:27:58Z
<p>As a part of my final-year project in undergraduate Computer Science I am looking to write a search engine that ranks websites on validity of standards. I've read several articles and posts about writing a search engine and how difficult it can be, but I'm feeling ambitious and hope that within 5-6 months I would be able to have a working search engine, obviously not commercially viable or working for real users but enough to be able to crawl my own domain of several hundred pages and rank them on their subject and how they conform to W3C standards.</p>
<p>I'd like to give this a try in a language like C#, PHP or Python, but before I get ahead of myself I'd like to know what knowledge one must obtain to be able to undertake such a project and whether it is doable in half a year. </p>
<p>For me this is purely a learning exercise in order to stress what I am capable of. I know that there are many open-source search engine scripts available like Lucene.NET that I could use in a real-world situation but I'd like to give writing one a shot. Do you think that a final-year undergrad is capable of writing a functional search engine for a small website?</p>
<p><strong>EDIT:</strong> This search engine would be an online search engine, usable through a web page front-end. I'd only want to crawl the web pages on a dummy website I've put up, consisting of no more than fifty pages for now. The idea is to use several metrics to determine what website is best from a design perspective, most notably by using a code validator. </p>
http://stackoverflow.com/questions/184118/what-programming-book-would-you-not-recommend-to-developers31What Programming Book would you NOT recommend to Developers?EnderMB2008-10-08T18:21:31Z2009-09-14T06:23:15Z
<p>Like a lot of people on Stack Overflow I love to read books about programming, almost as much as I love to read the lists that people add onto their websites, Blog's and this very website. </p>
<p>However, for every gem there are a thousand turds, and to one developer a gem could just be a shiny turd to another.</p>
<p>Whilst there are hundreds of book questions on this website asking users to recommend books that they have loved I have decided (after looking for a similar question and not finding it) to create a list of books that users have detested. After all, if we're going to fork out money for these books it'd be a good idea to get both positive and negative aspects out there.</p>
<p><strong>Please refer to a specific book, and with it add an image of either the latest version or the version you have read. Also, if you have the time please comment on the answers to provide your experiences with the books.</strong></p>
http://stackoverflow.com/questions/1352172/generate-selected-checkboxes-in-php-from-mysql-database0Generate selected checkboxes in PHP from MySQL DatabaseEnderMB2009-08-29T19:17:04Z2009-08-29T20:12:41Z
<p>I am writing an Edit Profile page for a user login system I'm writing. I'd like these users to be able to assign themselves to categories. As many users can join many categories my table structure is as follows:</p>
<pre><code>USER
-------------
user_id
username
password
email
category_id
CATEGORY
-------------
category_id
category_name
USER_CAT_JOIN
-------------
ucj_id
user_id
category_id
</code></pre>
<p>As mentioned, I'd like users to be able to choose what categories they'd like to be part of. Let's say there are three categories, One, Two, Three, Four and Five. I'd like all categories to be generated within my form, but with the categories the user is a part of I'd like them selected.</p>
<p>So, if I were to look at a user page from USERNAME that is a member of categories Three, Four and Five I'd like it to show:</p>
<blockquote>
<p>USERNAME</p>
<p>Email: me@myhouse.org </p>
<p>Password: <strong>******</strong></p>
<p>Categories: </p>
<pre><code> One
Two
</code></pre>
<p>x Three </p>
<p>x Four </p>
<p>x Five</p>
</blockquote>
<p>I've had a bit of trouble trying to figure out a solution to this, so any help on this would be very much appreciated. </p>
<p><hr /></p>
<p><strong>Note</strong> The code behind something like this is trivial so I haven't written it out yet. At the moment this is the one problem I'm stuck with as I've never outputted from a MySQL database into checkboxes before.</p>
http://stackoverflow.com/questions/288211/whats-the-fraction-of-lurkers-vs-active-users/288230#2882302Answer by EnderMB for What's the fraction of lurkers vs active users?EnderMB2008-11-13T20:50:17Z2009-08-26T22:16:34Z<p>Whilst this is not exactly what was asked, here is <strike><a href="http://www.thinkvitamin.com/features/webapps/how-to-measure-the-success-of-your-web-app" rel="nofollow">an article by popular resource Vitamin</a></strike>. The article explains a simple 'conversion funnel' concept for e-commerce websites to represent how many users are using, trialling and ultimately purchasing products. I find that it crosses over into Social Media fairly well if you change purchasing to actively commenting.</p>
<blockquote>
<p>"If you’re not keeping record of who’s doing what with your web app, then you’re missing out a key part of building a successful product. Understanding what to measure and how is what we’ll look at in this article."</p>
</blockquote>
<p><hr /></p>
<p><strong>EDIT:</strong> It seems that Carsonified has swallowed the previously popular resource Vitamin. Assuming that the link isn't going to work again follow <a href="http://carsonified.com/blog/web-apps/feature-how-to-measure-the-success-of-your-web-app/" rel="nofollow">this link</a> for the same article. </p>
http://stackoverflow.com/questions/1319714/how-should-i-design-the-database-of-a-job-search-site/1319807#13198070Answer by EnderMB for How should I design the database of a Job Search site?EnderMB2009-08-23T22:52:31Z2009-08-23T22:52:31Z<p>Assuming that you'll be using something along the lines of PHP to write your website I would highly recommend the book <a href="http://www.sitepoint.com/article/php-mysql-tutorial/" rel="nofollow">Build your own Database-driven website using PHP and MySQL</a>. The book walks you through creating a simplistic joke website, from writing the PHP code to coming up with a database schema to match your requirements.</p>
<p>Eventually, requirements are going to be what drives your design. It's easy to say that you're going to create a "Job Search site" but what do you really want it to do? What does the user want from your website? What inputs and outputs will each part of your site use? How will businesses interact with your site? Who will moderate this?</p>
<p>Unlike the other comments I wouldn't recommend getting too formal when you're dealing with a tutorial site to help you learn. At the bare minimum you need to understand exactly why you're doing this and why everything is as it is. This isn't an exercise in Project Management or Software Design Methodologies, this is an exercise in you learning basic Web Development and Database Management. </p>
<p>If you want to get practising on your own computer download a copy of <a href="http://www.apachefriends.org/en/xampp.html" rel="nofollow">XAMPP</a> and start writing a couple of PHP scripts, using phpMyAdmin as a means to access your database. Given a week of working through examples on the Internet and through connecting, reading and writing to a database through PHP you'll learn to appreciate what a database truly does for you. There's a reason Database Administrators get paid so much for the work they do!</p>
<p>If you're looking to write a commercially viable job search website I would recommend that you read up on some database theory as well (Google database theory lecture notes and you'll find a plethora of resources). A database is for life, not just for Christmas, and you'll need to keep that database running smoothly if you want your website to run without any hitches.</p>
<p>Good luck with your job search website!</p>
http://stackoverflow.com/questions/1265430/tsql-get-all-rows-for-given-id0TSQL: Get all rows for given IDEnderMB2009-08-12T10:40:54Z2009-08-12T12:01:01Z
<p>I am trying to output all of my database reports into one report. I'm currently using nested select statements to get each line for each ID (the number of ID's is unknown). Now I would like to return all the rows for every ID (e.g. 1-25 if there are 25 rows) in one query. How would I do this?</p>
<pre><code>SELECT (
(SELECT ... FROM ... WHERE id = x) As Col1
(SELECT ... FROM ... WHERE id = x) As Col2
(SELECT ... FROM ... WHERE id = x) As Col3
)
</code></pre>
<p><hr /></p>
<p>EDIT: Here's an example:</p>
<pre><code>SELECT
(select post_id from posts where report_id = 1) As ID,
(select isnull(rank, 0) from results where report_id = 1 and url like '%www.testsite.com%') As Main,
(select isnull(rank, 0) from results where report_id = 1 and url like '%.testsite%' and url not like '%www.testsite%') As Sub
</code></pre>
<p>This will return the rank of a result for the main domain and the sub-domain, as well as the ID for the posts table.</p>
<pre><code>ID Main Sub
--------------------------------------
1 5 0
</code></pre>
<p>I'd like to loop through this query and change report_id to 2, then 3, then 4 and carry on until all results are displayed. Nothing else needs to change other than the report_id.</p>
<p><hr /></p>
<p>Here's a basic example of what is inside the tables</p>
<pre><code>POSTS
post_id post report_id
---------------------------------------------------------
1 "Hello, I am..." 1
2 "This may take..." 2
3 "Bla..." 2
4 "Bla..." 3
5 "Bla..." 4
RESULTS
result_id url title report_id
--------------------------------------------------------
1 http://... "Intro" 1
2 http://... "Hello!" 1
3 http://... "Question" 2
4 http://... "Help" 3
REPORTS
report_id description
---------------------------------
1 Introductions
2 Q&A
3 Starting Questions
4 Beginner Guides
5 Lectures
</code></pre>
<p>The query will want to pull the first post, the first result from the main website (www) and the first result from a subdomain by their report_id. These tables are part of a complicated join structure with many other tables but for these purposes these tables are the only ones that are needed.</p>
<p><hr /></p>
<p>I've managed to solve the problem by creating a table, setting variables to take all the contents and insert them in a while loop, then selecting them and dropping the table. I'll leave this open for a bit to see if anyone picks up a better way of doing it because I hate doing it this way.</p>
http://stackoverflow.com/questions/1244492/outputting-results-from-complicated-database-structure-sql-server0Outputting Results from complicated database structure (SQL Server)EnderMB2009-08-07T12:37:14Z2009-08-10T12:41:22Z
<p>This will be a long question so I'll try and explain it as best as I can.</p>
<p>I've developed a simple reporting tool in which a number of results are stored and given a report id, these results were generated from a particular quote being used on the main system, with a huge list of these being stored in a quotes table. Here are the current batch:</p>
<h3>REPORTS</h3>
<pre><code>REP_ID DESC QUOTE_ID
-----------------------------------
1 Test 1
2 Today 1
3 Last Week 2
</code></pre>
<h3>RESULTS</h3>
<pre><code>RES_ID TITLE REFERENCE REP_ID
---------------------------------------------------
1 Equipment Toby 1
2 Inventory Carl 1
3 Stocks Guest 2
4 Portfolios Guest 3
</code></pre>
<h3>QUOTE</h3>
<pre><code>QUOTE_ID QUOTE
------------------------------------
1 Booking a meeting room
2 Car Park Policy
3 New User Guide
</code></pre>
<p>So far, so good, a simple stored procedure was able to pull all the information necessary.</p>
<p>Now, the feature list has been upped to include categories and groups of the quotes. In the <strong>Reports</strong> table quote_id has been changed to group_id to link to the following tables.</p>
<pre><code>REPORTS
- REPORT_ID
- DESC
- GROUP_ID
GROUP
- GROUP_ID
- GROUP
GROUP_CAT_JOIN
- GCJ_ID
- CAT_ID
- GROUP_ID
CATEGORIES
- CAT_ID
- CATEGORY
CAT_QUOTE_JOIN
- CQJ_ID
- CAT_ID
- QUOTE_ID
</code></pre>
<p>The idea of these changes is so that instead of running a report on a quote I should now write a report for a group where a group is a set of quotes for certain occasions. I should also be able to run a report on a category where a category is also a set of quotes for certain departments. The trick is that several categories can fall into one group.</p>
<p>To explain it further, the results table has a report_id that links to reports, reports has a group_id that links to groups, groups and categories are linked through a group_cat_join table, the same with categories and quotes through a cat_quote_join table.</p>
<p>In basic terms I should be able to pull all the results from either a group of quotes or a category of quotes. The query will aim to pull all the results from a certain report under either a certain category, a group or both. This puzzle has left me stumped for days now as inner joins don't appear to be working and I'm struggling to find other ways to solve the problem using SQL.</p>
<p>Can anyone here help me?</p>
<p><hr /></p>
<p>Here's some extra clarification.</p>
<p>I want to be able to return all the results within a category, but as of right now the solution below and the ones I've tried always output every solution within a description, which is not what I want.</p>
<p>Here's an example of the data I have in there at the moment</p>
<h2>Results</h2>
<pre><code>RES_ID TITLE REFERENCE REP_ID
---------------------------------------------------
1 Equipment Toby 1
2 Inventory Carl 1
3 Stocks Guest 2
4 Portfolios Guest 3
</code></pre>
<h2>Reports</h2>
<pre><code>REP_ID DESC GROUP_ID
-----------------------------------
1 Test 1
2 Today 1
3 Last Week 2
</code></pre>
<h2>GROUP</h2>
<pre><code>GROUP_ID GROUP
---------------------------------
1 Standard
2 Target Week
</code></pre>
<h2>GROUP_CAT_JOIN</h2>
<pre><code>GCJ_ID GROUP_ID CAT_ID
----------------------------------
1 1 1
2 1 2
3 2 3
</code></pre>
<h2>CATEGORIES</h2>
<pre><code>CAT_ID CAT
-------------------------------
1 York Office
2 Glasgow Office
3 Aberdeen Office
</code></pre>
<h2>CAT_QUOTE_JOIN</h2>
<pre><code>CQJ_ID CAT_ID QUOTE_ID
-----------------------------------
1 1 1
2 2 2
3 3 3
</code></pre>
<h2>QUOTE</h2>
<pre><code>QUOTE_ID QUOTE
------------------------------------
1 Booking a meeting room
2 Car Park Policy
3 New User Guide
</code></pre>
<p>This is the test data I am using at the moment and to my knowledge it is similar to what will be run through once this is done. In all honesty I'm still trying to get my head around this structure.</p>
<p>The result I am looking for is if I choose to search by group I'll get everything within a group, if I choose everything inside a category I get everything just inside that category, and if I choose something from a category in a group I get everything inside that category. The problem at the moment is that whenever the group is referenced everything inside every category that's linked to the group is pulled.</p>
http://stackoverflow.com/questions/1244515/what-is-the-best-text-editor-for-web-development/1244553#12445530Answer by EnderMB for What is the best text editor for web development?EnderMB2009-08-07T12:54:24Z2009-08-07T12:54:24Z<p>I would definitely recommend a WYSIWYG editor, but you could always give <a href="http://www.crimsoneditor.com/" rel="nofollow">Crimson Editor</a> a try. I used to hear good things about it.</p>
http://stackoverflow.com/questions/1218122/suggest-final-year-project-with-j2me-or-php-or-j2ee/1226439#12264390Answer by EnderMB for Suggest final year project with j2me or php or j2eeEnderMB2009-08-04T09:13:46Z2009-08-04T09:13:46Z<p>Firstly, if you're just going to take one of our suggestions then you won't find it interesting and won't finish it to your quality requirements. It would be far better for you to do your own research or failing this to read the many other questions on here about final year projects.</p>
<p>Secondly, you've not given enough detail. If you're doing a final-year graduate project in Computer Science you might want to target a specific subject related to your degree. There's really no point in writing a Raytracer in Java if you're taking a Masters in AI.</p>
<p>Thirdly, we can give you the best projects in the world to do, but the best source of inspiration is the man or woman that is teaching you, <strong>your lecturers!</strong> They're the ones that will be marking your work and they're the ones that will know what is best for you to target. </p>
http://stackoverflow.com/questions/1222117/multidimensional-lists-in-c0Multidimensional Lists in C#EnderMB2009-08-03T12:37:07Z2009-08-03T12:49:30Z
<p>At the moment I am using one list to store one part of my data, and it's working perfectly in this format: </p>
<pre><code>Item
----------------
Joe Bloggs
George Forman
Peter Pan
</code></pre>
<p>Now, I would like to add another line to this list, for it to work like so:</p>
<pre><code>NAME EMAIL
------------------------------------------------------
Joe Bloggs joe@bloggs.com
George Forman george@formangrills.co
Peter Pan me@neverland.com
</code></pre>
<p>I've tried using this code to create a list within a list, and this code is used in another method in a foreach loop:</p>
<pre><code>// Where List is instantiated
List<List<string>> list2d = new List<List<string>>
...
// Where DataGrid instance is given the list
dg.DataSource = list2d;
dg.DataBind();
...
// In another method, where all people add their names and emails, then are added
// to the two-dimensional list
foreach (People p in ppl.results) {
list.Add(results.name);
list.Add(results.email);
list2d.Add(list);
}
</code></pre>
<p>When I run this, I get this result:</p>
<pre><code>Capacity Count
----------------
16 16
16 16
16 16
... ...
</code></pre>
<p>Where am I going wrong here. How can I get the output I desire with the code I am using right now?</p>
http://stackoverflow.com/questions/1212344/parse-json-in-c3Parse JSON in C#EnderMB2009-07-31T12:45:07Z2009-08-02T17:37:56Z
<p>I'm trying to parse some JSON data from the Google AJAX Search API. I have <a href="http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=cheese&rsz=large" rel="nofollow">this URL</a> and I'd like to break it down so that the results are displayed. I've currently written this code, but I'm pretty lost in regards of what to do next, although there are a number of examples out there with simplified JSON strings.</p>
<p>Being new to C# and .NET in general I've struggled to get a genuine text output for my ASP.NET page so I've been recommended to give JSON.NET a try. Could anyone point me in the right direction to just simply writing some code that'll take in JSON from the Google AJAX Search API and print it out to the screen?</p>
<p><hr /></p>
<p><strong>EDIT:</strong>
I think I've made some progress in regards to getting some code working using DataContractJsonSerializer. Here is the code I have so far. Any advice on whether this is close to working and/or how I would output my results in a clean format?</p>
<p><hr /></p>
<p><strong>EDIT 2:</strong> I've followed the advice from <a href="http://stackoverflow.com/questions/1212344/parse-json-in-c/1218902#1218902">Dreas Grech</a> and the StackOverflowException has gone. However, now I am getting no output. Any ideas on where to go next?</p>
<p><hr /></p>
<p><strong>EDIT 3:</strong> ALL FIXED! All results are working fine. Thank you again Dreas Grech!</p>
<pre><code>using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.ServiceModel.Web;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Json;
using System.IO;
using System.Text;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
GoogleSearchResults g1 = new GoogleSearchResults();
const string json = @"{""responseData"": {""results"":[{""GsearchResultClass"":""GwebSearch"",""unescapedUrl"":""http://www.cheese.com/"",""url"":""http://www.cheese.com/"",""visibleUrl"":""www.cheese.com"",""cacheUrl"":""http://www.google.com/search?q\u003dcache:bkg1gwNt8u4J:www.cheese.com"",""title"":""\u003cb\u003eCHEESE\u003c/b\u003e.COM - All about \u003cb\u003echeese\u003c/b\u003e!."",""titleNoFormatting"":""CHEESE.COM - All about cheese!."",""content"":""\u003cb\u003eCheese\u003c/b\u003e - everything you want to know about it. Search \u003cb\u003echeese\u003c/b\u003e by name, by types of milk, by textures and by countries.""},{""GsearchResultClass"":""GwebSearch"",""unescapedUrl"":""http://en.wikipedia.org/wiki/Cheese"",""url"":""http://en.wikipedia.org/wiki/Cheese"",""visibleUrl"":""en.wikipedia.org"",""cacheUrl"":""http://www.google.com/search?q\u003dcache:n9icdgMlCXIJ:en.wikipedia.org"",""title"":""\u003cb\u003eCheese\u003c/b\u003e - Wikipedia, the free encyclopedia"",""titleNoFormatting"":""Cheese - Wikipedia, the free encyclopedia"",""content"":""\u003cb\u003eCheese\u003c/b\u003e is a food consisting of proteins and fat from milk, usually the milk of cows, buffalo, goats, or sheep. It is produced by coagulation of the milk \u003cb\u003e...\u003c/b\u003e""},{""GsearchResultClass"":""GwebSearch"",""unescapedUrl"":""http://www.ilovecheese.com/"",""url"":""http://www.ilovecheese.com/"",""visibleUrl"":""www.ilovecheese.com"",""cacheUrl"":""http://www.google.com/search?q\u003dcache:GBhRR8ytMhQJ:www.ilovecheese.com"",""title"":""I Love \u003cb\u003eCheese\u003c/b\u003e!, Homepage"",""titleNoFormatting"":""I Love Cheese!, Homepage"",""content"":""The American Dairy Association\u0026#39;s official site includes recipes and information on nutrition and storage of \u003cb\u003echeese\u003c/b\u003e.""},{""GsearchResultClass"":""GwebSearch"",""unescapedUrl"":""http://www.gnome.org/projects/cheese/"",""url"":""http://www.g
http://stackoverflow.com/questions/1198962/merge-two-json-objects-programmatically1Merge two JSON objects programmaticallyEnderMB2009-07-29T09:10:06Z2009-07-29T10:10:33Z
<p>I have two JSON objects here, generated through the Google Search API. The URL's of these objects can be found below.</p>
<p><a href="http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=hello%20world&rsz=large" rel="nofollow">http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=hello%20world&rsz=large</a>
<a href="http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=hello%20world&rsz=large&start=8" rel="nofollow">http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=hello%20world&rsz=large&start=8</a></p>
<p>As you can see the first URL returns the first eight results, whilst the second one returns the next eight. Instead of checking these results separately I'd like to <em>programmatically</em> merge them into one JSON object and pass them through as the first sixteen results.</p>
<p>I've attempted this with a couple of extremely simple JSON objects, but what Google returns is still a bit above my head, so I'm hoping for a bit of help with doing such a thing.</p>
<p>As far as I've been told it is not against Google's Terms of Service to merge two objects into one, only that these always go through as two results (which they will). Some friends have pointed me in the direction of automated tools that are capable of doing such things, but I'm yet to find such a tool.</p>
<p>I'm currently working within ASP.NET so C# or VB.NET code is great, but I'm somewhat language independent so any help in any language will be very much appreciated. </p>
<p>Can anyone provide any help and/or advice on doing such a thing? </p>
<p><strong>EDIT:</strong> These results will eventually be saved to a database, so any server-side methods would be fantastic, even if it means putting them straight into a table for dealing with later.</p>
http://stackoverflow.com/questions/1143668/beginner-regular-expression-for-url0Beginner: Regular Expression for URLEnderMB2009-07-17T14:35:55Z2009-07-17T15:08:52Z
<p>I have a huge list of URL's, in the format:</p>
<ul>
<li><a href="http://www.example.com/dest/uk/bath/" rel="nofollow">http://www.example.com/dest/uk/bath/</a></li>
<li><a href="http://www.example.com/dest/aus/sydney/" rel="nofollow">http://www.example.com/dest/aus/sydney/</a></li>
<li><a href="http://www.example.com/dest/aus/" rel="nofollow">http://www.example.com/dest/aus/</a></li>
<li><a href="http://www.example.com/dest/uk/" rel="nofollow">http://www.example.com/dest/uk/</a></li>
<li><a href="http://www.example.com/dest/nor/" rel="nofollow">http://www.example.com/dest/nor/</a></li>
</ul>
<p>What RegEx could I use to get the last three URL's, but miss the first two, so that every URL without a city attached is given, but the ones with cities are denied?</p>
<p>Note: I am using Google Analytics, so I need to use RegEx's to monitor my URL's with their advanced feature. As of right now Google is rejecting each regular expression.</p>
http://stackoverflow.com/questions/565095/java-are-getters-and-setters-evil7Java: Are Getters and Setters evil?EnderMB2009-02-19T12:33:20Z2009-07-13T19:40:47Z
<p>I'm currently working on a simple game in Java with several different modes. I've extended a main Game class to put the main logic within the other classes. Despite this, the main game class is still pretty hefty.</p>
<p>After taking a quick look at my code the majority of it was Getters and Setters (60%) compared to the rest that is truly needed for the logic of the game.</p>
<p>A couple of Google searches have claimed that Getters and Setters are evil, whilst others have claimed that they are necessary for good OO practice and great programs.</p>
<p>What are your opinions on this? Should I be changing my Getters and Setters for my private variables or should I stick with them?</p>
http://stackoverflow.com/questions/676707/input-in-prolog4Input in PrologEnderMB2009-03-24T09:45:26Z2009-06-28T19:26:16Z
<p>I'm currently working on a recursive Prolog program to link routes together to create a <em>basic</em> GPS of the Birmingham area. At the moment I can get output as so:</p>
<p><strong>Input</strong></p>
<pre><code>routeplan(selly_oak, aston, P).
</code></pre>
<p><strong>Output</strong></p>
<pre><code>P = [selly_oak, edgbaston, ... , aston]
</code></pre>
<p>What I would like to do is have my program provide some sort of interface, so if I were to type in something along the lines of:</p>
<pre><code>Route from selly_oak to aston
</code></pre>
<p>It would provide me with:</p>
<pre><code>Go from selly_oak to edgbaston
Go from edgbaston to ...
Finally, Go from ... to aston.
</code></pre>
<p>Prolog is a powerful language so I assume this is easily possible, however many of the books I've taken out seem to skip over this part. As far as I am aware I have to use something along the lines of write() and read() although the details are unknown to me.</p>
<p>Could anyone here a Prolog novice out with some basic examples or links to further information?</p>
<p><strong>EDIT:</strong> A lot of these answers seem very complicated, where the solution should only be around 5-10 lines of code. Reading in a value isn't a problem as I can do something along the lines of:</p>
<pre><code>find:- write('Where are you? '), read(X), nl, write('Where do you want to go? '), read(Y), loopForRoute(X,Y).
</code></pre>
<p>I'd prefer it if the output could be written out using write() so a new line (nl) can be used, so that it displays like the output above.</p>
<p>If this were my input, how would I then arrange the top routeplan() to work with these inputs? Also, if I were to add the Lines for these stations as an extra parameter how would this then be implemented? All links are defined at the beginning of the file like so:</p>
<pre><code>rlinks(selly_oak, edgbaston, uob_line).
rlinks(edgbaston, bham_new_street, main_line).
</code></pre>
<p>Therefore, with this information, it'd be good to be able to read the line as so.</p>
<pre><code>Go from selly_oak to edgbaston using the uob_line
Go from edgbaston to ... using the ...
Finally, go from ... to aston using the astuni_line
</code></pre>
http://stackoverflow.com/questions/1033174/how-do-i-use-a-comma-separated-list-of-values-as-a-filter-in-t-sql4How do I use a comma separated list of values as a filter in T-SQL?EnderMB2009-06-23T15:09:41Z2009-06-24T13:35:17Z
<p>I have a basic SQL query, starting with:</p>
<pre><code>SELECT top 20 application_id, [name], location_id FROM apps
</code></pre>
<p>Now, I would like to finish it so that it does this (written in Pseudocode)</p>
<pre><code>if @lid > 0 then
WHERE location_id IN (@lid)
else
WHERE location_id is all values in location_id column
</code></pre>
<p><hr /></p>
<p>As requested, here is an example</p>
<pre><code>application_id name location_id
----------------------------------------------------------
1 Joe Blogs 33
2 Sam Smith 234
3 Jeremy Carr 33
</code></pre>
<p>@locid is the results given by the user, for example '33, 234'</p>
<p>If @lid is empty then I'd like it to output all rows for location_id with name and application_id. Otherwise, I'd like it to output all rows in relation to the provided numbers in @lid (standing for location_id.</p>
<p>So, if @lid is 0:</p>
<pre><code>application_id name location_id
----------------------------------------------------------
1 Joe Blogs 33
2 Sam Smith 234
3 Jeremy Carr 33
</code></pre>
<p>Otherwise, if @lid contains '33'</p>
<pre><code>application_id name location_id
----------------------------------------------------------
1 Joe Blogs 33
3 Jeremy Carr 33
</code></pre>
http://stackoverflow.com/questions/1037511/beginner-checking-availability-on-a-booking-table-in-sql2Beginner: Checking availability on a booking table in SQLEnderMB2009-06-24T10:17:08Z2009-06-24T12:32:07Z
<p>I'm writing a job vacancy database for a bit of fun (and to try and learn T-SQL/SQL Server and this is what I have in my applications table so far.</p>
<pre><code>application_id name interviewer location_id from to
-----------------------------------------------------------------------------------------------------------
1 Joe Bloggs Sarah Saunders 100 2008-12-25 00:00:00 2008-12-26 00:00:00
2 Barry White Issac Hayes 100 2008-12-29 00:00:00 2008-12-30 00:00:00
</code></pre>
<p>It's easy enough to find out what bookings have been made for these dates; a simple select statement would find these out easily enough.</p>
<p>The only problem I have now is how to figure out what days DON'T contain bookings. I'd like to do a search on the following table to see what dates are available in the room with location_id 100 between "2008-12-25 00:00:00" and "2008-12-30 00:00:00" and have it return that there is no interview being held in the room from the 27th to the 28th.</p>
<p>I'm sure this is painfully easy, but please lay some SQL wisdom on me.</p>
<p><strong>Similar to this:</strong> <a href="http://stackoverflow.com/questions/704176/how-to-implement-check-availability-in-hotel-reservation-system/704185">http://stackoverflow.com/questions/704176/how-to-implement-check-availability-in-hotel-reservation-system/704185</a></p>
http://stackoverflow.com/questions/1014858/is-writing-specifications-for-hobby-projects-the-only-way-for-them-to-be-finished/1037522#10375220Answer by EnderMB for Is writing specifications for hobby projects the only way for them to be finished?EnderMB2009-06-24T10:21:15Z2009-06-24T10:21:15Z<p>I constantly write specs for my projects, in work, at university and outside in my free time. The biggest weakness of a programmer is his/her memory, so I find it good to keep myself busy during my thinking time by writing down my every thought into some sort of structured document. Before you know it you've written a full database schema or have a Requirements Specification.</p>
<p>At the moment I'm working on improving my SQL skills, and I've been spending a lot of this free time between writing queries writing down my experienced. After a couple of tweaks I had a decent document outlining what needed to be done.</p>
http://stackoverflow.com/questions/1031505/sql-use-multiple-values-in-single-select-statement0SQL: Use multiple values in single SELECT statementEnderMB2009-06-23T09:23:58Z2009-06-23T11:47:18Z
<p>I'm using a SELECT statement in T-SQL on a table similar to this:</p>
<pre><code>SELECT DISTINCT name, location_id, application_id FROM apps
WHERE ((application_id is null) or (application_id = '4'))
AND ((location_id is null) or (location_id = '3'))
</code></pre>
<p>This seems to work fine when searching for one application_id or one location_id, but what if I want to run the statement for multiple locations? I want to return all results for an unknown amount of location_id's and application_id's. For example, if I wanted to search for someone at the location_id's 2, 3, 4, 5 but with only one application_id. How would I do this?</p>
<p>Thank you in advance!</p>
<p><hr /></p>
<p><strong>EDIT:</strong> I'm an idiot! I made it sound easy without giving you all the full details. All of these values are given from inside a table. The user will have to choose the id's from a column in the table instead of inserting them. After doing a bit of research on this problem I <a href="http://www.sommarskog.se/arrays-in-sql-2005.html#CSV" rel="nofollow">came up with a page</a> that seemed to tout a viable solution.</p>
<pre><code>CREATE FUNCTION iter$simple_intlist_to_tbl (@list nvarchar(MAX))
RETURNS @tbl TABLE (number int NOT NULL) AS
BEGIN
DECLARE @pos int,
@nextpos int,
@valuelen int
SELECT @pos = 0, @nextpos = 1
WHILE @nextpos > 0
BEGIN
SELECT @nextpos = charindex(',', @list, @pos + 1)
SELECT @valuelen = CASE WHEN @nextpos > 0
THEN @nextpos
ELSE len(@list) + 1
END - @pos - 1
INSERT @tbl (number)
VALUES (convert(int, substring(@list, @pos + 1, @valuelen)))
SELECT @pos = @nextpos
END
RETURN
END
</code></pre>
<p>Can anyone help me perfect this to meet my needs? Sorry if my question isn't very clear, as I'm struggling to get to grips with it myself.</p>
<p><hr /></p>
<p><strong>EDIT 2:</strong> After doing a bit more reading on the subject it seems that I need a stored procedure to do this. The code up the top seems to be what I need, but I'm having trouble tailoring it to my needs. The table structure is as follows:</p>
<pre><code>application_id name location_id
------------------------------------------------------
1 Joe Blogs 34
2 John Smith 55
</code></pre>
<p>According to the article I've just linked to:</p>
<blockquote>
<p>"The correct way of handling the
situation is to use a function that
unpacks the string into a table. Here
is a very simple such function:"</p>
</blockquote>
<p>So, it seems that I need to unpack these values into a string and pass them through using this stored procedure. Any idea on how I can get this to work?</p>
<p><strong>EDIT 3:</strong> I've managed to solve it using charindex() and convert(), whilst setting them at the top. Thank you for all your help and I apologise again for being a pain.</p>
http://stackoverflow.com/questions/1027008/get-distance-between-one-date-and-another-in-sql-iso-format0Get distance between one date and another in SQL (ISO format)EnderMB2009-06-22T12:43:06Z2009-06-22T13:59:45Z
<p>Let's say I have a table with two columns, where a user places a booking.</p>
<pre><code>datefrom dateto
-------------------------------------------
2009-05-23 00:00:00 2009-05-27 00:00:00
</code></pre>
<p>How would I use SQL to return how many days the user will be booking for? All I want is to return the number of days.</p>
http://stackoverflow.com/questions/392424/law-for-computer-scientists-programmers9Law for Computer Scientists & ProgrammersEnderMB2008-12-25T01:48:44Z2009-06-20T17:31:51Z
<p>A lot of Computer Science courses seem to be running Law modules as standard, in order to teach students about things like The Data Protection Act, Copyright, etc.</p>
<p>Realistically, is Law an important subject for Computer Scientists or Programmers? Did you take Law or take a Law class whilst studying for a CS related degree? If you did, do you have any book recommendations for someone wanting to learn more about Law in the IT domain?</p>
<p><strong>EDIT: I've already been given a fantastic reference and that's been chosen as my accepted answer. However, I am a British student, so any UK-specific book recommendations would be fantastic.</strong></p>
http://stackoverflow.com/questions/1849476/job-offer-nashua-nhComment by EnderMB on JOB OFFER -- Nashua, NHEnderMB2009-12-04T20:33:21Z2009-12-04T20:33:21ZI couldn't help but laugh at this. It's safe to say that no SO users will be applying for this role...http://stackoverflow.com/questions/1800513/how-can-i-make-the-div-tag-link-back-to-the-home-page/1800569#1800569Comment by EnderMB on How can I make the div tag link back to the home page?EnderMB2009-11-25T23:16:19Z2009-11-25T23:16:19ZI had just written something like this a couple of minutes ago and it works perfectly in Firefox and IE.http://stackoverflow.com/questions/1575061/genetic-algorithm-in-javaComment by EnderMB on Genetic Algorithm in JavaEnderMB2009-10-22T09:49:18Z2009-10-22T09:49:18ZThank you for your replies. What you've provided is literally everything I needed as my GA is not intended for actual use. I had recently purchased a good on AI for Games Programming and it introduced the concept with some basic pseudocode and I felt like trying to implement it. It didn't really introduce the subject very well but your explanations and code have done a far better job of showing me what it does. In the examples the whole reason for this implementation was so that you could see "evolution" in action.http://stackoverflow.com/questions/1575061/genetic-algorithm-in-java/1575995#1575995Comment by EnderMB on Genetic Algorithm in JavaEnderMB2009-10-21T17:27:23Z2009-10-21T17:27:23ZThanks for the code. I have started to implement some of it, along with code from the other answers into my Java code and it's starting to take shape.http://stackoverflow.com/questions/1575061/genetic-algorithm-in-javaComment by EnderMB on Genetic Algorithm in JavaEnderMB2009-10-21T15:26:51Z2009-10-21T15:26:51ZRight, the code I am using right now is up. I think I'm starting to gradually understand it; the crossover and mutation code should be simple enough, I just want to make sure that what I'm doing right now is actually correct and/or could be put in a better way.http://stackoverflow.com/questions/1575061/genetic-algorithm-in-javaComment by EnderMB on Genetic Algorithm in JavaEnderMB2009-10-15T22:01:54Z2009-10-15T22:01:54ZI need help in the implementation of my final sentence. I sort of know what to do, but without any other resources and many of those on the Internet having different implementations I'm struggling to find a simple way of doing what I need to do.http://stackoverflow.com/questions/1575061/genetic-algorithm-in-java/1575109#1575109Comment by EnderMB on Genetic Algorithm in JavaEnderMB2009-10-15T21:24:18Z2009-10-15T21:24:18Z
Part three is where I have the problem. I have my population and its genes, I have given them each a number that is either zero or one and I have a sum of the total fitness of the entire population. Do I now loop through the same thing again and if I do so what member do I select? To answer your latest question I am familiar with C, although at the moment I am just struggling with the fitness method; I have a pretty good idea of how I will handle the crossover and mutation.http://stackoverflow.com/questions/1566948/beginner-assigning-values-to-arrays-in-java/1566972#1566972Comment by EnderMB on Beginner: Assigning values to arrays in JavaEnderMB2009-10-14T15:17:03Z2009-10-14T15:17:03ZThis answer works. Thanks for the help!http://stackoverflow.com/questions/1566948/beginner-assigning-values-to-arrays-in-javaComment by EnderMB on Beginner: Assigning values to arrays in JavaEnderMB2009-10-14T15:16:54Z2009-10-14T15:16:54ZSorry for the throwaway count and inability now to give a correct answer. I wanted to create an initial population so I could run a routine-wheel fitness method on them. Lou Franco has answered the question perfectly, so thank you for your help!http://stackoverflow.com/questions/1532756/automating-mouse-movement-and-clicks-in-firefox-programmatically/1532831#1532831Comment by EnderMB on Automating Mouse Movement and Clicks in Firefox programmaticallyEnderMB2009-10-07T18:26:40Z2009-10-07T18:26:40ZWorked perfectly. Thank you!http://stackoverflow.com/questions/1532756/automating-mouse-movement-and-clicks-in-firefox-programmatically/1532835#1532835Comment by EnderMB on Automating Mouse Movement and Clicks in Firefox programmaticallyEnderMB2009-10-07T16:54:15Z2009-10-07T16:54:15ZI've tried Selenium, but it doesn't work for Flash applications. I forget to mention that the part I need to automate has a Flash front-end, something that Selenium doesn't pick up on.http://stackoverflow.com/questions/1491837/writing-a-search-engine-in-half-a-year/1491874#1491874Comment by EnderMB on Writing a Search Engine in half a yearEnderMB2009-09-30T09:29:38Z2009-09-30T09:29:38ZI'd have limited funding as it would be a university project. A lot of my lecturers are very hardware oriented so I'm sure it wouldn't be a problem to find an old server somewhere that could be used.http://stackoverflow.com/questions/1491837/writing-a-search-engine-in-half-a-year/1491870#1491870Comment by EnderMB on Writing a Search Engine in half a yearEnderMB2009-09-29T11:02:52Z2009-09-29T11:02:52ZI actually found the idea on Y Combinator. My goal was originally to rank websites on how "good" their design is, but this is probably too ambitious for half a year of work for an undergrad. A lot of niche search engines seem to be taking off (PowerSet being an example) so I decided that writing a search engine would both be challenging and easy to relate to, as well as sounding impressive on a grad-school application form.http://stackoverflow.com/questions/146840/which-language-should-students-start-with/146877#146877Comment by EnderMB on Which language should students start with?EnderMB2009-09-27T13:57:35Z2009-09-27T13:57:35ZIsn't that a good thing? If programming is truly a craft then surely it would be beneficial to learn the basics of all paradigms. A chef doesn't limit themselves to working with just peppers, nor does a graphic designer only use the brush tool. By learning every paradigm a student learns programming, not a language.http://stackoverflow.com/questions/439091/what-company-would-you-like-to-work-for/439319#439319Comment by EnderMB on What company would you like to work for?EnderMB2009-09-02T22:00:27Z2009-09-02T22:00:27ZI have, but knowing a couple of guys that work there and the majority of people that work there are two entirely different things.