Discussion lug meet:

April 1, 2013

Date : 24/3/2013 Week : 115 People : 8

Time : 10.00 am to 12.00 am

Location :   Kailasanathar Temple

Attendees :  Balaji G, Selvamani S, Dilliganesh K, Srinivasan T,
Rajkumar K, Dhanasekar T, Manimaran G and Manimaran R (Myself)

Discussion :

we conduct lug meet at every month fourth sunday:

Since last few months we didn’t have any activity. so
we discussed about the current status of our lug community and how to
refine this problem.
some old members also participated in the meet and suggested some
good ideas.

And we finally come to a conclusion to do some frequent activities
like conducting hackathon, monthly irc meet, contributing in
writing articles, making video tutorials, and much more.


2012 in review

December 31, 2012

The WordPress.com stats helper monkeys prepared a 2012 annual report for this blog.

Here’s an excerpt:

600 people reached the top of Mt. Everest in 2012. This blog got about 3,600 views in 2012. If every person who reached the top of Mt. Everest viewed this blog, it would have taken 6 years to get that many views.

Click here to see the complete report.


PHP Basics

July 1, 2012

Date : 01/07/2012 Week : 114 People : 6

Time : 3.00 pm to 5.00 pm

Location :  Shri Narayana Guru School

Attendees :  Manimaran, Praveen, Saravanan, M.Saravanan, Nagarajan and  Shanmugam (Myself).

Discussion :

I (Shanmugam) gave the introduction to PHP. I short described the details of the discussion here :

PHP:

First we discussed about our KanchiLUG activities and its status right now.I explained about PHP variables and how to use  this and then we discussed about PHP functions , manimaran and saravanan gave some ideas about PHP functions and i explained about how to use this in different ways.

Praveen asked about index in PHP , so i also explained about index. M.Saravanan asked doubts in array , so i gave brief explanation about array and what are the types of arrays are be and how to use it.


Basic Intro for MySQL

February 26, 2012

Date : 26/02/2012 Week : 113 People : 6

Time : 3.00 pm to 5.00 pm

Location :  Shri Narayana Guru School

Attendees :  Manimaran, Praveen, Rajkumar, Nagarajan and  Selvamani (Myself).

New Attendee :  Thirumalai

He is doing first year B.Sc., Computer Science in Sankara Arts & Science College.

Discussion :

I (Selvamani) gave the introduction to MySQL. I short described the details of the discussion here :

MySQL:
RDBMS(Relational Database Management System) that runs as a server providing multi-user access to a number of databases.

Storage Engine :
handles both transaction-safe tables and nontransaction-safe tables.

Different type of storage engine in mysql :
MyISAM, InnoDB, MERGE, Memory, Example, Federated, Archive, CSV, Blackhole

MyISAM                -   default storage engine. Manages nontransaction-safe tables. provides high speed storage and retrieval, full text search capablity.
InnoDB                 -   transaction-safe tables. Row-level locking,easy recover, data reliability. Owned by Oracle in 2005, but Data Retrieval is slow
Merge                    -   Collection of MyISAM Tables
Memory/HEAP  -   speed performance for data retrieval. lose data when shutdown. Can be used for temporary tables.
Example               -   To create own engine. cannot store/retrieve data into tables.
Federated             -   Stores data in remote database.
Archive                 -   store large amount of data without indexes.
CSV                        -   stores data in text files using comma seperated values format.
Blackhole            -   does not store. Retrieval always return empty set.

Character Set :
set of symbols and its encodings of a regional language.

Collation :
set of rules for comparing characters in a character set.

MySQL Query :
mysql> status;                       -   To know details of mysql server
mysql> show databases;               -   To view list of databases
mysql> show engines;                 -   To view available storage engines in mysql server
mysql> create database ‘dbname’;     -   To create a new database
mysql> use ‘dbname’;                 -   To change the database name
mysql> select databases();           -   To know the current database
mysql> drop database ‘dbname’;       -   To remove database from server

Create Table MySQL Queries :

mysql> create table if not exists ‘tblname’(col1 datatype primary key auto_increment, col2 datatype,..,colN datatype) {type|engine}=’engine_name’;

-   To create table with storage engine type(default is MyISAM prior to MySQL 5.5, now InnoDB is default)

mysql> create table ‘table_name’ like ‘existing_tbl_name’

-   To copy table structure;

For MyISAM type of table, mysql represents each table by .frm table format file, .MYD(data file), .MYI(Index file).

You can find these files in the location /var/lib/mysql/<dbname>/ as root user.

