Sponsored Content
Full Discussion: Career Change
Top Forums UNIX for Dummies Questions & Answers Career Change Post 8261 by LivinFree on Tuesday 9th of October 2001 06:04:32 AM
Old 10-09-2001
HP-UX is a good choice, although not the easiest on the wallet to master Smilie .

Check out:
http://www.education.hp.com/curr-hpux.htm

I've never taken any of the courses, but I do have a copy of the Fundamentals Of Unix workbook. I think it's a pretty good learning tool, takes you from the beginning, all the way to basic administration. If you're willing to commit to HP-UX, you can get one of the lower-end Visualize workstations loaded with HP-UX 11.0 for the price of a mid-to-higher end PC. Lot's more power though Smilie
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Career

Who in here works as an Unix administrator? I currently finishing up my BS Technical Management and im considering going into Unix base environment, if anybody is already in the field what do you recommended for a fresh meat like me, i currently studying to go for my solaris 10 certification as... (3 Replies)
Discussion started by: Gueso
3 Replies

2. 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

3. 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

4. AIX

Need career advice please

Hi all, I'm a Solaris/linux sysadmin with a good general UNIX skills and with a little tiny background on AIX with no exposure to IBM's hardware ( just reading ) , but i think i can cope with it . UNIX jobs nowadays are rare here ( i mean hp-ux , solaris , aix ) not linux specially after the... (6 Replies)
Discussion started by: h@foorsa.biz
6 Replies

5. What is on Your Mind?

Thinking of career change to software development

I'm currently administering applications and unix OS. Have no IT degree, learned on the job over last 6-7 years. Have good shell scripting skills, basic perl, know some apache, mysql, sql etc. I enjoy scripting, setting up scripts to use in conjunction with databases and apache etc. I think... (3 Replies)
Discussion started by: frustrated1
3 Replies

6. What is on Your Mind?

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... (4 Replies)
Discussion started by: navy
4 Replies

7. What is on Your Mind?

Career in Unix

I need some advice regarding my career. I have been working for a major it company in a unix based support project. I have not learnt much in the 2 years except for basics in unix. I am really worried about my career thinking about what would happen next. I always wanted to be a developer but i... (10 Replies)
Discussion started by: nani2say
10 Replies

8. What is on Your Mind?

Career Advice

Hi, I not sure if this is the right place to ask this question and if I'm wrong I apologize. I'm a systems administrator and have about 5 years of experience. I have worked on Solaris HP-UX *linux Visualization ( VMWare ) And I'm comfortable with shell and Perl. Of late,... (0 Replies)
Discussion started by: maverick_here
0 Replies
INTLCALENDAR.GETMINIMALDAYSINFIRSTWEEK(3)				 1				 INTLCALENDAR.GETMINIMALDAYSINFIRSTWEEK(3)

IntlCalendar::getMinimalDaysInFirstWeek - Get minimal number of days the first week in a year or month can have

	Object oriented style

SYNOPSIS
public int IntlCalendar::getMinimalDaysInFirstWeek (void ) DESCRIPTION
Procedural style int intlcal_get_minimal_days_in_first_week (IntlCalendar $cal) Returns the smallest number of days the first week of a year or month must have in the new year or month. For instance, in the Gregorian calendar, if this value is 1, then the first week of the year will necessarily include January 1st, while if this value is 7, then the week with January 1st will be the first week of the year only if the day of the week for January 1st matches the day of the week returned by IntlCalendar.getFirstDayOfWeek(3); otherwise it will be the previous years last week. PARAMETERS
o $cal - The IntlCalendar resource. RETURN VALUES
An int representing a number of days or FALSE on failure. EXAMPLES
Example #1 IntlCalendar.getMinimalDaysInFirstWeek(3) <?php ini_set('date.timezone', 'UTC'); ini_set('intl.default_locale', 'en_US'); $cal = new IntlGregorianCalendar(2013, 0 /* January */, 2); var_dump(IntlDateFormatter::formatObject($cal, 'cccc')); // Wednesday var_dump($cal->getMinimalDaysInFirstWeek(), // 1 $cal->getFirstDayofWeek()); // 1 (Sunday) // Week 1 of 2013 var_dump(IntlDateFormatter::formatObject($cal, "'Week 'w' of 'Y")); $cal->setMinimalDaysInFirstWeek(4); // Still Week 1 of 2013 (1st week has 5 days in the new year) var_dump(IntlDateFormatter::formatObject($cal, "'Week 'w' of 'Y")); $cal->setMinimalDaysInFirstWeek(6); // Week 53 of 2012 var_dump(IntlDateFormatter::formatObject($cal, "'Week 'w' of 'Y")); The above example will output: string(9) "Wednesday" int(1) int(1) string(14) "Week 1 of 2013" string(14) "Week 1 of 2013" string(15) "Week 53 of 2012" PHP Documentation Group INTLCALENDAR.GETMINIMALDAYSINFIRSTWEEK(3)
All times are GMT -4. The time now is 09:42 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy