Sponsored Content
The Lounge What is on Your Mind? Can anybody learn how to code? Post 302904560 by Corona688 on Wednesday 4th of June 2014 05:40:49 PM
Old 06-04-2014
As I see it, what programming takes is creativity, thoroughness, and the right kind of obsessive laziness... My programming journey truly began in high-school, when my biology teacher handed me an inane assignment requiring two buckets of dry beans and a blindfold. I was supposed to count out several hundred beans of each kind individually, mix them back together, randomly add and remove them in various ways to simulate "natural selection" then total up the results.

This would have required
1) actually having several hundred dry beans of two colors
2) being willing to paw at them for hours like a 2-year-old in a sandbox

A qbasic program cobbled together in 15 minutes solved it instead. That's the first time I wrote anything that actually saved me time and effort.

That's what it's really for in the end, solving problems. If you find yourself thinking "this is so boring/stupid/repetitive, why doesn't the computer do this?" maybe it should be. It's not a career choice as much as a means to an end. You may find a use for it in lots of IT work but generally, nobody's going to hire you to program awk, shell, C, or whatever -- it's a tool for whatever problem they need to solve.

Most of these computing concepts you're worried about aren't too abstract or complicated. You already know what a loop and multi-dimensional array are, I'm sure. Some things are harder to build than they should be, of course.

Last edited by Corona688; 06-04-2014 at 06:46 PM..
This User Gave Thanks to Corona688 For This Post:
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Where to Learn About HP-UX

can someone give me the link to any site that deals on HP-UX system administration?? Please do not refer me to buy or borrow any books, i just need a free site to learn some quick info from (1 Reply)
Discussion started by: TRUEST
1 Replies

2. UNIX for Dummies Questions & Answers

I want to learn!

Hiya, yes im new to all of this! But want to learn how to use Unix etc, iv been thinking about doin a course but desided im better off learning by my self with help from the people who really no what there doin...you guys! I can install Linux, like redhat, mandrake, susie server edition and so... (5 Replies)
Discussion started by: epic.admin
5 Replies

3. Programming

Learn C or C++

Hi, Apologies if this question has been asked before. I would like to know which language is better to learn in terms of programming in unix? is C dying out and being replaced by C++ or is it a combination of the 2 or just mainly C? Thanks C19 (2 Replies)
Discussion started by: c19h28O2
2 Replies

4. UNIX for Dummies Questions & Answers

How to learn UNIX?

Hey everybody, I am a 25 year old web programmer in Malaysia. I am not hapy with my line of work and I want to do something more. I know asp.net,asp,php and jsp.But they dont really land me in a good promising job wich I realy love. I am more interested in Oracle DBMS. now to be a DBA in Oracle... (7 Replies)
Discussion started by: shounak
7 Replies

5. UNIX for Dummies Questions & Answers

I Want to Learn HP-UX!

What's the best free system to learn HP-UX on? The closest system, hardware requirements and installation instructions. I'm a newbie but determined. Any tips would be great. (6 Replies)
Discussion started by: networkguy
6 Replies

6. Red Hat

Want to learn RedHat

I Want to learn Red hat Linux at free of cost, can any one help me, I am zero in unix. (7 Replies)
Discussion started by: Mustaq
7 Replies

7. UNIX for Dummies Questions & Answers

Best way to learn UNIX

Hi, I am the ultimate noob when it comes to UNIX. Apart from a few basic thing like ls -l and mkdir (and that really is about as good as it gets) I know absolutely nothing about UNIX and I want to learn it and get better! I'm sure like with most things, just getting stuck in and trying... (3 Replies)
Discussion started by: thebdj
3 Replies

8. UNIX for Dummies Questions & Answers

Want to learn

Hi I know only basics of UNIX and i want to know that how can i become a good troubleshooter in unix adminstartion or shell scripting.... i am just a newbie to Unix ..i do not have programming skills as well. Your suggestions are welecomed. (1 Reply)
Discussion started by: nattynitin
1 Replies

9. What is on Your Mind?

You too can learn how to code in a day! ;oO

I am not passing a comment, just waiting to read yours... ;oD Decoded: learn to write computer code in a day - Telegraph Decoded | Technology made human | On Demand, Enterprise, Masterclass (6 Replies)
Discussion started by: wisecracker
6 Replies
GETPRIORITY(2)							System Calls Manual						    GETPRIORITY(2)

NAME
getpriority, setpriority - get/set program scheduling priority SYNOPSIS
#include <sys/resource.h> prio = getpriority(which, who) int prio, which, who; setpriority(which, who, prio) int which, who, prio; DESCRIPTION
The scheduling priority of the process, process group, or user, as indicated by which and who is obtained with the getpriority call and set with the setpriority call. Which is one of PRIO_PROCESS, PRIO_PGRP, or PRIO_USER, and who is interpreted relative to which (a process identifier for PRIO_PROCESS, process group identifier for PRIO_PGRP, and a user ID for PRIO_USER). A zero value of who denotes the current process, process group, or user. Prio is a value in the range -20 to 20. The default priority is 0; lower priorities cause more favorable scheduling. The getpriority call returns the highest priority (lowest numerical value) enjoyed by any of the specified processes. The setpriority call sets the priorities of all of the specified processes to the specified value. Only the super-user may lower priorities. RETURN VALUE
Since getpriority can legitimately return the value -1, it is necessary to clear the external variable errno prior to the call, then check it afterward to determine if a -1 is an error or a legitimate value. The setpriority call returns 0 if there is no error, or -1 if there is. ERRORS
Getpriority and setpriority may return one of the following errors: [ESRCH] No process was located using the which and who values specified. [EINVAL] Which was not one of PRIO_PROCESS, PRIO_PGRP, or PRIO_USER. In addition to the errors indicated above, setpriority may fail with one of the following errors returned: [EPERM] A process was located, but neither its effective nor real user ID matched the effective user ID of the caller. [EACCES] A non super-user attempted to lower a process priority. SEE ALSO
nice(1), fork(2), renice(8) 4th Berkeley Distribution May 22, 1986 GETPRIORITY(2)
All times are GMT -4. The time now is 07:26 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy