Sponsored Content
The Lounge What is on Your Mind? Holiday Thoughts for the End of 2018 Post 303027969 by RavinderSingh13 on Friday 28th of December 2018 10:44:38 PM
Old 12-28-2018
I would LOVE to add my personal experience of 2018 which I learnt.

EMBRACE you LOVED ones at least once in a day: What I learnt in 2018 last 5 to 6 months is yes we are I.T people who have always new things to learn, new challenges in work along with normal life going but sometime(not sure how many of you felt in this way) we don't give enough time to our LOVED ones. In my case it is my MOTHER. Honestly after passing my school before joining Engg. college I hardly met her(may be 5 to 6 times in last 11 to 12 years) and got busy in I.T and friends life totally(though we talk almost every weekend on skype or by cell).

I came to know how much she LOVES me few months back when doctors found she is having some stomach problem and we were unsure at that time, she had gone through a major operation and with GOD's grace she is recovering now and should be fine in few months or so.

Daily taking care of her 3 to 4 hours(which I never thought in last 11 years or so), daily embrace her before going to work and do the same after coming from work it is AN AWESOME feeling. No matter how much I am tired after coming to home this gives me positive energy to take care of her more along with my passion to learn technical stuff and work more in I.T

So I request you ALL(even you are doing this), please take care of your LOVED ones either they stay with you or stay far from you. It is a NICE feeling and gives you boost in life too Smilie

Thanks,
R. Singh
These 2 Users Gave Thanks to RavinderSingh13 For This Post:
 

7 More Discussions You Might Find Interesting

1. UNIX Desktop Questions & Answers

Happy Thanksgiving Holiday!

Happy Thanksgiving holiday, everyone! Let's leave the computer alone, forget the Unix/Linux for a while, and enjoy your turkey and Foot~~~~~~~~~~~~~~~~~~~~~~ball~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ (1 Reply)
Discussion started by: HOUSCOUS
1 Replies

2. Shell Programming and Scripting

holiday

hey all, I have set up a cron job which would be invoked at 1:00 am everyday. However, there is really no need to invoke such job if it's a public holiday so I am wondering if anyone have any idea on how to approach this? Thanks in advance! (2 Replies)
Discussion started by: mpang_
2 Replies

3. Shell Programming and Scripting

Don't want to invoke job on holiday!

Hey all, I have a question about cron job, I want to invoke a program to perform some operations on database, however, this operation should only be invoked working day (weekday + not holiday) . Scheduling a job on weekday is easy but how about holiday? Thanks in advance! (1 Reply)
Discussion started by: mpang_
1 Replies

4. What is on Your Mind?

Discussing Holiday Season Greetings with jlliagre

Hmm, didn't you press that "Submit new thread" button too early ? ;) Reference this post: https://www.unix.com/whats-your-mind/124692-seasons-greetings-happy-holidays-unix-linux-forums.html (15 Replies)
Discussion started by: jlliagre
15 Replies

5. UNIX for Dummies Questions & Answers

Run scripts through AutoSys depending on holiday

Hi all, I am new to autosys. Can anyone help me in writing autosys job for the below script? Requirement is : 1.Every day it should run this script at particular time except on holidays. 2.The day after holiday some other script should be running. Thanks in advance. #!/bin/ksh #set... (0 Replies)
Discussion started by: raghuramyenni
0 Replies

6. What is on Your Mind?

Football / Soccer World Cup 2018 draw.

What is on Your Mind? 2018 FIFA World Cup - Wikipedia I'm hoping that England are drawn into positions B2, D3, G3 or G4 so that all their games will be outside usual UK office hours and people will not desert the office with mystery illnesses to watch the games. Expecting failure, so I... (1 Reply)
Discussion started by: rbatte1
1 Replies

7. What is on Your Mind?

The most common passwords this year, 2018.

/Me shakes my head. I went to my old workplace on Wednesday last, 12-12-2018, and one of the passwords on a laptop used was amongst the 25 displayed. Sadly I am unable to post the URL, garbage comes up... I can't delete the post either... --- Post updated at 08:34 PM --- Try again... (6 Replies)
Discussion started by: wisecracker
6 Replies
MB_STRTOUPPER(3)							 1							  MB_STRTOUPPER(3)

mb_strtoupper - Make a string uppercase

SYNOPSIS
string mb_strtoupper (string $str, [string $encoding = mb_internal_encoding()]) DESCRIPTION
Returns $str with all alphabetic characters converted to uppercase. PARAMETERS
o $str - The string being uppercased. o $encoding -The $encoding parameter is the character encoding. If it is omitted, the internal character encoding value will be used. RETURN VALUES
$str with all alphabetic characters converted to uppercase. UNICODE
For more information about the Unicode properties, please see http://www.unicode.org/unicode/reports/tr21/. By contrast to strtoupper(3), 'alphabetic' is determined by the Unicode character properties. Thus the behaviour of this function is not affected by locale settings and it can convert any characters that have 'alphabetic' property, such as a-umlaut (a). EXAMPLES
Example #1 mb_strtoupper(3) example <?php $str = "Mary Had A Little Lamb and She LOVED It So"; $str = mb_strtoupper($str); echo $str; // Prints MARY HAD A LITTLE LAMB AND SHE LOVED IT SO ?> Example #2 mb_strtoupper(3) example with non-Latin UTF-8 text <?php $str = "Txiotn a nE Baos unuvn yn, dpaokeCei unp vw0po kuvs"; $str = mb_strtoupper($st_, 'UTF-8'); _ _ _ _ echo $str; // Prints TXI>TH A/TTHH BAO> YHMNH | H, /PA>KE/EI YTTP NOOPO KYN> ?> SEE ALSO
mb_strtolower(3), mb_convert_case(3), strtoupper(3). PHP Documentation Group MB_STRTOUPPER(3)
All times are GMT -4. The time now is 08:15 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy