Jump to content

Electric_Boi

Member
  • Posts

    11
  • Joined

  • Last visited

Everything posted by Electric_Boi

  1. Here is server, memory is supported according to Supermicro's site, load ESXi 6.7 on it and create VM's. (You can check Supermicro's website for specs or compatibility questions). It has 24c/48t CPU w/ 128 PCI-e lanes & ECC memory support. I think it won't be any bottlenecks and it will run quad channel. PCPartPicker part list / Price breakdown by merchant Storage: Samsung - 860 Pro 512GB 2.5" Solid State Drive ($196.10 @ OutletPC) Storage: Crucial - MX500 2TB 2.5" Solid State Drive ($414.99 @ SuperBiiz) Power Supply: EVGA - SuperNOVA T2 1000W 80+ Titanium Certified Fully-Modular ATX Power Supply ($269.89 @ OutletPC) Other: Rosewill Server Chassis/Server Case/Rackmount Case, 4U Metal Rack Mount Server Chassis with 8 Bays E-ATX ($94.99 @ Amazon) Other: Dynatron A26 2U Active Aluminum Heatsink with Heatpipe Embedded for AMD EPYC Socket SP3 ($38.41 @ Newegg) Other: AMD EPYC 7401P 24-Core 2.0 GHz (3.0 GHz Turbo) Socket SP3 155W/170W PS740PBEAFWOF Server Processor ($1191.67 @ Newegg) Other: H11 AMD EPYC UP PLATFORM ($441.00 @ Amazon) Other: Supermicro Certified MEM-DR480L-HL02-ER26 Hynix HMA81GR7AFR8N-VK 8GB DDR4-2666 ECC REG DIMM ($179.99 @ Amazon) Other: Supermicro Certified MEM-DR480L-HL02-ER26 Hynix HMA81GR7AFR8N-VK 8GB DDR4-2666 ECC REG DIMM ($179.99 @ Amazon) Other: Supermicro Certified MEM-DR480L-HL02-ER26 Hynix HMA81GR7AFR8N-VK 8GB DDR4-2666 ECC REG DIMM ($179.99 @ Amazon) Other: Supermicro Certified MEM-DR480L-HL02-ER26 Hynix HMA81GR7AFR8N-VK 8GB DDR4-2666 ECC REG DIMM ($179.99 @ Amazon) Total: $3367.01 Prices include shipping, taxes, and discounts when available Generated by PCPartPicker 2018-07-30 06:52 EDT-0400
  2. Package managment Ability to switch GUI if I don't like it (I currently use i3wm on Ubuntu 16.04.4) Resource managment Terminal (My god, genius created that app, it makes life so much easier) Ability to choose distros ZFS support Stability ...
  3. IMO Windows 8 was great with additional program (Classic Shell) and 8.1 update, while Vista and ME were very unstable. I use Windows 8.1 in every single Windows VM that I deploy for testing. My vote goes to 10 cause its telemetry which I don't like, random restarts costed me unrecoverable 100 lines of code, metro apps (They are cancer, they keep coming back while on 8.1 I just disable them). I hate Win 10 and I will never go to that shi*ty OS. I currently use virtualized Win 7 & Ubuntu 16.04.4 on unRAID
  4. @WereCatf Hey, sorry for bothering can you help me with this issue lol ?
  5. Save up a bit and go with GTX 1060 6 GB
  6. Its still same, I moved and retweaked code a bit #Importing timing command & more advanced math functions import time import math #Navigation & Interface (It contains loop that allows application to be re-executed without being closed & opened again & navigate through application) while (True): print('╔══════════════════════════════════════════════╗') print('║ Kalkulator (Development Phase) ║') print('╠══════════════════════════════════════════════╣') print('║ Lista operacija ║') print('║ 1. Zbrajanje 7. Korijenovanje ║') print('║ 2. Oduzimanje ║') print('║ 3. Mnozenje ║') print('║ 4. Dijeljenje ║') print('║ 5. Usporedba ║') print('║ 6. Kvadriranje ║') print('║ Q. Izlaz ║') print('╚══════════════════════════════════════════════╝') #Choosing operations and defining software a task choice = input ('Odaberi operaciju (1/2/3/4/5/6/7/8/Q):') if choice == 'q': break if choice == 'Q': break #Entering, defining variables and mathematical operations for software if choice == '1': def zbrajanje (x, y): return x+y a = float (input ('Unesi prvi pribrojnik: ')) b = float (input ('Unesi drugi pribrojnik: ')) print ('=========================================================') print ('Zbroj je', zbrajanje (a,b)) print ('=========================================================') time.sleep(2) print (a, '+' , b,'=', zbrajanje (a,b)) print ('=========================================================') time.sleep(4) print ("\n" * 100) elif choice == '2': def oduzimanje (x, y): return x-y a = float (input ('Unesi umanjenika: ')) b = float (input ('Unesi umanjitelja: ')) print ('=========================================================') print ('Razlika je', oduzimanje (a,b)) print ('=========================================================') time.sleep(2) print (a, '-', b, '=', oduzimanje (a, b)) print ('=========================================================') time.sleep(4) print ("\n" * 100) elif choice == '3': def mnozenje (x, y): return x*y a = float (input ('Unesi prvi faktor: ')) b = float (input ('Unesi drugi faktor: ')) print ('=========================================================') print ('Umnozak je', mnozenje (a,b)) print ('=========================================================') time.sleep(2) print (a, '*', b,'=', mnozenje (a, b)) print ('=========================================================') time.sleep(4) print ("\n" * 100) elif choice == '4': def dijeljenje (x, y): return x/y a = float (input ('Unesi dijeljenika: ')) b = float (input ('Unesi dijeljitelja: ')) print ('=========================================================') print ('Kolicnik je', dijeljenje (a,b)) print ('=========================================================') time.sleep(2) print (a, '/' , b,'=', dijeljenje (a,b)) print ('=========================================================') time.sleep(4) print ("\n" * 100) elif choice == '5': a = float (input ('Unesi prvi broj za usporedbu: ')) b = float (input ('Unesi drugi broj za usporedbu: ')) if a > b: print ('==============') print ('A je veci od B') print ('==============') time.sleep(5) print ("\n" * 100) elif a < b: print ('===============') print ('A je manji od B') print ('===============') time.sleep(5) print ("\n" * 100) else: print ('=============') print ('A je jednak B') print ('=============') time.sleep(5) print ("\n" * 100) elif choice == '6': kvadriranje = input ('Odaberi koliko puta hoćeš kvadrirat broj 2/3/4/5/6/7:') if kvadriranje == '2': def kvadriranjedva (x): return x*x a = float (input ('Unesi broj za kvadriranje: ')) print ('=========================================================') print ('Rezultat je', kvadriranjedva (a)) print ('=========================================================') time.sleep(2) print (a, '*', a,'=', kvadriranjedva (a)) print ('=========================================================') time.sleep(4) print ("\n" * 100) elif kvadriranje == '3': def kvadriranjetri (x): return x*x*x a = float (input ('Unesi broj za kvadriranje: ')) print ('=========================================================') print ('Rezultat je', kvadriranjetri (a)) print ('=========================================================') time.sleep(2) print (a, '*', a, '*',a, '=', kvadriranjetri (a)) print ('=========================================================') time.sleep(4) print ("\n" * 100) elif kvadriranje == '4': def kvadriranjecetiri (x): return x*x*x*x a = float (input ('Unesi broj za kvadriranje: ')) print ('=========================================================') print ('Rezultat je', kvadriranjecetiri (a)) print ('=========================================================') time.sleep(2) print (a, '*', a, '*', a, '*', a, '=', kvadriranjecetiri (a)) print ('=========================================================') time.sleep(4) print ("\n" * 100) elif kvadriranje == '5': def kvadriranjepet (x): return x*x*x*x*x a = float (input ('Unesi broj za kvadriranje: ')) print ('=========================================================') print ('Rezultat je', kvadriranjepet (a)) print ('=========================================================') time.sleep(2) print (a, '*', a, '*', a, '*', a, '*', a, '=', kvadriranjepet (a)) print ('=========================================================') time.sleep(4) print ("\n" * 100) elif kvadriranje == '6': def kvadriranjesest (x): return x*x*x*x*x*x a = float (input ('Unesi broj za kvadriranje: ')) print ('=========================================================') print ('Rezultat je', kvadriranjesest (a)) print ('=========================================================') time.sleep(2) print (a, '*', a, '*', a, '*', a, '*', a, '*', a, '=', kvadriranjesest (a)) print ('=========================================================') time.sleep(4) print ("\n" * 100) elif kvadriranje == '7': def kvadriranjesedam (x): return x*x*x*x*x*x*x a = float (input ('Unesi broj za kvadriranje: ')) print ('=========================================================') print ('Rezultat je', kvadriranjesedam (a)) print ('=========================================================') time.sleep(2) print (a, '*', a, '*', a, '*', a, '*', a, '*', a, '*', a, '*', '=', kvadriranjesedam (a)) print ('=========================================================') time.sleep(4) print ("\n" * 100) else: print('Nepravilni unos') print("\n" * 100) elif choice == '7': def korijenovanje (x): return math.sqrt(x) a = float (input ('Unesi broj za korijenovanje: ')) print ('=========================================================') print ('Rezultat je', korijenovanje (a)) print ('=========================================================') time.sleep(2) print (a, '/', '√', '=', korijenovanje (a)) print ('=========================================================') time.sleep(4) print ("\n" * 100) elif choice == '8': print("\n" * 100) print('╔══════════════════════════════════════════════╗') print('║ Geometrija (Development phase) ║') print('╠══════════════════════════════════════════════╣') print('║ Lista operacija ║') print('║ ║') print('║ ║') print('║ ║') print('║ ║') print('║ ║') print('║ ║') print('║ Q. Izlaz ║') print('╚══════════════════════════════════════════════╝') else: print('Nepravilni unos') print ("\n" * 100)
  7. Hello again LTT community , I have bypassed some hard challenges on my road to make calculator but when I want to open my 6th menu (Napredna matematika (Serb/Croat) = Advanced Mathematics), it opens whole menu again and that menu on top of it. #Importing timing command & more advanced math functions import time import math #Mathematical operations (It contains math operations that allow software to calculate and finish his task) def zbrajanje (x, y): return x+y def oduzimanje (x, y): return x-y def mnozenje (x, y): return x*y def dijeljenje (x, y): return x/y while (True): #Navigation & Interface (It contains loop that allows application to be re-executed without being closed & opened again & navigate through application) print('╔══════════════════════════════════════════════╗') print('║ Kalkulator (Development Phase) ║') print('╠══════════════════════════════════════════════╣') print('║ Lista operacija ║') print('║ 1. Zbrajanje ║') print('║ 2. Oduzimanje ║') print('║ 3. Mnozenje ║') print('║ 4. Dijeljenje ║') print('║ 5. Usporedba ║') print('║ 6. Napredna matematika ║') print('║ 7. Geometrija ║') print('║ Q. Izlaz ║') print('╚══════════════════════════════════════════════╝') #Choosing operations and defining software a task choice = input ('Odaberi operaciju (1/2/3/4/5/6/7/Q):') if choice == 'q': break if choice == 'Q': break #Entering and defining variables for software if choice == '1': a = int (input ('Unesi prvi broj: ')) b = int (input ('Unesi drugi broj: ')) print ('===============================') print (a, '+' , b,'=', zbrajanje (a,b)) print ('===============================') time.sleep(5) print ("\n" * 100) elif choice == '2': a = int (input ('Unesi prvi broj: ')) b = int (input ('Unesi drugi broj: ')) print ('===============================') print (a, '-' , b,'=', oduzimanje (a,b)) print ('===============================') time.sleep(5) print ("\n" * 100) elif choice == '3': a = int (input ('Unesi prvi broj: ')) b = int (input ('Unesi drugi broj: ')) print ('===============================') print (a, '*' , b,'=', mnozenje (a,b)) print ('===============================') time.sleep(5) print ("\n" * 100) elif choice == '4': a = int (input ('Unesi prvi broj: ')) b = int (input ('Unesi drugi broj: ')) print ('===============================') print (a, '/' , b,'=', dijeljenje (a,b)) print ('===============================') time.sleep(5) print ("\n" * 100) elif choice == '5': a = int (input ('Unesi prvi broj: ')) b = int (input ('Unesi drugi broj: ')) if a > b: print ('==============') print ('A je veci od B') print ('==============') time.sleep(5) print ("\n" * 100) elif a < b: print ('===============') print ('A je manji od B') print ('===============') time.sleep(5) print ("\n" * 100) else: print ('=============') print ('A je jednak B') print ('=============') time.sleep(5) print ("\n" * 100) else: print('Nepravilni unos') print ("\n" * 100) if choice == '6': print('╔══════════════════════════════════════════════╗') print('║ Napredna Matematika ║') print('╠══════════════════════════════════════════════╣') This is my whole code, if anyone can assist me on this issue, I would be very thankful.
  8. @WereCatf Hey, thanks for help, do you know any way to connect 2 python files in code line ? I want to seperate some parts of that software (Geometry, algebra...).
  9. Thank you so much, it works just as I expected.
  10. Hello, LTT community. I hope you can help me resolve a little puzzle, so I started getting in Python (a month ago). I was pretty confident that I can code a little piece of software. I started with calculator. This is my current code : I created basic functions to add, subtract, multiply and divide (More advanced math will be implemented later in software). Every time software finishes his tasks it quits, I want it to go back to start menu. Is there any way to do it without rewriting whole code ? BTW : Software is on Serbian
×