Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 03-02-2008, 03:37 PM   #1 (permalink)
The Computer Kid :D
 
Location: 127.0.0.1
Learning Programming/Database Languages?

I've always wanted to take up learning a language. All I really know is some basic scripting for various things, including a little batch scripting, as well as some HTML. I took QBASIC/VBASIC a few years ago in High School but I just kind of waddled my way through those classes because I didn't give a rat's ass.

Is it worth taking courses at a community college? Currently I'm going to a 4-Year for a BS in Engineering, yet if I take CS-related courses they do me no good. Is there any such thing as an associates degree in CS?
MikeSty is offline  
Old 03-02-2008, 04:08 PM   #2 (permalink)
Darth Papa
 
ratbastid's Avatar
 
Location: Yonder
What sort of apps do you want to build? For web application building, it doesn't get much easier to jump into than PHP.

For scripting purposes, you can learn to write .bat files for Windows or BASH (or other shell) scripts for OSX or Linux. Visual Basic is an okay place to start to write simple desktop apps for Windows, although there are those who say it will damage you for life if you ever want to use a "real" language.

Ruby is a nice introduction to Object Orientation, and it has bindings for the Windows API, so you can write a Windows application in it, and it's still technically a scripting language, so you don't have to worry about compilation.

If you're an engineering student, you're plenty smart to pick this up on your own. Get thee to Barnes and Noble's Computer section and pick out the book published by O'Reilley that seems to best describe the language you're choosing. Don't short-cut it and buy a "cookbook", buy something with "Programming" in its name. I really recommend O'Reilley--they may be a bit stronger in the Linux world than in Windows, but they're still the best tech book publisher out there.
ratbastid is offline  
Old 03-02-2008, 08:58 PM   #3 (permalink)
The Computer Kid :D
 
Location: 127.0.0.1
I really don't have a particular goal. Just something I can play with, create a little something-something with, and least importantly, add some leverage to my resume.

I really appreciate your insight. I wouldn't mind hitting up B&N or Borders. Unfortunately I don't think there are any too close to me at college. I'll see what I can do.
MikeSty is offline  
Old 03-02-2008, 09:48 PM   #4 (permalink)
Junkie
 
The only thing I'd add to what ratbastid said is to check out Python as well. It's a pretty simple language to learn and it's pretty powerful.
__________________
"Fuck these chains
No goddamn slave
I will be different"
~ Machine Head
spectre is offline  
Old 03-03-2008, 12:59 AM   #5 (permalink)
Junkie
 
Location: Melbourne, Australia
I think it's got to be in some area that you are interested in yes? Otherwise you're less likely to get far.

I'd steer clear of the hard-core languages actually... There's no point trying to compete with the comp-sci set. There's a lot of them these days, they're serious, and they're mad keen for jobs (particularly given the outsourcing situation).

One thing that could be useful is to learn how to build small applications using VBA, so that you can automate stuff in Access and Excel. This is plenty useful and quite powerful for an eng. situation. After all - most corporates use MS.

You can always build on this later.

Other than that, if you have a specific hobby (web, home automation, design, photography, astronomy.. ?) I'd suggest you pick something that dovetails with that.
Nimetic is offline  
Old 03-03-2008, 05:14 AM   #6 (permalink)
Darth Papa
 
ratbastid's Avatar
 
Location: Yonder
I agree with Nimetic: don't start with C, C++, Java, or anything more than 10 years old (except perhaps Perl, which was my first language and is a great introduction to logic).
ratbastid is offline  
Old 03-03-2008, 10:59 AM   #7 (permalink)
The Computer Kid :D
 
Location: 127.0.0.1
That's helpful. I really have no intention of competing with the CS core. I'm doing Industrial/Systems engineering, which is a rather broad field, so having skills like basic programming are helpful.

Quote:
Originally Posted by Nimetic
One thing that could be useful is to learn how to build small applications using VBA, so that you can automate stuff in Access and Excel. This is plenty useful and quite powerful for an eng. situation. After all - most corporates use MS.

You can always build on this later.

