• Welcome to TechPowerUp Forums, Guest! Please check out our forum guidelines for info related to our community.

Wanna dabble in basic programing

Joined
Jul 21, 2008
Messages
5,175 (0.90/day)
System Name [Daily Driver]
Processor [Ryzen 7 5800X3D]
Motherboard [Asus TUF GAMING X570-PLUS]
Cooling [be quiet! Dark Rock Slim]
Memory [64GB Corsair Vengeance LPX 3600MHz (16GBx4)]
Video Card(s) [PNY RTX 3070Ti XLR8]
Storage [1TB SN850 NVMe, 4TB 990 Pro NVMe, 2TB 870 EVO SSD, 2TB SA510 SSD]
Display(s) [2x 27" HP X27q at 1440p]
Case [Fractal Meshify-C]
Audio Device(s) [Steelseries Arctis Pro]
Power Supply [CORSAIR RMx 1000]
Mouse [Logitech G Pro Wireless]
Keyboard [Logitech G512 Carbon (GX-Brown)]
Software [Windows 11 64-Bit]
I'm military but I've always had a passion for computer related things and recently enrolled into a CIS program. I'm also currently an avid EVE online player and as such I want to try converting one of my many spreadsheets into something a little nicer.

https://docs.google.com/spreadsheet...pKHkQlTjk4L1asuQB27Qur4r5o/edit#gid=775159359

is a link I share with other users in my alliance to determine prices for buying capital ships from me. I'd like to make it a web based app that allows multiple users to use it at once without stepping on eachothers toes. Basically all it does is use the 3 drop downs to get prices based on ship, location and fitting. It also seemed like a great place to start getting my mind ready for programming. It seems like it will be a relatively simple starting point without alot of basic if this then this + this while referencing a db.


Basically what this boils down too..

- What coding language should I start with given the major I just started and task I'm looking to complete.
- Where's a decent free (for now) guide that I can pick at for completing the task at hand.
- Just general tips and advice for the major or this project.
 
Last edited:
Joined
Nov 10, 2006
Messages
4,665 (0.73/day)
Location
Washington, US
System Name Rainbow
Processor Intel Core i7 8700k
Motherboard MSI MPG Z390M GAMING EDGE AC
Cooling Corsair H115i, 2x Noctua NF-A14 industrialPPC-3000 PWM
Memory G. Skill TridentZ RGB 4x8GB (F4-3600C16Q-32GTZR)
Video Card(s) ZOTAC GeForce RTX 3090 Trinity
Storage 2x Samsung 950 Pro 256GB | 2xHGST Deskstar 4TB 7.2K
Display(s) Samsung C27HG70
Case Xigmatek Aquila
Power Supply Seasonic 760W SS-760XP
Mouse Razer Deathadder 2013
Keyboard Corsair Vengeance K95
Software Windows 10 Pro
Benchmark Scores 4 trillion points in GmailMark, over 144 FPS 2K Facebook Scrolling (Extreme Quality preset)
Visual Basic .NET is relatively friendly, but not terribly efficient (not like that matters too much for what it looks like you'd be using it for). It lets you design a GUI before you put code to it. Stick a few elements in for inputs, parse any text boxes to numbers so that "7+9" doesn't equal "79"(convert.ToInt function, I think?), make a button that has a .onclick function to do whatever calculations you want, and you should be done.
As for the IDE, I'd suggest whatever the latest Visual Studio is. Used to be Visual Studio Express was the free one, but it looks like it's now called Visual Studio Community or something.

It's been a while since I've worked with any of that, but that's what we started with in college. Not sure on a guide, but I would imagine Google should have something.

It's typically pretty basic. In pseudo-code, because I don't remember a whole lot of the syntax..
Code:
me.ButtonA.onclick{
    TextboxC = TextboxA + TextboxB
}
Once you get all that in, hit "Compile and run" and test it out.
 
Last edited:
Joined
Jul 21, 2008
Messages
5,175 (0.90/day)
System Name [Daily Driver]
Processor [Ryzen 7 5800X3D]
Motherboard [Asus TUF GAMING X570-PLUS]
Cooling [be quiet! Dark Rock Slim]
Memory [64GB Corsair Vengeance LPX 3600MHz (16GBx4)]
Video Card(s) [PNY RTX 3070Ti XLR8]
Storage [1TB SN850 NVMe, 4TB 990 Pro NVMe, 2TB 870 EVO SSD, 2TB SA510 SSD]
Display(s) [2x 27" HP X27q at 1440p]
Case [Fractal Meshify-C]
Audio Device(s) [Steelseries Arctis Pro]
Power Supply [CORSAIR RMx 1000]
Mouse [Logitech G Pro Wireless]
Keyboard [Logitech G512 Carbon (GX-Brown)]
Software [Windows 11 64-Bit]
hmm ill leave that downloading while on post (currently in afghanistan)
 

FordGT90Concept

"I go fast!1!11!1!"
Joined
Oct 13, 2008
Messages
26,259 (4.63/day)
Location
IA, USA
System Name BY-2021
Processor AMD Ryzen 7 5800X (65w eco profile)
Motherboard MSI B550 Gaming Plus
Cooling Scythe Mugen (rev 5)
Memory 2 x Kingston HyperX DDR4-3200 32 GiB
Video Card(s) AMD Radeon RX 7900 XT
Storage Samsung 980 Pro, Seagate Exos X20 TB 7200 RPM
Display(s) Nixeus NX-EDG274K (3840x2160@144 DP) + Samsung SyncMaster 906BW (1440x900@60 HDMI-DVI)
Case Coolermaster HAF 932 w/ USB 3.0 5.25" bay + USB 3.2 (A+C) 3.5" bay
Audio Device(s) Realtek ALC1150, Micca OriGen+
Power Supply Enermax Platimax 850w
Mouse Nixeus REVEL-X
Keyboard Tesoro Excalibur
Software Windows 10 Home 64-bit
Benchmark Scores Faster than the tortoise; slower than the hare.
Visual Basic .NET is where most CIS programs start predominantly because developing the WinForms UI is stupid easy in Visual Studio. If you have an ASPX host, you can even port a lot of the code behind to ASPX for use in a webpage. C# has the same advantages but it's a harder language to pick up because it is picky on syntax and things like event handlers are more complicated to set up.

& is the string concatenation character in VB or + in C#. System.Convert.ToInt32() can convert a string (or many other types) to an signed 32-bit integer; this is the same in all .NET languages.

VB and C# via Visual Studio can both generate Click event handlers. VB would be something like:
Code:
Private Sub ButtonClicked(ByVal sender As Object, ByVal e As EventArgs) Handles button.Click
  txtC.Text = txtA.Text & txtB.Text
End Sub
Private = can't be accessed outside of the class it resides in
Sub = Subroutine = code that executes but not return anything
Function = code that executes and returns a value (not in the above code but important to know)

ButtonClicked = the name of the subroutine
ByVal = a copy of the source
ByRef = a link to the source (not in the above code but important to know)
sender = a copy of what sent the event, for example, in this case, it would be a copy of "button."
Object = the most primitive type in .NET. It can literally contain anything.
e = event arguments which can contain extra data about the clicked event
EventArgs = the generic event arguments class found at System.EventArgs. MSDN has more information but really not too much to know about it unless you inherit the class for your own purposes. There's already a lot of derivatives of EventArgs in .NET (for example, there's a KeyEventArg that is used in the context of keyboard keystrokes).

Handles = this links an event (something that exists in other code) to actions inside of your code. In this case, it is what to do when a button is clicked.
button = The name of a button on the Windows Form
Click = The name of the event handler that's listening for and notifying of click events on that button.

Visual Studio Express is available for free for non-commercial use.
 
Last edited:
Joined
Jul 21, 2008
Messages
5,175 (0.90/day)
System Name [Daily Driver]
Processor [Ryzen 7 5800X3D]
Motherboard [Asus TUF GAMING X570-PLUS]
Cooling [be quiet! Dark Rock Slim]
Memory [64GB Corsair Vengeance LPX 3600MHz (16GBx4)]
Video Card(s) [PNY RTX 3070Ti XLR8]
Storage [1TB SN850 NVMe, 4TB 990 Pro NVMe, 2TB 870 EVO SSD, 2TB SA510 SSD]
Display(s) [2x 27" HP X27q at 1440p]
Case [Fractal Meshify-C]
Audio Device(s) [Steelseries Arctis Pro]
Power Supply [CORSAIR RMx 1000]
Mouse [Logitech G Pro Wireless]
Keyboard [Logitech G512 Carbon (GX-Brown)]
Software [Windows 11 64-Bit]
I have no idea what any of what you said means.
 
Joined
May 4, 2009
Messages
1,971 (0.36/day)
Location
Bulgaria
System Name penguin
Processor R7 5700G
Motherboard Asrock B450M Pro4
Cooling Some CM tower cooler that will fit my case
Memory 4 x 8GB Kingston HyperX Fury 2666MHz
Video Card(s) IGP
Storage ADATA SU800 512GB
Display(s) 27' LG
Case Zalman
Audio Device(s) stock
Power Supply Seasonic SS-620GM
Software win10
If you have zero coding background, I'd start with something more friendly like Python. You can learn the basics(list management, iteration, looping, etc.) for free from here: http://www.codecademy.com/learn
Then once you feel comfortable with that, try to move on to something tougher like one of the dotNET languages.
 
Joined
Apr 19, 2012
Messages
12,062 (2.75/day)
Location
Gypsyland, UK
System Name HP Omen 17
Processor i7 7700HQ
Memory 16GB 2400Mhz DDR4
Video Card(s) GTX 1060
Storage Samsung SM961 256GB + HGST 1TB
Display(s) 1080p IPS G-SYNC 75Hz
Audio Device(s) Bang & Olufsen
Power Supply 230W
Mouse Roccat Kone XTD+
Software Win 10 Pro
If you have zero coding background, I'd start with something more friendly like Python. You can learn the basics(list management, iteration, looping, etc.) for free from here: http://www.codecademy.com/learn
Then once you feel comfortable with that, try to move on to something tougher like one of the dotNET languages.

I recommend PyCharm for such a task. It's free for all educational institutions, and not quite as ugly as other software.
 

FordGT90Concept

"I go fast!1!11!1!"
Joined
Oct 13, 2008
Messages
26,259 (4.63/day)
Location
IA, USA
System Name BY-2021
Processor AMD Ryzen 7 5800X (65w eco profile)
Motherboard MSI B550 Gaming Plus
Cooling Scythe Mugen (rev 5)
Memory 2 x Kingston HyperX DDR4-3200 32 GiB
Video Card(s) AMD Radeon RX 7900 XT
Storage Samsung 980 Pro, Seagate Exos X20 TB 7200 RPM
Display(s) Nixeus NX-EDG274K (3840x2160@144 DP) + Samsung SyncMaster 906BW (1440x900@60 HDMI-DVI)
Case Coolermaster HAF 932 w/ USB 3.0 5.25" bay + USB 3.2 (A+C) 3.5" bay
Audio Device(s) Realtek ALC1150, Micca OriGen+
Power Supply Enermax Platimax 850w
Mouse Nixeus REVEL-X
Keyboard Tesoro Excalibur
Software Windows 10 Home 64-bit
Benchmark Scores Faster than the tortoise; slower than the hare.
Joined
Jul 21, 2008
Messages
5,175 (0.90/day)
System Name [Daily Driver]
Processor [Ryzen 7 5800X3D]
Motherboard [Asus TUF GAMING X570-PLUS]
Cooling [be quiet! Dark Rock Slim]
Memory [64GB Corsair Vengeance LPX 3600MHz (16GBx4)]
Video Card(s) [PNY RTX 3070Ti XLR8]
Storage [1TB SN850 NVMe, 4TB 990 Pro NVMe, 2TB 870 EVO SSD, 2TB SA510 SSD]
Display(s) [2x 27" HP X27q at 1440p]
Case [Fractal Meshify-C]
Audio Device(s) [Steelseries Arctis Pro]
Power Supply [CORSAIR RMx 1000]
Mouse [Logitech G Pro Wireless]
Keyboard [Logitech G512 Carbon (GX-Brown)]
Software [Windows 11 64-Bit]

HammerON

The Watchful Moderator
Staff member
Joined
Mar 2, 2009
Messages
8,397 (1.52/day)
Location
Up North
System Name Threadripper
Processor 3960X
Motherboard ASUS ROG Strix TRX40-XE
Cooling XSPC Raystorm Neo (sTR4) Water Block
Memory G. Skill Trident Z Neo 64 GB 3600
Video Card(s) PNY RTX 4090
Storage Samsung 960 Pro 512 GB + WD Black SN850 1TB
Display(s) Dell 32" Curved Gaming Monitor (S3220DGF)
Case Corsair 5000D Airflow
Audio Device(s) On-board
Power Supply EVGA SuperNOVA 1000 G5
Mouse Roccat Kone Pure
Keyboard Corsair K70
Software Win 10 Pro
Benchmark Scores Always changing~
Sub'd for curiosity as I have been interested in basic programming as well but no nothing....
 
Joined
Jul 21, 2008
Messages
5,175 (0.90/day)
System Name [Daily Driver]
Processor [Ryzen 7 5800X3D]
Motherboard [Asus TUF GAMING X570-PLUS]
Cooling [be quiet! Dark Rock Slim]
Memory [64GB Corsair Vengeance LPX 3600MHz (16GBx4)]
Video Card(s) [PNY RTX 3070Ti XLR8]
Storage [1TB SN850 NVMe, 4TB 990 Pro NVMe, 2TB 870 EVO SSD, 2TB SA510 SSD]
Display(s) [2x 27" HP X27q at 1440p]
Case [Fractal Meshify-C]
Audio Device(s) [Steelseries Arctis Pro]
Power Supply [CORSAIR RMx 1000]
Mouse [Logitech G Pro Wireless]
Keyboard [Logitech G512 Carbon (GX-Brown)]
Software [Windows 11 64-Bit]
So right now goal is using either pycharm or visual studio, I want to create a web form that can be put on some free website that replaces the spreadsheet linked in the first post.
 

FordGT90Concept

"I go fast!1!11!1!"
Joined
Oct 13, 2008
Messages
26,259 (4.63/day)
Location
IA, USA
System Name BY-2021
Processor AMD Ryzen 7 5800X (65w eco profile)
Motherboard MSI B550 Gaming Plus
Cooling Scythe Mugen (rev 5)
Memory 2 x Kingston HyperX DDR4-3200 32 GiB
Video Card(s) AMD Radeon RX 7900 XT
Storage Samsung 980 Pro, Seagate Exos X20 TB 7200 RPM
Display(s) Nixeus NX-EDG274K (3840x2160@144 DP) + Samsung SyncMaster 906BW (1440x900@60 HDMI-DVI)
Case Coolermaster HAF 932 w/ USB 3.0 5.25" bay + USB 3.2 (A+C) 3.5" bay
Audio Device(s) Realtek ALC1150, Micca OriGen+
Power Supply Enermax Platimax 850w
Mouse Nixeus REVEL-X
Keyboard Tesoro Excalibur
Software Windows 10 Home 64-bit
Benchmark Scores Faster than the tortoise; slower than the hare.
I don't know how to tie in what you posted with what I'm trying to do. Also installed pycharm, giving that a whirl.
Install Visual Studio Express, create a new Visual Basic Windows Forms application, create a button on said form, double click on said button, and you'll see code pop up similar to what I said above. I explained all of its components.


You should probably go with HTML + JavaScript. I would pass on Visual Studio and Python.

You'll need three select boxes each with an OnChange event that calls a function which in turn does all the math.
 
Last edited:
Joined
Jul 21, 2008
Messages
5,175 (0.90/day)
System Name [Daily Driver]
Processor [Ryzen 7 5800X3D]
Motherboard [Asus TUF GAMING X570-PLUS]
Cooling [be quiet! Dark Rock Slim]
Memory [64GB Corsair Vengeance LPX 3600MHz (16GBx4)]
Video Card(s) [PNY RTX 3070Ti XLR8]
Storage [1TB SN850 NVMe, 4TB 990 Pro NVMe, 2TB 870 EVO SSD, 2TB SA510 SSD]
Display(s) [2x 27" HP X27q at 1440p]
Case [Fractal Meshify-C]
Audio Device(s) [Steelseries Arctis Pro]
Power Supply [CORSAIR RMx 1000]
Mouse [Logitech G Pro Wireless]
Keyboard [Logitech G512 Carbon (GX-Brown)]
Software [Windows 11 64-Bit]
Install Visual Studio Express, create a new Visual Basic Windows Forms application, create a button on said form, double click on said button, and you'll see code pop up similar to what I said above. I explained all of its components.


If you want to skip learning the basics and go straight to web development then create an ASP.NET Web Forms project instead.

I'd love to learn the basics.. I just feel like what I got in that post is far from them as literally it's like looking at a foreign language.
 
Joined
Jul 21, 2008
Messages
5,175 (0.90/day)
System Name [Daily Driver]
Processor [Ryzen 7 5800X3D]
Motherboard [Asus TUF GAMING X570-PLUS]
Cooling [be quiet! Dark Rock Slim]
Memory [64GB Corsair Vengeance LPX 3600MHz (16GBx4)]
Video Card(s) [PNY RTX 3070Ti XLR8]
Storage [1TB SN850 NVMe, 4TB 990 Pro NVMe, 2TB 870 EVO SSD, 2TB SA510 SSD]
Display(s) [2x 27" HP X27q at 1440p]
Case [Fractal Meshify-C]
Audio Device(s) [Steelseries Arctis Pro]
Power Supply [CORSAIR RMx 1000]
Mouse [Logitech G Pro Wireless]
Keyboard [Logitech G512 Carbon (GX-Brown)]
Software [Windows 11 64-Bit]
Right now I want to make a embed-able application that can do what is simple on a spreadsheet (get a price based off variables). Baby steps... Visual studio web forms now has me messing with html, css, and randomly placed buttons that i dont know how to link or get to do what I want
 

FordGT90Concept

"I go fast!1!11!1!"
Joined
Oct 13, 2008
Messages
26,259 (4.63/day)
Location
IA, USA
System Name BY-2021
Processor AMD Ryzen 7 5800X (65w eco profile)
Motherboard MSI B550 Gaming Plus
Cooling Scythe Mugen (rev 5)
Memory 2 x Kingston HyperX DDR4-3200 32 GiB
Video Card(s) AMD Radeon RX 7900 XT
Storage Samsung 980 Pro, Seagate Exos X20 TB 7200 RPM
Display(s) Nixeus NX-EDG274K (3840x2160@144 DP) + Samsung SyncMaster 906BW (1440x900@60 HDMI-DVI)
Case Coolermaster HAF 932 w/ USB 3.0 5.25" bay + USB 3.2 (A+C) 3.5" bay
Audio Device(s) Realtek ALC1150, Micca OriGen+
Power Supply Enermax Platimax 850w
Mouse Nixeus REVEL-X
Keyboard Tesoro Excalibur
Software Windows 10 Home 64-bit
Benchmark Scores Faster than the tortoise; slower than the hare.
See my edit. You'll need to familiarize yourself with HTML first. W3Schools.com is a good place to learn the basics. You'll need the HTML, HEAD, BODY, SELECT, and OPTION. If you want to keep it tabular format, you'll also need TABLE, TR (table row), and TD (table division). The whole list of them is available here: http://www.w3schools.com/tags/default.asp

Once you have your HTML document nice and tidy, you'll need to inject the JavaScript code to make it work.
 
Joined
Jul 21, 2008
Messages
5,175 (0.90/day)
System Name [Daily Driver]
Processor [Ryzen 7 5800X3D]
Motherboard [Asus TUF GAMING X570-PLUS]
Cooling [be quiet! Dark Rock Slim]
Memory [64GB Corsair Vengeance LPX 3600MHz (16GBx4)]
Video Card(s) [PNY RTX 3070Ti XLR8]
Storage [1TB SN850 NVMe, 4TB 990 Pro NVMe, 2TB 870 EVO SSD, 2TB SA510 SSD]
Display(s) [2x 27" HP X27q at 1440p]
Case [Fractal Meshify-C]
Audio Device(s) [Steelseries Arctis Pro]
Power Supply [CORSAIR RMx 1000]
Mouse [Logitech G Pro Wireless]
Keyboard [Logitech G512 Carbon (GX-Brown)]
Software [Windows 11 64-Bit]
I.. need a nap.. Haha I've never been more confused about something computer related than I am right now. The issue with the google doc is it can't be used by than 1 person at a time.. That's the primary reason I want to do this. But it's starting to seem easier to just deal with it rather than learn random languages I might not even need for my degree.

I appreciate the help but it's like your throwing parts at me with no way of linking any of it to a bigger idea.
 
Joined
May 4, 2009
Messages
1,971 (0.36/day)
Location
Bulgaria
System Name penguin
Processor R7 5700G
Motherboard Asrock B450M Pro4
Cooling Some CM tower cooler that will fit my case
Memory 4 x 8GB Kingston HyperX Fury 2666MHz
Video Card(s) IGP
Storage ADATA SU800 512GB
Display(s) 27' LG
Case Zalman
Audio Device(s) stock
Power Supply Seasonic SS-620GM
Software win10
Install Visual Studio Express, create a new Visual Basic Windows Forms application, create a button on said form, double click on said button, and you'll see code pop up similar to what I said above. I explained all of its components.


You should probably go with HTML + JavaScript. I would pass on Visual Studio and Python.

You'll need three select boxes each with an OnChange event that calls a function which in turn does all the math.
If you want some kind of a graphic interface online, then yea python is probably not a good idea.
 

FordGT90Concept

"I go fast!1!11!1!"
Joined
Oct 13, 2008
Messages
26,259 (4.63/day)
Location
IA, USA
System Name BY-2021
Processor AMD Ryzen 7 5800X (65w eco profile)
Motherboard MSI B550 Gaming Plus
Cooling Scythe Mugen (rev 5)
Memory 2 x Kingston HyperX DDR4-3200 32 GiB
Video Card(s) AMD Radeon RX 7900 XT
Storage Samsung 980 Pro, Seagate Exos X20 TB 7200 RPM
Display(s) Nixeus NX-EDG274K (3840x2160@144 DP) + Samsung SyncMaster 906BW (1440x900@60 HDMI-DVI)
Case Coolermaster HAF 932 w/ USB 3.0 5.25" bay + USB 3.2 (A+C) 3.5" bay
Audio Device(s) Realtek ALC1150, Micca OriGen+
Power Supply Enermax Platimax 850w
Mouse Nixeus REVEL-X
Keyboard Tesoro Excalibur
Software Windows 10 Home 64-bit
Benchmark Scores Faster than the tortoise; slower than the hare.
But it's starting to seem easier to just deal with it rather than learn random languages I might not even need for my degree.
You should be able to ask what languages your CIS degree will cover.


Visual Studio takes care of virtually all the JavaScript but you still need to be familiar with HTML, VB.NET or C#.NET, and ASP.NET. The ASP.NET compiler takes care of the JavaScript that is necessary to execute the page client-side and a DLL executes the server-side code. For a task this simple, I'd still argue HTML and JavaScript would be best because using .NET, you need to familiarize yourself with a lot.

To put it into context, this should be doable in less than 50 lines of HTML/JavaScript. It would take a lot more than that to do it in ASP.NET because you'd have to author a master (template) page, the page that is viewable, and the code behind that makes it work. That also completely disregards all of the JavaScript ASP.NET imports behind the scenes.
 
Last edited:
Joined
Dec 9, 2013
Messages
911 (0.24/day)
System Name BlueKnight
Processor Intel Celeron G1610 @ 2.60GHz
Motherboard Gigabyte GA-H61M-S2PH (rev. 1.0)
Memory 1x 4GB DDR3 @ 1333MHz (Kingston KVR13N9S8/4)
Video Card(s) Onboard
Storage 1x 160GB (Western Digital WD1600AAJS-75M0A0)
Display(s) 1x 20" 1600x900 (PHILIPS 200VW9FBJ/78)
Case μATX Case (Generic)
Power Supply 300W (Generic)
Software Debian GNU/Linux 8.7 (jessie)
I'd love to learn the basics.
If you want to learn the basics, then I would recommend learning the basics (for beginners):
Basics (site 1)
Basics 2 (site 2, download the book from the site)
Basics 3 (site 3, download the book from the site)
Basics 4 (site 4)

Learn the basics of programming and how computer program really works and it will be much easier to understand and learn high level languages.

Starting with a high level language and not knowing how that actually worked was the biggest mistake I made in my programming life.

I eventually had to learn all that anyway, it is a thing you will not escape (and you should not).

I am just sharing my experience with programming. Other people may disagree, but that was true for me.

Good luck!
 
Joined
Dec 6, 2005
Messages
10,881 (1.62/day)
Location
Manchester, NH
System Name Senile
Processor I7-4790K@4.8 GHz 24/7
Motherboard MSI Z97-G45 Gaming
Cooling Be Quiet Pure Rock Air
Memory 16GB 4x4 G.Skill CAS9 2133 Sniper
Video Card(s) GIGABYTE Vega 64
Storage Samsung EVO 500GB / 8 Different WDs / QNAP TS-253 8GB NAS with 2x10Tb WD Blue
Display(s) 34" LG 34CB88-P 21:9 Curved UltraWide QHD (3440*1440) *FREE_SYNC*
Case Rosewill
Audio Device(s) Onboard + HD HDMI
Power Supply Corsair HX750
Mouse Logitech G5
Keyboard Corsair Strafe RGB & G610 Orion Red
Software Win 10
Joined
Feb 18, 2010
Messages
1,850 (0.36/day)
System Name Eldritch
Processor AMD Ryzen 5 5800X3D
Motherboard ASUS TUF X570 Pro Wifi
Cooling Satan's butthole after going to Taco Bell
Memory 64 GB G.Skill TridentZ
Video Card(s) Vega 56
Storage 6*8TB Western Digital Blues in RAID 6, 2*512 GB Samsung 960 Pros
Display(s) Acer CB281HK
Case Phanteks Enthoo Pro PH-ES614P_BK
Audio Device(s) ASUS Xonar DX
Power Supply EVGA Supernova 750 G2
Mouse Razer Viper 8K
Software Debian Bullseye
Sub'd for curiosity as I have been interested in basic programming as well but no nothing....
Learn Python, it'll teach you good design.

Also, grammar mistakes will get you everywhere you don't want to be.
 

Ahhzz

Moderator
Staff member
Joined
Feb 27, 2008
Messages
8,745 (1.48/day)
System Name OrangeHaze / Silence
Processor i7-13700KF / i5-10400 /
Motherboard ROG STRIX Z690-E / MSI Z490 A-Pro Motherboard
Cooling Corsair H75 / TT ToughAir 510
Memory 64Gb GSkill Trident Z5 / 32GB Team Dark Za 3600
Video Card(s) Palit GeForce RTX 2070 / Sapphire R9 290 Vapor-X 4Gb
Storage Hynix Plat P41 2Tb\Samsung MZVL21 1Tb / Samsung 980 Pro 1Tb
Display(s) 22" Dell Wide/24" Asus
Case Lian Li PC-101 ATX custom mod / Antec Lanboy Air Black & Blue
Audio Device(s) SB Audigy 7.1
Power Supply Corsair Enthusiast TX750
Mouse Logitech G502 Lightspeed Wireless / Logitech G502 Proteus Spectrum
Keyboard K68 RGB — CHERRY® MX Red
Software Win10 Pro \ RIP:Win 7 Ult 64 bit
*sigh* I remember programming in Basic BASIC.... gone are the "good ole days" of Peeking and poking, and gosubs, and returns....
 
Joined
Nov 10, 2006
Messages
4,665 (0.73/day)
Location
Washington, US
System Name Rainbow
Processor Intel Core i7 8700k
Motherboard MSI MPG Z390M GAMING EDGE AC
Cooling Corsair H115i, 2x Noctua NF-A14 industrialPPC-3000 PWM
Memory G. Skill TridentZ RGB 4x8GB (F4-3600C16Q-32GTZR)
Video Card(s) ZOTAC GeForce RTX 3090 Trinity
Storage 2x Samsung 950 Pro 256GB | 2xHGST Deskstar 4TB 7.2K
Display(s) Samsung C27HG70
Case Xigmatek Aquila
Power Supply Seasonic 760W SS-760XP
Mouse Razer Deathadder 2013
Keyboard Corsair Vengeance K95
Software Windows 10 Pro
Benchmark Scores 4 trillion points in GmailMark, over 144 FPS 2K Facebook Scrolling (Extreme Quality preset)
*sigh* I remember programming in Basic BASIC.... gone are the "good ole days" of Peeking and poking, and gosubs, and returns....
10 PRINT "Home"
20 PRINT "Sweet"
30 GOTO 10

Y'know, there are emulators for that kind of stuff.
 

Ahhzz

Moderator
Staff member
Joined
Feb 27, 2008
Messages
8,745 (1.48/day)
System Name OrangeHaze / Silence
Processor i7-13700KF / i5-10400 /
Motherboard ROG STRIX Z690-E / MSI Z490 A-Pro Motherboard
Cooling Corsair H75 / TT ToughAir 510
Memory 64Gb GSkill Trident Z5 / 32GB Team Dark Za 3600
Video Card(s) Palit GeForce RTX 2070 / Sapphire R9 290 Vapor-X 4Gb
Storage Hynix Plat P41 2Tb\Samsung MZVL21 1Tb / Samsung 980 Pro 1Tb
Display(s) 22" Dell Wide/24" Asus
Case Lian Li PC-101 ATX custom mod / Antec Lanboy Air Black & Blue
Audio Device(s) SB Audigy 7.1
Power Supply Corsair Enthusiast TX750
Mouse Logitech G502 Lightspeed Wireless / Logitech G502 Proteus Spectrum
Keyboard K68 RGB — CHERRY® MX Red
Software Win10 Pro \ RIP:Win 7 Ult 64 bit
10 PRINT "Home"
20 PRINT "Sweet"
30 GOTO 10

Y'know, there are emulators for that kind of stuff.
Oh.
My.
God.....


A C64... my first baby.... tape drive and all....


back later, hacking CompuServe.....
 
  • Like
Reactions: xvi
Joined
Apr 15, 2013
Messages
1,261 (0.31/day)
System Name Some computer stuff
Processor Mostly Intel or AMD
Motherboard ATX or mATX
Cooling Bong Cooler
Memory DDR2-4
Video Card(s) A few
Storage Plenty Platters or SSDs or USBs
Display(s) Samsung 23"
Case 5 on the floor
Audio Device(s) There's one for my M7 Gene, Oh I have 3-4 PCI 5.1 ones.Sabrent! lol
Power Supply 750-1000W
Mouse cheap
Keyboard Used ps2 from garage sales
Software Yeah
Benchmark Scores http://hwbot.org/user/schmuckley/#Hardware_Library http://valid.canardpc.com/rbjpbg
VB,C++,assembly
BASIC isn't used anymore.
 
Top