Velaiyar

Velaiya Swamigal, also called Velaiyar, born during the seventeenth century, was a Saivaite spiritual writer. He was born to a Tamil-speaking Desikar family in Kanchipuram, Tamil Nadu. He compiled more than seven books.

Velaiya Swamigal
Personal
Born
Velaiyar

(1768-05-10)10 May 1768
Died17 November 1840(1840-11-17) (aged 72)
Perumathur near by Perambalur
ReligionHinduism
PhilosophySaiva

Family Background

Velaiyar was born in Kanchipuram (Kanchipuram) in the Thondai mandalam region of Tamil Nadu, South India into an orthodox Saiva Tamil (Desikar) family around the middle of the 17th century. Veliyar's father, Kumara swamy Desikar, was an Archaka and Dikshithar and his family were known for their literary, theological and musical contributions in Tamil. At a young age, his father had left his family and went to Thiruvannamalai with his disciples where he planned to become a sage. However, once there he got married and had three sons and a daughter. Velaiyar was the third child and his siblings were Siva prakasar, Karunai prakasar, and Gnambikai ammal. Siva prakasar was a well-known poet who was blessed as ‘Sivanuputhichelvar’. He is acclaimed as ‘Karpanai Kalangiyam’ by renowned scholars of Tamil –speaking world. He compiled " Neerotta Yamaha Anthathi " to defeat an arrogant rival poet. The verses were written such that will when recited, the lips of the speaker never have to touch. He also wrote " Yesu Matha Niragaranam " (The Refuting the Religion of Jesus). He died aged 32 in Nallathur,[1][2] near Pondicherry.

His sister Gnambikai married Perur Santhalinga Swamigal.[3] She had no children. Her husband became a sage and sent Gnamibikai ammal back to her brother's residence. She stayed along with Velaiyar and spent her lifetime in Pommapuram mutt worshipping God.

Karunai prakasar married and wrote more than five books in Tamil. Seegalathi sarukkam, Ishtalinga Agaval. He died at Thiruvengai without any children.

Velaiyar married Meenatchi Ammal and settled down at Mailam near by Pommapura Aadeenam mutt. He had a son named Sundaresanar. He died at Perumathur at the age of 72.

Velaiyar's son Sundresanar married Karpagammal. He settled down his family in Valavanur near by Mailam. They in turn had a son named Swaminatha Desikar.

Swaminatha Desikar converted himself to Christianity, changed his name to Susai Alias Swaminatha Desikar and married Gnasounthari.

Early life

Along with his older brother Sivaprakasa swamigal, travelled widely all over Tamil Nadu, famous temples like Thiruvannamalai, Thiruchendur, Mailam.

On one of his journeys around Tamil Nadu Sivaprakasa Swamigal, Velaiyar and Karunai prakasar went to Tirunelveli to meet and be taught by a pandit Valliyur Thambiran, who was an expert on grammar. This teacher accepted them as his student. Velaiyar learnt Tamil grammar along with his brothers.

Books

  • Mayilathula
  • Nallur puranam
  • Mayilai thirattai mani maalai
  • Ishta linga kaithala maalai
  • Kumbakona Sarangathevar history as Veera singhathana puranam
  • Gugai Namachivaya Desikar history as Namchivaya leelai
  • Krisnanan history as Paarijatha leelai
gollark: My tape download program now supports downloading big files without splitting them, via range requests, assuming they're served from a server which supports it: https://pastebin.com/LW9RFpmY (do `web2tape https://url.whatever range`)
gollark: Here is a similar thing for JSON. Note that it delegates out to an external JSON library for string escaping.```luafunction safe_json_serialize(x, prev) local t = type(x) if t == "number" then if x ~= x or x <= -math.huge or x >= math.huge then return tostring(x) end return string.format("%.14g", x) elseif t == "string" then return json.encode(x) elseif t == "table" then prev = prev or {} local as_array = true local max = 0 for k in pairs(x) do if type(k) ~= "number" then as_array = false break end if k > max then max = k end end if as_array then for i = 1, max do if x[i] == nil then as_array = false break end end end if as_array then local res = {} for i, v in ipairs(x) do table.insert(res, safe_json_serialize(v)) end return "["..table.concat(res, ",").."]" else local res = {} for k, v in pairs(x) do table.insert(res, json.encode(tostring(k)) .. ":" .. safe_json_serialize(v)) end return "{"..table.concat(res, ",").."}" end elseif t == "boolean" then return tostring(x) elseif x == nil then return "null" else return json.encode(tostring(x)) endend```
gollark: My tape shuffler thing from a while ago got changed round a bit. Apparently there's some demand for it, so I've improved the metadata format and written some documentation for it, and made the encoder work better by using file metadata instead of filenames and running tasks in parallel so it's much faster. The slightly updated code and docs are here: https://pastebin.com/SPyr8jrh. There are also people working on alternative playback/encoding software for the format for some reason.
gollark: Are you less utilitarian with your names than <@125217743170568192> but don't really want to name your cool shiny robot with the sort of names used by *foolish organic lifeforms*? Care somewhat about storage space and have HTTP enabled to download name lists? Try OC Robot Name Thing! It uses the OpenComputers robot name list for your... CC computer? https://pastebin.com/PgqwZkn5
gollark: I wanted something to play varying music in my base, so I made this.https://pastebin.com/SPyr8jrh is the CC bit, which automatically loads random tapes from a connected chest into the connected tape drive and plays a random track. The "random track" bit works by using an 8KiB block of metadata at the start of the tape.Because I did not want to muck around with handling files bigger than CC could handle within CC, "tape images" are generated with this: https://pastebin.com/kX8k7xYZ. It requires `ffmpeg` to be available and `LionRay.jar` in the working directory, and takes one command line argument, the directory to load to tape. It expects a directory of tracks in any ffmpeg-compatible audio format with the filename `[artist] - [track].[filetype extension]` (this is editable if you particularly care), and outputs one file in the working directory, `tape.bin`. Please make sure this actually fits on your tape.I also wrote this really simple program to write a file from the internet™️ to tape: https://pastebin.com/LW9RFpmY. You can use this to write a tape image to tape.EDIT with today's updates: the internet→tape writer now actually checks if the tape is big enough, and the shuffling algorithm now actually takes into account tapes with different numbers of tracks properly, as well as reducing the frequency of a track after it's already been played recently.

References

  1. "Archived copy". Archived from the original on 1 April 2015. Retrieved 29 March 2015.CS1 maint: archived copy as title (link)
  2. "Archived copy". Archived from the original on 13 February 2012. Retrieved 18 April 2012.CS1 maint: archived copy as title (link)
  3. "Archived copy". Archived from the original on 6 January 2012. Retrieved 18 April 2012.CS1 maint: archived copy as title (link)
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.