Can you elaborate on that a little more? I'd like to think I'm fairly proficient with MS Excel (I know most of the formulas, know how to make graphs, but that's nothing too special) -- but I really don't know anything about MS Access. Is that anything worth learning?

I've heard a lot of good things about Lisp and Python, as well as Ruby/Ruby on Rails, but that's primarily web development and there's a lot of hype.
MikeSty is offline  
Old 03-03-2008, 11:12 AM   #8 (permalink)
Lover - Protector - Teacher
 
Jinn's Avatar
 
Location: Seattle, WA
MS Access is the bottom of the DB food chain. It works, but it's terrible for anything beyond a small (40ish) user base. It's probably worth learning if you intend to work at smaller companies, like startups and "shops." The vast majority of 'corporate' or 'enterprise' level companies use MS SQL or Oracle DB. Postgre SQL and mySQL are gaining ground, but don't even approach the user base of Oracle or MS SQL.

I think a "novice skillset" should include knowledge of all the core relational database concepts, including SQL commands, ADD, UPDATE, INSERT, DELETE, etc., with good knowledge of how joins work. These commends, with minor syntactical difference, will apply to any real database system you're asked to use, especially if you have general relational DB concepts down.

Likewise, a "novice skillset" should include PHP/Perl/Apache knowledge if you anticipate web-centered corporations. C# or Java would be nice for OO knowledge, and both have large following. The largest 'home and professional' software vendor (MS) is using C# almost exclusively, and the largest enterprise software company in the world (Oracle) is using Java exclusively. Become familiar with objects and control statements in both languages, at the very least.
__________________
"I'm typing on a computer of science, which is being sent by science wires to a little science server where you can access it. I'm not typing on a computer of philosophy or religion or whatever other thing you think can be used to understand the universe because they're a poor substitute in the role of understanding the universe which exists independent from ourselves." - Willravel
Jinn is offline  
Old 03-03-2008, 11:26 AM   #9 (permalink)
Darth Papa
 
ratbastid's Avatar
 
Location: Yonder
Quote:
Originally Posted by JinnKai
MS Access is the bottom of the DB food chain. It works, but it's terrible for anything beyond a small (40ish) user base.
Wow, that's generous. I've seen Access applications grind to a halt with three users and less than 10k records. Nobody should be using it for anything more demanding than organizing recipes or keeping a catalog of CDs.

However, it does make a very usable interface to a real database over ODBC. I have a client who interfaces with MySQL on his web server over Access/ODBC, and it works great for him. There's latency, since the data is over the Internet rather than right there on disc, but the app itself is rock solid.
ratbastid is offline  
Old 03-03-2008, 04:48 PM   #10 (permalink)
Junkie
 
Location: Melbourne, Australia
For sure. Access is disliked by the IT community, and so is Excel. Screw that. I'm a DB professional and have worked with over probably a dozeon companies, half of them international ones. What I say is... ignore the IT high priests and do your stuff.

Major stakeholders will fund IT to get on board later if they need to scale the system to a large user base. Lots of systems though don't have that many users. This web stuff can be overkill.

Anyways... Excel continues to be a corporate mainstay. MS Access I like somewhat less - because it used to freeze up if pointed to an ERP system (or used to with older object models). It's probably not so bad now. For those who don't know what I mean here.... Access can use local tables, but it can also be used as a front end to remote tables living in Oracle,DB2,SQLServer etc. That is where things can (but not necessarily) get nasty if

- there's lots of tables on the remote system (ERP have 10-30thousand), or
- you are going to deal with more than one concurrent user, or
- the remote system is on another site... link speed is critical

Other than that, if you have one-two users. Access can be nice.

Either way. the underlying macro language (Excell/Access) is VB for Applications. This is useful to know because it can also be used with other MS products. ASP (the MS web server) uses VB script. So does windows scripting.

For an engineer out on site - the ability to roll their own DB is important in my view.. Ditto with advanced spreadsheet manipulation (a statistician friend loved it, for matrix manipulation).

Often.. the most important thing here is to get prototypes up. If a large number of users are required... sure, give it to IT and have them upgrade it. Threaten to do something yourself and they might jump eh.

Last edited by Nimetic; 03-03-2008 at 07:55 PM.. Reason: Automerged Doublepost
Nimetic is offline  
Old 03-03-2008, 08:08 PM   #11 (permalink)
The Computer Kid :D
 
Location: 127.0.0.1
That's quite interesting. We have done a little excel work. We had a few problems where it was optional to use excel to compute summations. I did use excel because I'm rather adept and it worked out well - I had a very, very low percent error and a very, very high grade

On a side note I have a cousin doing agriculture study and calculating total energy input/output using massive spreadsheets. Just kind of cool.

I ran a small webserver once. It ran Windows Server 2000. I threw Apache on there with MySQL. I figured out how to do Apache, and since I knew HTML and a little flash, I had fun with that. Never really got into the MySQL but I understand the basics of it. I tried doing some hand-scripting, and then attempted to use a program to set up databases. I never really did anything worthwhile.

What the hell is VBA, if I may ask?

I agree though, it is a nice basic skill to have to be able to whip things up out in the field. Regardless of bolstering my resume, having skills like this helps out in a lot of odd situations.
MikeSty is offline  
Old 03-04-2008, 05:23 PM   #12 (permalink)
Crazy
 
Quote:
Originally Posted by ratbastid
I agree with Nimetic: don't start with C, C++, Java, or anything more than 10 years old (except perhaps Perl, which was my first language and is a great introduction to logic).
Why not start with anything that is 10 years old?
Ruby is at or near 10 years http://en.wikipedia.org/wiki/Ruby_%2...ng_language%29.
Python is seventeen http://en.wikipedia.org/wiki/Python_...ng_language%29.

Just curious.

I would not put any language on my resume after I've only tinkered with it for a little while. A decent interviewer can usually spot resumes and interviewees that have been padded. So just make sure you are comfortable answering several questions about any language you put on your resume.
__________________
Even if you stop the clock, it gives the right time twice a day.
Once we get out of the eighties, the nineties are going to make the sixties look like the fifties.

Last edited by kofspades; 03-04-2008 at 05:27 PM..
kofspades is offline  
Old 03-04-2008, 07:28 PM   #13 (permalink)
Darth Papa
 
ratbastid's Avatar
 
Location: Yonder
Quote:
Originally Posted by kofspades
Why not start with anything that is 10 years old?
Ruby is at or near 10 years http://en.wikipedia.org/wiki/Ruby_%2...ng_language%29.
Python is seventeen http://en.wikipedia.org/wiki/Python_...ng_language%29.

Just curious.
I couldn't think of any good way to say "not COBOL or FORTRAN or any old-school mainframe nonsense like that". Probably should have said nothing more than 25 years old, as that would have ruled out C as well...
ratbastid is offline  
Old 03-04-2008, 09:13 PM   #14 (permalink)
Cracking the Whip
 
Lebell's Avatar
 
Location: Sexymama's arms...
Humph, I learned on Pascal, and that was good enough for me!!

Anyway, dear Ratbastid sensibilites not withstanding, a VB .net programmer will never go hungry
__________________
"Of all tyrannies, a tyranny exercised for the good of its victims may be the most oppressive. It may be better to live under robber barons than under omnipotent moral busybodies. The robber baron's cruelty may sometimes sleep, his cupidity may at some point be satiated; but those who torment us for our own good will torment us without end, for they do so with the approval of their own conscience." – C. S. Lewis

The ONLY sponsors we have are YOU!

Please Donate!
Lebell is offline  
Old 03-09-2008, 05:54 PM   #15 (permalink)
Junkie
 
Location: Melbourne, Australia
VBA is just "Visual Basic for Applications".

(... although MS marketing have probably renamed it by now).

It's the macro language supported in MS Office. ie Excel, Word, Access. It's supported somewhat in various other tools also... MS Project, Visio and third party Windows apps.

It's really just a cut down version of VB. As I understand it... I'm no VB expert really. (but I use VB, VBA and VBscript occasionally).

Lets be honest... these are mongrel languages. Using these... well it's about as sexy as driving a tractor. You'll pick up some odd habits and will curse a bit.
Nimetic is offline  
Old 03-14-2008, 03:29 PM   #16 (permalink)
Crazy
 
If you are going for an engineering degree and want something to beef up your resume then I think you should go with something more mainstream like Java. While Phython and Ruby are good languages I think having Java on a resume over those would be more impressive. I've been programming for almost 20 years now. Started with Pascal and then moved to C and C++ and now use C# mostly. When I look at Ruby I go WTF. I can look at Java and understand it and even maintain it. I think someone who starts with Java could move to C like languages very easily whereas someone starting with Ruby might go WTF too.

As for databases, MySQL and Oracle XE are great databases.
TheFu is offline  
Old 03-19-2008, 09:07 AM   #17 (permalink)
The Computer Kid :D
 
Location: 127.0.0.1
Thanks. Last semester we did stuff with Mathematica and we just started MatLab today. Doesn't really qualify as anything advanced, but it works. It reminds me of VB in HS when we'd make stupid applications, sometimes stuff that didn't even function, it just looked fancy.
MikeSty is offline  
 

Tags
languages, learning, programming or database


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 09:22 AM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360