Booming GNU/Linux,

செல்வமணி. ச


Discussion about Tamil Magazine & General Talk

December 11, 2011

Date : 12/12/2011 Week : 112 People :  8

Time : 3.00 pm to 5.00 pm

Location :  Shri Narayana Guru School

Attendees :  Manimaran, Saravanan, Praveen, Kavitha, Priya, Pavithra, and  Selvamani (Myself).

New Attendees :  Gothandaraman

He is doing first year MCA in Pallavan college of Engineering Kanchipuram.

Discussion :

We today discussed about releasing the tamil magazine for FOSS. As of now, we have decided ten articles to be translated from other resources for the next month release. The article details are

1. Installation Ubuntu 11.10     -      Selvamani

2. Directory Structure        -    Direct Translation(Full Circle Issue #1 – http://fullcirclemagazine.org/issue-1/)        -       Praveen. S

3. Ubuntu Software Centre    -

http://freshtutorial.com/ubuntu-software-center/    -   Saravanan . K

4. Scribus                -    Direct Translation (Full Circle Issue #1 – http://fullcirclemagazine.org/issue-1/)   -     Praveen. S

5. Panel Settings        -

http://www.techsupportalert.com/content/ubuntu-tips-and-tricks.htm#Customize-the-Panel     -    Nagarajan

6. Gedit            -        http://library.gnome.org/users/gedit/stable/index.html.en – Nagarajan

7. Compiz Settings        -        http://www.omgubuntu.co.uk/2010/10/customizing-ubuntu-10-10-with-a-dock-new-icon-theme-effects-global-menu-and-more/      -      Shanmugam

8. TORCS – Car Racing Game        -    Direct Translation (Full Circle Issue #6 – http://fullcirclemagazine.org/issue-6/)            -         Manimaran. G

9. Creating and Distributing Deb Files    -    Direct Translation(Full Circle Issue #12 – http://fullcirclemagazine.org/issue-12/)    -      Rajkumar

10. Create Mobile Multimedia     -    Direct Translation (Full Circle Issue #19 – http://fullcirclemagazine.org/issue-1/)     -    Selvamani

And, Mr. Praveen Kumar shared his mini project, Address Book, to all of us. He gave the demo about his project and its source code details.

Booming GNU/Linux,

செல்வமணி. ச


Discussed About PHP

November 21, 2011

Date : 20/11/11 Week : 109 People :  9

Time : 3.00 pm to 5.00 pm

Location :  Shri Narayana Guru School

Attendees : G. Manimaran, R. Manimaran, M. Saravanan, K. Saravanan, Balakrishnan,  Dhanalakshmi,  Selvamani and sanmugasundaram(Myself).

New Attendees : Venkata prasad.

He is doing first year computer science in University college of Engineering Kanchipuram.

Discussion :  PHP Intro & Linux intro to new guy

In this week we discussed about PHP. Mr.Selvamani gave the history of PHP. He briefly explained growth of PHP, increased version by version, How the developers supported to grew PHP, PHP Supported Database, etc., Finally we divided the Chapters in PHP, Every one took one chapter and share about next week.

sanmugasundaram(myself) gave the basic linux intro to the new guy Venkata prasad.

Growing FOSS

சண்முகசுந்தரம். க


Discussion about Gedit Plugins

November 13, 2011

Date : 13/11/11 Week : 108 People :  9

Time : 3.00 pm to 5.00 pm

Location :  Shri Narayana Guru School

Attendees : Praveenkumar, Manimaran, Saravanan, Shanmugasundaram, Pavithra, Vishwanathan, Rajkumar, Hariharan, and Selvamani (Myself).

Discussion :

First we started to talk about our KanchiLUG activities and its status right now. Same people are giving talk on every kanchilug meet, since all newcomers are learning linux applications from us. Now the new people got some experience using ubuntu in their home. Hence we asked them about their learning from Kanchilug and Linux. Each people shared their learnings and experience from KanchiLUG. Their experience was very nice to hear.

Then, Mr. Rajkumar discussed about the Gedit Text Editor and Its additional features.   He installed a package named gedit-plugins which gives some additional addons to Gedit. Then he showed the demo on gedit that how to use those plugins. First Mr. Rajkumar enabled those additional plugins such as Bookmarks, Bracket Completion, Code Comment, External Tools, Python Console, Embedded Terminal and so on. He explained and showed demo on each use of each plugins.

Booming GNU/Linux,

செல்வமணி. ச


Follow

Get every new post delivered to your Inbox.