Jump to content

The RAM Guy

Member
  • Posts

    36
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

The RAM Guy's Achievements

  1. It depends on the usecase. Which SPECIFIC games? Which mods? with optifine and the best available shaders you won’t even be a little bit bottlenecked by cpu. I exspect the 3070 to hit around 30 FPS with 16 chunks render distance. With this distance even a i7 980x would not bottleneck the 3070.
  2. This is a Windows problem. Probably it will work with Linux. There are some Motherboards out there with problems detecting GPUs in Windows. First you need to make sure, that the grafics drivers are installed correctly and maybe try it with Linux.
  3. Which games do you play? The gaming experience depends on which game you play. For example in League of legends 3x 32:9 Screens give you the best experience. You should definitely go with Intel today, it has the better only gaming value.
  4. Maybe you should consider the rtx 3090. It looks good for 4K
  5. You don’t need to redown the games. You could copy paste the Origin Steam Games in the Installation folder. They will be detected and there is no need for downloading. Just Press download and Steam/Origin will detect if they are downloaded/installed in the specified installation folder.
  6. There will be a titan. The RTX 3090 and RTX 3090 Ti closes the gap between the 3080Ti and Titan 3000. Titan price is exspected to be 2,5 k.
  7. Which PSU is in it? It will work if you have a free connector or adapters. But you probably have to limit the power consumption to <75W. There is still a chance that it will work out of the box.
  8. You can change the background but not in the menu.
  9. You can still choose a picture. Right click and select it as background.
  10. Hey guys, i created an background image vs the activate Windows watermark. Check in out at 1080p and 4 k. I only checked it in 4:3. Just tell me if it works on 1080p/4 k. (16:9) Do you like it? Btw. pictures are from Pixabay with free commercial license.
  11. Here is some cheap n simple Editor replace. 78 LoCs import javax.swing.*; import java.awt.*; import java.io.*; import javax.swing.filechooser.FileNameExtensionFilter; public class Editor extends JFrame{ JTextArea text; public static void main(String args[]){ new Editor(); } Editor(){ text=new JTextArea(); text.setMinimumSize(new Dimension(450,650)); setSize(500,700); GroupLayout gl = new GroupLayout(getContentPane()); gl.setVerticalGroup(gl.createSequentialGroup().addComponent(text)); gl.setHorizontalGroup(gl.createSequentialGroup().addComponent(text)); setLayout(gl); JMenuBar mb = new JMenuBar(); JMenu mm = new JMenu("options"); JMenuItem mmm = new JMenuItem("open"); JMenuItem m = new JMenuItem("save"); mm.add(mmm); mm.add(m); mb.add(mm); m.addActionListener( e->{ saveAs(null);}); mmm.addActionListener( e->{ open(null); }); setJMenuBar(mb); setVisible(true);} boolean saveAs(String pfad) { JFileChooser chooser; if (pfad == null) pfad = System.getProperty("user.home"); File file = new File(pfad.trim()); chooser = new JFileChooser(pfad); chooser.setDialogType(JFileChooser.SAVE_DIALOG); FileNameExtensionFilter plainFilter = new FileNameExtensionFilter( "Plaintext: txt, csv", "txt", "csv"); chooser.removeChoosableFileFilter(chooser.getAcceptAllFileFilter()); chooser.setFileFilter(plainFilter); chooser.setDialogTitle("Save as..."); chooser.setVisible(true); int result = chooser.showSaveDialog(this); if (result == JFileChooser.APPROVE_OPTION) { pfad = chooser.getSelectedFile().toString(); try{ FileWriter fw = new FileWriter(new File(pfad)); BufferedWriter bw = new BufferedWriter(fw); bw.write(text.getText()); bw.flush(); bw.close(); }catch(Exception e ){} chooser.setVisible(false); return false; } boolean open(String pfad) { JFileChooser chooser; if (pfad == null) pfad = System.getProperty("user.home"); File file = new File(pfad.trim()); chooser = new JFileChooser(pfad); chooser.setDialogType(JFileChooser.OPEN_DIALOG); FileNameExtensionFilter plainFilter = new FileNameExtensionFilter("Plaintext: txt, csv", "txt", "csv"); chooser.removeChoosableFileFilter(chooser.getAcceptAllFileFilter()); chooser.setFileFilter(plainFilter); chooser.setDialogTitle("Open..."); chooser.setVisible(true); int result = chooser.showSaveDialog(this); if (result == JFileChooser.APPROVE_OPTION) { pfad = chooser.getSelectedFile().toString(); try{ FileReader fr = new FileReader(pfad); BufferedReader br = new BufferedReader(fr); String txt; String ret = new String(); while((txt=br.readLine())!=null) ret+=txt+System.lineSeparator(); text.setText(ret); this.validate(); }catch(Exception e){ } } chooser.setVisible(false); return false; } }
×