Jump to content

chazat123

Member
  • Posts

    57
  • Joined

  • Last visited

Awards

This user doesn't have any awards

1 Follower

About chazat123

  • Birthday Jul 12, 1997

Contact Methods

Profile Information

  • Gender
    Male
  • Location
    Birmingham, United Kingdom
  • Occupation
    Editor-in-chief at TechFly UK

System

  • CPU
    AMD FX6300 3.5GHz
  • Motherboard
    Gigabyte GA-990AX-UD3
  • RAM
    Kingston HyperX Genesis 12GB 1600MHz DDR3
  • GPU
    EVGA GTX670
  • Case
    Fractal Design Define R4
  • Storage
    240GB OCZ ARC100 SSD / 1TB Seagate / 500GB Seagate
  • PSU
    OCZ ZS Series 750W 80+ Bronze
  • Display(s)
    2X BenQ G2420HD
  • Cooling
    Cooler Master Hyper 212 EVO (120mm)
  • Keyboard
    Razer Black Widow Elite 2013
  • Mouse
    Razer Naga 2012 MMO
  • Sound
    Integrated
  • Operating System
    Windows 7 Ultimate X64

chazat123's Achievements

  1. Hi I can't find anything in the BIOS or in the post screen at all to do with storage. Should I buy a RAID card?
  2. Hi, thanks for the advice - can I test the drives on my home PC which only supports SATA drives with the SAS backplane on the hard drives?
  3. thanks for the advice - will report back soon!
  4. oh great - thank you! what am i looking for then in the bios? sorry I'm so new to this!!
  5. Thanks for the reply do I need a raid card for this then?
  6. Hello, I have a HP ProLiant DL360 G5 and I have 2 HP SAS drives 72gb each. After going through the Ubuntu installation disk I have reached the select hard drive stage. It's not recognising the drives? Do I need a RAID card even though I only want to install to one of the drives? I'm very new to servers and am only testing as part of a project! Any help would be greatly appreciated! Thanks
  7. Thank you for your opinion! Very valued Yes I will look into mods and thanks for the suggestion too that's a great idea.
  8. Thank you for your input! I'm just stuck for choice really. Maybe I'll do a trial run?
  9. I run a website with a yearly viewing of around 2 million - I have disabled comments since the start. How would it affect the audience if I enabled comments through a Disqus-type system? My website is here.
  10. I'm currently programming a pretty basic Java Currency Converter. I decided to use ComboBoxes as I've familiarized myself with them before. I want to receive the user's input from those combo boxes and implement them into an IF statement How would I go about recording their input. Many thanks, Charlie import javax.swing.*;import java.awt.*;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;public class Currency_Converter { public static void main(String[] args) { JFrame mainframe = new JFrame("CConverter 4"); new Currency_Converter(); //Begin Welcome Message JLabel welcome_message = new JLabel("Welcome to CConverter V4.0", JLabel.CENTER); welcome_message.setForeground(Color.RED); mainframe.add(welcome_message); welcome_message.setVerticalTextPosition(JLabel.TOP); welcome_message.setHorizontalTextPosition(SwingConstants.CENTER); //End Welcome Message mainframe.add(Box.createVerticalStrut(100)); // Begin Drop Down Menu 1 final String[] comboList = {"Please select the currency you wish to convert from.", "EUR", "GBP", "USD"}; JComboBox comboBox = new JComboBox(comboList); comboBox.setForeground(Color.BLUE); comboBox.setSelectedIndex(0); comboBox.setMaximumSize(new Dimension(1280, 100)); mainframe.add(comboBox); // End Drop Down Menu 1 mainframe.add(Box.createVerticalStrut(100)); //Begin Drop Down Menu 2 String[] ComboList2 = {"Please select the currency you wish to convert to.", "EUR", "GBP", "USD"}; JComboBox ComboBox2 = new JComboBox(ComboList2); ComboBox2.setSelectedIndex(0); ComboBox2.setMaximumSize(new Dimension(1280, 100)); mainframe.add(ComboBox2); //End Drop Down Menu 2 mainframe.add(Box.createVerticalStrut(100)); //Begin Frame Customisation { mainframe.setLayout(new BoxLayout(mainframe.getContentPane(), BoxLayout.Y_AXIS)); } mainframe.setSize(1280, 720); mainframe.setLocationRelativeTo(null); mainframe.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); mainframe.setVisible(true); mainframe.setBackground(Color.BLUE); mainframe.setResizable(false); //End Frame Customisation }}
  11. Hi, I have hosting and a domain with nothing on. I want to make a social network a bit like Facebook but for photographers (like my self) with the ability to list their kit and accessories. Not only that but all of the details (exposure etc). I've used BuddyPress and WordPress before and have brief knowledge on HTML but none on php or others. If anybody would be willing to help I'd be extremely thank full! Thanks, Charlie
  12. Already got a Fractal Design R4 in white, with no window, want a case with a window, under £100 like Linus' personal rig case perhaps, what's the best?
  13. chazat123

    Wordpress

    Anyone that knows wordpress know a good portfolio theme for my photography website?
×