m-e-g-a-z's Profile User Rating: -----

Reputation: 495 Architect
Group:
Expert
Active Posts:
1,452 (1.11 per day)
Joined:
19-October 09
Profile Views:
47,877
Last Active:
User is offline Apr 03 2013 12:07 PM
Currently:
Offline

Previous Fields

Country:
GB
OS Preference:
Linux
Favorite Browser:
FireFox
Favorite Processor:
Intel
Favorite Gaming Platform:
XBox
Your Car:
Volkswagen
Dream Kudos:
500
Expert In:
Java

Latest Visitors

Icon   m-e-g-a-z is back in London.

Posts I've Made

  1. In Topic: Cant understand the programme.

    Posted 5 Jan 2013

    Just to note, classes should start with uppercase, so week should be Week :).
  2. In Topic: Java Code Assessor

    Posted 23 Oct 2012

    At my workplace, we use Sonar and it really helps us manage the quality of code we write and the build pipeline process. It identifies code violations and provides alternative ways of writing a specific line or section of code. An example could be generic exception handling when reading a file which would generally need IOException and/or NullPointerException handling. It would inform us of this violation which is very helpful in keeping the quality of the code consistent across the codebase.
  3. In Topic: php good choice?

    Posted 17 Jun 2012

    You could use a caching system such as memcached to increase performance and speed.
  4. In Topic: Neural Networks (Back Propagation) - Adjust the weights.

    Posted 28 Feb 2012

    Guys..I have managed to do this and for anyone that needs help with the algorithm...here is a little code snippet. This would make a good tutorial for the future ;)

    int i = 0;
    		for (Neuron n : outputLayer) {
    			ArrayList<Connection> connections = n.getAllInConnections();
    			for (Connection con : connections) {
    				double output = n.getOutput();
    				double ai = con.leftNeuron.getOutput();
    				double desiredOutput = expectedOutput[i];
    				double errorDerivative = (output * (1-output) *(desiredOutput - output));
    				double deltaWeight = learningRate * errorDerivative * ai;
    				double newWeight = con.getWeight() + deltaWeight;
    				con.setDeltaWeight(deltaWeight);
    				con.setWeight(newWeight);
    			}
    			i++;
    		}
    
    
  5. In Topic: network level encryption

    Posted 14 Jan 2012

    Just use HTTPS as stated above which would be the route I would go for. You will need a server that is configured for HTTPS but it would encrypt all data.

My Information

Member Title:
Winning
Age:
Age Unknown
Birthday:
Birthday Unknown
Gender:
Location:
London, England
Years Programming:
2
Programming Languages:
Java but play around with other languages.

Contact Information

E-mail:
Private
Website URL:
Website URL  http://

Comments

  • (2 Pages)
  • +
  • 1
  • 2
  1. Photo

    m-e-g-a-z Icon

    23 Feb 2011 - 10:46
    15,000 profile views!
  2. Photo

    CodingSup3rnatur@l-360 Icon

    23 Feb 2011 - 02:49
    Yeah, I can't wait to start! I start the Java courses in October, so it should be good. Thanks for the comments :)
  3. Photo

    CodingSup3rnatur@l-360 Icon

    22 Feb 2011 - 08:33
    I work for a laundry company ;). Good thing is that it's the most highly automated laundry in Europe (apparently), so there's always plenty of development work to do. I think it's good to get real world experience alongside the uni stuff. Plus, they pay my uni fees, so it's a win win :)
  4. Photo

    CodingSup3rnatur@l-360 Icon

    21 Feb 2011 - 13:31
    Hi!
    I am studying with the Open University. I work 4 days a week (with Progress 4GL and VB.NET), and have 1 day off per week to study :)
  5. Photo

    EnvXOwner Icon

    18 Jan 2011 - 12:38
    lol
  6. Photo

    EnvXOwner Icon

    18 Jan 2011 - 11:18
    Yeah, I meant you should use it for layout. That it's okay to use for tabular data.
  7. Photo

    macosxnerd101 Icon

    01 Oct 2010 - 08:39
    Long time, no see. How are things going for you?
  8. Photo

    m-e-g-a-z Icon

    03 Jul 2010 - 02:42
    Thanks macosxnerd101 :)
  9. Photo

    macosxnerd101 Icon

    02 Jul 2010 - 18:18
    Looking good in purple!
  10. Photo

    m-e-g-a-z Icon

    02 Jul 2010 - 16:03
    Thanks eZACKe :)
  11. Photo

    eZACKe Icon

    02 Jul 2010 - 15:39
    Congrats man! Well deserved.
  12. Photo

    m-e-g-a-z Icon

    02 Jul 2010 - 13:38
    Thanks Dogstopper and skyhawk133! :)
  13. Photo

    Dogstopper Icon

    02 Jul 2010 - 12:42
    Congratulations on Expert!
  14. Photo

    skyhawk133 Icon

    02 Jul 2010 - 11:12
    Congrats on your promotion to Expert!
  15. Photo

    no2pencil Icon

    26 Jun 2010 - 01:34
    Drip.
  • (2 Pages)
  • +
  • 1
  • 2