473,769 Members | 6,160 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Unix programmer definition

when people say unix programmer, does it mean they write programs in
unix environment,and those programs are run in unix platform? it is not
necessary they are using unix function calls? I heard most of the time
unix programmers are C and C++ programmers.

please advise. thanks!!

Jul 22 '05 #1
5 2728
Hi jrefactors,

As one who has done some programming on a unix platform (Sun/Solaris 8)
for about 5 years now, I feel I can make an attempt at answering your
question. I trust the knowledgable folks in this group will correct
any errors I may make.

When I hear the term "unix programmer" I think of someone who is a
very good C/C++ programmer, as you say, but who is additionally
familiar with the unix way of thinking. That is, they're not afraid of
a command line prompt and don't need a GUI for every program they
use. They're definitely familiar with grep (or egrep or fgrep), and
probably sed, tr, and (gnu)make as well. They use an editor like vi
or emacs or xemacs, yearn for the days when systems were open to the
point where one could ftp or xterm just about anywyhere.

They may also be up on X-windows programming (which I've never done).

Just my $0.02.

--RY
jr********@hotm ail.com writes:
when people say unix programmer, does it mean they write programs in
unix environment,and those programs are run in unix platform? it is not
necessary they are using unix function calls? I heard most of the time
unix programmers are C and C++ programmers.

please advise. thanks!!


--
% Randy Yates % "My Shangri-la has gone away, fading like
%% Fuquay-Varina, NC % the Beatles on 'Hey Jude'"
%%% 919-577-9882 %
%%%% <ya***@ieee.org > % 'Shangri-La', *A New World Record*, ELO
http://home.earthlink.net/~yatescr
Jul 22 '05 #2
In article <fz**********@i eee.org>, Randy Yates <ya***@ieee.org > wrote:
Hi jrefactors,

As one who has done some programming on a unix platform (Sun/Solaris 8)
for about 5 years now, I feel I can make an attempt at answering your
question. I trust the knowledgable folks in this group will correct
any errors I may make.

When I hear the term "unix programmer" I think of someone who is a
very good C/C++ programmer, as you say, but who is additionally
familiar with the unix way of thinking. That is, they're not afraid of
a command line prompt and don't need a GUI for every program they
use. They're definitely familiar with grep (or egrep or fgrep), and
probably sed, tr, and (gnu)make as well. They use an editor like vi
or emacs or xemacs, yearn for the days when systems were open to the
point where one could ftp or xterm just about anywyhere.

They may also be up on X-windows programming (which I've never done).

Just my $0.02.
You might want to take this top post with a grain of salt and "keep the
change". IMO, knowledge of the UNIX shell tools does not a UNIX
programmer make.

--RY
jr********@hotm ail.com writes:
when people say unix programmer, does it mean they write programs in
unix environment,and those programs are run in unix platform? it is not
necessary they are using unix function calls? I heard most of the time
unix programmers are C and C++ programmers.

please advise. thanks!!


Whether you're using a UNIX variant or some other OS, most computers
have ways of doing things that are specific and optimized for that
platform.

Case in point--a company had a CASE tool that ran great on UNIX because
"forking a child process" on UNIX is quick and cheap. fork() and exec()
all you want. child does it's thing, then exit()s. Easy and fast.

On VMS, "spawning a subprocess" is slow and expensive, so you kept it
around and communicated with it using interprocess communication calls.
The VMS version of the CASE tool sucked. The UNIX programmers couldn't
find a way around their design to make it work effectively on VMS.
Eventually that branch of the product died.

A systems programmer would know this sort of thing about how UNIX or VMS
or TOPS-20 or RSX-11 or Solaris did it's thing. The language used is
irrelevant. Understanding how an OS works is more relevant. I've
written a tape copy program in FORTRAN which called VMS system service
calls. Applications programmers who work on programs that run on UNIX
or NT or MVS wouldn't need to know this nor do they tend to care.

--
DeeDee, don't press that button! DeeDee! NO! Dee...

Jul 22 '05 #3

jr********@hotm ail.com wrote:
when people say unix programmer, does it mean they write programs in
unix environment,and those programs are run in unix platform? it is not necessary they are using unix function calls? I heard most of the time unix programmers are C and C++ programmers.

please advise. thanks!!


It means never having to say you're sorry...

Jul 22 '05 #4
Michael Vilain wrote:
In article <fz**********@i eee.org>, Randy Yates <ya***@ieee.org > wrote:
Hi jrefactors,

As one who has done some programming on a unix platform (Sun/Solaris 8)
for about 5 years now, I feel I can make an attempt at answering your
question. I trust the knowledgable folks in this group will correct
any errors I may make.

When I hear the term "unix programmer" I think of someone who is a
very good C/C++ programmer, as you say, but who is additionally
familiar with the unix way of thinking. That is, they're not afraid of
a command line prompt and don't need a GUI for every program they
use. They're definitely familiar with grep (or egrep or fgrep), and
probably sed, tr, and (gnu)make as well. They use an editor like vi
or emacs or xemacs, yearn for the days when systems were open to the
point where one could ftp or xterm just about anywyhere.

They may also be up on X-windows programming (which I've never done).

Just my $0.02.


You might want to take this top post with a grain of salt and "keep the
change". IMO, knowledge of the UNIX shell tools does not a UNIX
programmer make.
--RY
jr********@ho tmail.com writes:
when people say unix programmer, does it mean they write programs in
unix environment,and those programs are run in unix platform? it is not
necessary they are using unix function calls? I heard most of the time
unix programmers are C and C++ programmers.

please advise. thanks!!


Whether you're using a UNIX variant or some other OS, most computers
have ways of doing things that are specific and optimized for that
platform.

Case in point--a company had a CASE tool that ran great on UNIX because
"forking a child process" on UNIX is quick and cheap. fork() and exec()
all you want. child does it's thing, then exit()s. Easy and fast.

On VMS, "spawning a subprocess" is slow and expensive, so you kept it
around and communicated with it using interprocess communication calls.
The VMS version of the CASE tool sucked. The UNIX programmers couldn't
find a way around their design to make it work effectively on VMS.
Eventually that branch of the product died.

A systems programmer would know this sort of thing about how UNIX or VMS
or TOPS-20 or RSX-11 or Solaris did it's thing. The language used is
irrelevant. Understanding how an OS works is more relevant. I've
written a tape copy program in FORTRAN which called VMS system service
calls. Applications programmers who work on programs that run on UNIX
or NT or MVS wouldn't need to know this nor do they tend to care.

Indeed! Designs that work under one O/S can seem incredibly bizarre in
the context of another O/S. I recall, years ago on comp.os.vms, people
from the Unix world wondering why their programs that created 150,000
twenty-three byte files ran like a dog on VMS. File creation is slow
and expensive and creating them all in the same directory made it even
slower and more expensive. A VMS programmer would have created a single
indexed sequential file with 150,000 records; what would have been
filenames in the original design would become keys in the indexed file.
That would have been blazingly fast under VMS but could not have been
done in a native Unix filesystem without writing or buying the software
to create and manipulate an indexed sequential file.

Unix function calls tend to be part of the C runtime library under any
O/S; in other than Unix O/Ss, some parts of the C library form an
"abstractio n layer" that maps to the native system services.
Jul 22 '05 #5
Randy Yates wrote:
Hi jrefactors,

As one who has done some programming on a unix platform (Sun/Solaris 8)
for about 5 years now, I feel I can make an attempt at answering your
question. I trust the knowledgable folks in this group will correct
any errors I may make.

When I hear the term "unix programmer" I think of someone who is a
very good C/C++ programmer, as you say, but who is additionally
familiar with the unix way of thinking. That is, they're not afraid of
a command line prompt and don't need a GUI for every program they
use. They're definitely familiar with grep (or egrep or fgrep), and
probably sed, tr, and (gnu)make as well. They use an editor like vi
or emacs or xemacs, yearn for the days when systems were open to the
point where one could ftp or xterm just about anywyhere.

They may also be up on X-windows programming (which I've never done).

Just my $0.02.

--RY


Amen!

--
Regards,
Stan Milam.
-----------------------------------------------------------------------------
Vita Brevis. Carpe Guitarum! - Jamie Kinscherff
-----------------------------------------------------------------------------
Jul 22 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
13918
by: Varun Yagain | last post by:
hi, please do let me know how i can change the directory through my program and retain it too after i exit; if there's a way to do it. regards, varun yagain.
22
3080
by: Ryan M | last post by:
I've been programming for a while, but most of my experience is on unix. How do C compilers work on operating systems that weren't written in C? And that have no libc? Compiling C on unix seems so easy. Everything in the code either goes right to machine code, or links to a C library (often libc) or links to the kernel. Are there libc equivalents on non-unix OSes? -- Using M2, Opera's revolutionary e-mail client:...
4
3614
by: Alan | last post by:
Is anyone know the equivalent term used for Dynamic Link Library (DLL) in unix environment?? Thanks Alan
4
391
by: jrefactors | last post by:
when people say unix programmer, does it mean they write programs in unix environment,and those programs are run in unix platform? it is not necessary they are using unix function calls? I heard most of the time unix programmers are C and C++ programmers. please advise. thanks!!
3
2051
by: Nikola Milutinovic | last post by:
Hi guys. I have just had some problems resolved while building PostgreSQL 7.4.2 on Tru64 UNIX 5.1B. File "./src/backend/utils/adt/float.c" uses "NAN" on two spots. It ahs a fall-back definition of NAN as: #define NAN 0.0/0.0
4
2371
by: Michael | last post by:
Hi, I'm having difficulty finding any previous discussion on this -- I keep finding people either having problems calling os.exec(lepev), or with using python's exec statement. Neither of which I mean here. Just for a moment, let's just take one definition for one of the
21
3038
by: Tom Gur | last post by:
Hi, It's seems that csh and tcsh acts a bit different when handling special characters in quotes. i.e: if i'll supply my program with the following arguments: -winpath "c:\\temp\\" tcsh will take it as -winpath "c:\temp\" and csh will take it literally (with the double-slashes). Is there a way for me to know what shell is currently running my
65
5095
by: Hongyu | last post by:
Dear all: I am trying to write to a file with full directory name and file name specified (./outdir/mytestout.txt where . is the current directory) in C programming language and under Unix, but got errors of Failed to open file ./outdir/mytestout.txt. Below is the code: #include <stdio.h>
0
9423
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10211
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9994
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8872
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7409
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6673
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5299
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5447
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3562
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.