இட்டதோர் தாமரைப்பூ
இதழ் விரித்திருத்தல் போலே
வட்டமாய் புறாக்கள் கூடி
இரையுண்ணும்; அவற்றின் வாழ்வில்
வெட்டில்லை; குத்துமில்லை;
வேறுவேறு இருந்து அருந்தும்
கட்டில்லை; கீழ்மேல் என்னும்
கண்மூடி வழக்கம் இல்லை!

$ node
$ node >
$ node > 1 + 3 4 > 1 + ( 2 * 3 ) - 4 3 >
$ node > x = 10 10 > var y = 10 undefined > x + y 20 > console.log("Hello World") Hello Workd undefined
$ node > var x = 0 undefined > do { ... x++; ... console.log("x: " + x); ... } while ( x < 5 ); x: 1 x: 2 x: 3 x: 4 x: 5 undefined >
$ node > var x = 10 undefined > var y = 20 undefined > x + y 30 > var sum = _ undefined > console.log(sum) 30 undefined >
$ node > (^C again to quit) >
After birth, it should be possible, technically, theoritically and actually, to achieve the goal of your human life in one life – that life. My Guruji used to say, "We should not have to take birth as a human being more than once." Because if we stick faithfully to the parameters of our own evolutionary path that we have outlined for ourselves, the program we have written uniquely, each one for himself or herself, nothing can stop it. |
It is like a son wanting to get back home again. When that enormous longing in the heart comes, that "I wish to be home again", he rushes back. And the mother meets him. She doesn’t think of his dirtiness, his dust, his slushy shoes or sneakers. She hugs him. So, spirituality says that is how you will be welcomed. Forget your grossness. |
One who is interested in himself is not a selfish person. Selfishness means using other people, other things, other places, to satisfy myself, not in my own interest. It is like a person who, when you put a bottle of wine on the table, because it is free, he drinks all of it and gets drunk. But if he is interested in himself, he will say, “No, thank you, I prefer milk.” So, selfishness is desire-based. Self-interest is development oriented, self-development oriented. |
Nature sends us into this world, the human world, fully equipped with all that we need by way of pre-programmed material in our hearts, which is what is called the operating system in computer language. It is there. We don’t have to learn it. When we buy a computer, the operating system is already installed. Security is already installed – firewall, whatever it is. God is not a fool to make computer specialists better than Himself. |
Preparation | |
Suppose you plant plantains in your garden and they stay un-ripened, what would you do? Or if they rot before ripening? It would be no use. So only when it ripens into a vegetable can we eat it. Therefore, youth is a time for preparation. Preparation in what way? First is education in the family, which is natural. Listen to your parents, honor them, respect them; most of all, love them. |
Present | |
We should live in the present, thinking of the future. If you do that, there is no more samskara formation |
Desires and Happiness | |
The more desires you have, the harder it will be to fulfill them all, and so the less happy you will be. Happiness is inversely related to numbers of desires |
Character | |
Character is a protection around your life. Lose the character, life is lost. It is open to anybody to shoot at you, to destroy you. |
Happiness | |
Temptation for money, for position, for wealth – this is how it all starts. Avoid all temptations, and you will be good, you will grow, you will be respectable and you will be happy. |
Women | |
In India, the ancient culture, the ancient tradition, says that the character of a nation is in the hands of its women. Where the women go astray, that society goes astray. |
gsutil mb
command and a unique name to create a bucket:This quickstart uses a bucket named "my-awesome-bucket." You will need to choose your own, unique, bucket name.gsutil mb gs://my-awesome-bucket/
You've just created a bucket where you can store your stuff!Creating gs://my-awesome-bucket/...
gsutil cp
command to copy the icon from the location where you saved it to the bucket you created:If successful, the command returns:gsutil cp Desktop/cloud-storage-logo.png gs://my-awesome-bucket
You've just stored an object in your bucket.Copying file://Desktop/cloud-storage-logo.png [Content-Type=image/png]... Uploading gs://my-awesome-bucket/cloud-storage-logo.png: 0 B/2.58 KiB Uploading gs://my-awesome-bucket/cloud-storage-logo.png: 2.58 KiB/2.58 KiB
gsutil cp
command to download the icon you stored in your bucket to somewhere on your computer, such as the desktop:If successful, the command returns:gsutil cp gs://my-awesome-bucket/cloud-storage-logo.png Desktop
You've just downloaded something from your bucket.Copying gs://my-awesome-bucket/cloud-storage-logo.png... Downloading file://Desktop/cloud-storage-logo.png: 0 B/2.58 KiB Downloading file://Desktop/cloud-storage-logo.png: 2.58 KiB/2.58 KiB
gsutil cp
command to create a folder and copy the icon into it:gsutil cp gs://my-awesome-bucket/cloud-storage-logo.png gs://my-awesome-bucket/just-a-folder/
You've just copied your object into a new folder in your bucket.Copying gs://my-awesome-bucket/cloud-storage-logo.png [Content-Type=image/png]... Copying ...my-awesome-bucket/just-a-folder/cloud-storage.logo.png: 2.58 KiB/2.58 KiB
gsutil ls
command to list the contents of the bucket:If successful, the command returns a message similar to:gsutil ls gs://my-awesome-bucket
You've just seen the contents of your bucket.gs://my-awesome-bucket/cloud-storage-logo.png gs://my-awesome-bucket/just-a-folder/
gsutil ls
command, with the -l
flag to get some details about an object:If successful, the command returns a message similar to:gsutil ls -l gs://my-awesome-bucket/cloud-storage-logo.png
You've just obtained information about the object's size and date of creation.2638 2016-02-26T23:05:14Z gs://my-awesome-bucket/cloud-storage-logo.png TOTAL: 1 objects, 2638 bytes (2.58 KiB)
gsutil acl ch
command to grant all users read permission for the object stored in your bucket:If successful, the command returns:gsutil acl ch -u AllUsers:R gs://my-awesome-bucket/cloud-storage-logo.png
Now anyone can get your object.Updated ACL on gs://my-awesome-bucket/cloud-storage-logo.png
If successful, the command returns:gsutil acl ch -d AllUsers gs://my-awesome-bucket/cloud-storage-logo.png
You have removed public access to this object.Updated ACL on gs://my-awesome-bucket/cloud-storage-logo.png
gsutil acl ch
command to give a specific email address read and write permission for your bucket:If successful, the command returns:gsutil acl ch -u user@gmail.com:W gs://my-awesome-bucket
Now someone else can put things into and take things out of your bucket.Updated ACL on gs://my-awesome-bucket/
If successful, the command returns:gsutil acl ch -d user@gmail.com gs://my-awesome-bucket
You have removed the user's access to this bucket.Updated ACL on gs://my-awesome-bucket/
gsutil rm
command to delete an object:If successful, the command returns:gsutil rm gs://my-awesome-bucket/cloud-storage-logo.png
This copy of the object is no longer stored on Cloud Storage (though the copy you made in the folderRemoving gs://my-awesome-bucket/cloud-storage-logo.png...
just-a-folder/
still exists).rm command
with the -r
flag to delete the bucket and anything inside of it:If successful, the command returns a message similar to:gsutil rm -r gs://my-awesome-bucket
Your bucket and its contents are deleted.Removing gs://my-awesome-bucket/just-a-folder/cloud-storage.logo.png#1456530077282000... Removing gs://my-awesome-bucket/...