Sponsored Content
Full Discussion: Career Path
The Lounge What is on Your Mind? Career Path Post 302639955 by navy on Sunday 13th of May 2012 09:33:32 PM
Old 05-13-2012
Career Path

First I like to say hi to all the people in this community. The reason I am here is because I am lost and looking for advice on my career path.

Here is a short history. I worked in the IT industry for about 10 yrs, sys admin, QA, and developer. During 911 I lost my job. Since then I have been working as a prof. interpreter. Now I am trying to get back into IT. Because I have been away so long now my exp. is also a bit rusty, but still a strong foundation. However, hiring companies want fresh exp.

My questions. How can I get back to IT? What is the best and quick path? Should I get a Unix/Linux certification?

Advices, suggestions or anything is good. I am listening.
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

career help

I just completed my solaris 10 certification, i also plan on learning shell scripting in depth can anyone advise what is the best way to job hunt in this field i have extensive expierience on windows networking and i am based in atlanta, ga Any suggestions??? (0 Replies)
Discussion started by: niravx18
0 Replies

2. What is on Your Mind?

Career Path/Change - Cert Help

This is a very serious post. I am a Cell Technician (Cellular Base Station Tech) who is completely bored because my job has basically evolved into a Field Secretary position. I love working on T1's and troubleshooting equipment outages and so on and so forth but my job has become VERY... (2 Replies)
Discussion started by: CoopDeVille
2 Replies

3. What is on Your Mind?

Unix Career Path

Hi, I've been in the IT field for a few years now, less than 10. I've done a little of everything from database administration, development, systems administration, and unix administration. Although, I wouldnt say I'm a senior level in any of those. Unix definitely stands out in my preferences... (5 Replies)
Discussion started by: NycUnxer
5 Replies

4. Programming

Unix Career path

Hi, I am having experience on Perl and C# and worked as Windows Sytem Admin and now iam planning to become a UNIX developer. I am having knowledge on basic UNIX.. can any one suggest me any good material for c/c++ UNIX programming. on what all things a UNIX Programmer needs to... (0 Replies)
Discussion started by: chandrareddy1
0 Replies

5. UNIX for Dummies Questions & Answers

Career path help

I am working in a company in which my work includes working on Linux nodes. The "uname -arv" command outputs - "Linux clx28ap01 2.6.18-238.12.1.el5 #1 SMP Sat May 7 20:18:50 EDT 2011 x86_64 x86_64 x86_64 GNU/Linux". I generally use various command to stop/start the servers, checking space,... (7 Replies)
Discussion started by: csrohit
7 Replies

6. What is on Your Mind?

Career path help forum

Hi Admins and Moderators, I am already in job for more than 2 years. I need some guidance in deciding the career path. Please suggest what should be the correct forum to post this to ? Rgrds, Rohit Moved thread to appropriate forum. (0 Replies)
Discussion started by: csrohit
0 Replies

7. What is on Your Mind?

UNIX career path

Hi All, This question is regarding career path. I was not sure about which forum I should drop it, so putting it here. I have 12 years of experience on UNIX i.e. majority of Solaris and some of Linux (Suse & Red Hat). Since starting I have been working on 100% administration side and I am not... (0 Replies)
Discussion started by: solaris_1977
0 Replies

8. What is on Your Mind?

UNIX career path for Admin

Hello, Just wanted to have a suggestion on UNIX carrier path and I couldn't found any proper forum/blog where I can put this question better than this one. I have been working on Solaris from past 13 years and some years on Linux. It was completely on Admin side and never on development or... (12 Replies)
Discussion started by: solaris_1977
12 Replies

9. UNIX for Advanced & Expert Users

Command to see the logical volume path, device mapper path and its corresponding dm device path

Currently I am using this laborious command lvdisplay | awk '/LV Path/ {p=$3} /LV Name/ {n=$3} /VG Name/ {v=$3} /Block device/ {d=$3; sub(".*:", "/dev/dm-", d); printf "%s\t%s\t%s\n", p, "/dev/mapper/"v"-"n, d}' Would like to know if there is any shorter method to get this mapping of... (2 Replies)
Discussion started by: royalibrahim
2 Replies
EXP(3)							   BSD Library Functions Manual 						    EXP(3)

NAME
exp, exp2, expm1 -- exponential functions SYNOPSIS
#include <math.h> float expf(float x); double exp(double x); long double expl(long double x); float exp2f(float x); double exp2(double x); long double exp2l(long double x); float expm1f(float x); double expm1(double x); long double expm1l(long double x); float __exp10f(float x); double __exp10(double x); DESCRIPTION
The exp() function computes e**x, the base-e exponential of x. The exp2() function computes 2**x, the base-2 exponential of x. The __exp10() function computes 10**x; it is not defined in the C standard, and therefore may not be portable to other platforms. It is pro- vided as a convenience to programmers because it may be computed more efficiently than pow(10,x). If x is nearly zero, then the common expression exp(x) - 1.0 will suffer from catastrophic cancellation and the result will have little or no precision. The expm1() function provides an alternative means to do this calculation without the risk of significant loss of precision. If you find yourself using this function, you are likely to also be interested in the log1p() function. Note that computations numerically equivalent to exp(x) - 1.0 are often hidden in more complicated expressions; some amount of algebraic manipulation may be necessary to take advantage of the expm1() function. Consider the following example, abstracted from a developer's actual production code in a bug report: double z = exp(-x/y)*(x*x/y/y + 2*x/y + 2) - 2 When x is small relative to y, this expression is approximately equal to: double z = 2*(exp(-x/y) - 1) and all precision of the result is lost in the computation due to catastrophic cancellation. The developer was aware that they were losing precision, but didn't know what to do about it. To remedy the situation, we do a little algebra and re-write the expression to take advan- tage of the expm1() function: exp(-x/y)*(x*x/y/y + 2*x/y + 2) - 2 = (2*exp(-x/y) - 2) + exp(-x/y)*((x*x)/(y*y) + 2*x/y) This transformation allows the result to be computed to a high degree of accuracy as follows: const double r = x/y; const double emrm1 = expm1(-r); double z = 2.0*emrm1 + (1.0 + emrm1)*(2.0 + r)*r; It is not always easy to spot such opportunities for improvement; if an expression involving exp() seems to be suffering from an undue loss of accuracy, try a few simple algebraic operations to see if you can identify a factor with the form exp(x) - 1.0, and substitute expm1(x) in its place. SPECIAL VALUES
exp(+-0) and exp2(+-0) return 1. exp(-infinity) and exp2(-infinity) return +0. exp(+infinity) and exp2(+infinity) return +infinity. expm1(+-0) returns +-0. expm1(-infinity) returns -1. expm1(+infinity) returns +infinity. For all these functions, a range error occurs if the magnitude of x is too large. VECTOR OPERATIONS
If you need to apply the exp() functions to SIMD vectors or arrays, using the following functions provided by the Accelerate.framework may give significantly better performance: #include <Accelerate/Accelerate.h> vFloat vexpf(vFloat x); vFloat vexpm1f(vFloat x); void vvexpf(float *y, const float *x, const int *n); void vvexp(double *y, const double *x, const int *n); void vvexpm1f(float *y, const float *x, const int *n); void vvexpm1(double *y, const double *x, const int *n); void vvexp2f(float *y, const float *x, const int *n); void vvexp2(double *y, const double *x, const int *n); SEE ALSO
log(3), pow(3), math(3) STANDARDS
The exp(), exp2(), and expm1() functions conform to ISO/IEC 9899:2011. 4th Berkeley Distribution August 16, 2012 4th Berkeley Distribution
All times are GMT -4. The time now is 03:46 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy