Tuesday, August 29, 2017

Strata 2K17 Intercollegiate Fest by Dept. of Computer Science ANJAC

Strata 2K17

Hi guys,

Today I am going to share my sweet memories.

Strata 2K17 is the Intercollegiate Fest conducted by my dept(Computer Science) on Aug 18, 2017. 

I'm working as one of the members of the technical team. We build a web page for the participants to view the details and also a had User Panel to modify their Participants list. 

We tried a new way of Invitation. The invitation for this event is in the form of Argumented Reality and also we provide a Digital Certificate for the Participants who are all participated in Strata 2K17.

The App Strata 2K17 is the Argumented Reality App developed in Unity. 

These Certificates are Generated Dynamically based on the participants and prize holders list in the database.

we succeeded in Online registration and Certificate Generation.

I need to thank for the all my faculty member of our department to give such an opportunity and my team members.


Monday, April 3, 2017

How to get permission in android api level 23 and above at runtime?????.....

App Permission


Hi guyz,

Today I'm going to share how to get permission in android API level 23 and above during runtime...

for some security reason, you need to ask the permission of the user at runtime in Marshmellow and above...

below is the code to check whether the user had permission or not...

        if (ContextCompat.checkSelfPermission(this,
                Manifest.permission.ACCESS_COARSE_LOCATION)
                != PackageManager.PERMISSION_GRANTED) {
            if (ActivityCompat.shouldShowRequestPermissionRationale(this,
                    Manifest.permission.ACCESS_COARSE_LOCATION)) {
                     //got permission
            } else {
                ActivityCompat.requestPermissions(this,
                        new String[]{Manifest.permission.ACCESS_COARSE_LOCATION},
                        2);
            }
        }



below code is to do perform some action after the user's input...


    @Override
    public void onRequestPermissionsResult(int requestCode,
                                           String permissions[], int[] grantResults) {
        switch (requestCode) {
            case 1: {
                if (grantResults.length > 0
                        && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
                } else {
                }
                return;
            }
            case 2: {
                if (grantResults.length > 0
                        && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
                } else {
                }
                return;
            }
        }
    }


Note: you have to specify the permission in manifest.xml file as


    <permission android:name="android.permission.ACCESS_COARSE_LOCATION" />

#RajeshDeveloper

Thursday, February 16, 2017

Day-4 ( Interaction with the StartUp at NASSCOM )


Hello friends,

I think today my colleague are enjoyed a lot. Today we all are hosted our website in Firebase. These websites contain our digital resume. This was my first website that hosted with my bio and my digital resume.

Today we had an opportunity to interact with the startups. my team interacts with 3 startups. In these 3 startups, I had an opportunity to impress boss of the startup. First I explain my work with one of the startup member. Then her another team member leave his work to come and interact with me. Then he asked me to interact with their boss Mr.aashish. his boss had an important call. But he spends his time to listen to me. He told, "Now we are expecting young developers". I'm very nervous when I discuss with the Mr.aashish. But I spoke fluently in English. I can't believe that I spoke English as well as what I thought. He gets my number for contact. I want to thank Mr.aashish for listening to me and my ideas. Now he had my number.

Today is also an awesome day in my life. I'm very happy to share my experience with you all.And also to we got a T-Shirt of NASSCOM. I enjoyed a lot today.

Wednesday, February 15, 2017

Day-3, Start-up Motivation


Hi frndz,

Today was really awesome. Mr.Satheesh bro gave an awesome inspirational speech to us. His speech was like a storm. He motivated us with his life experience.

Mr.Satheesh bro gave an idea to start a startup. On that moment I think for one second. why shouldn't we start a startup? But I need some experience for that.  But I can try my best.

He shows some inspirational startup videos (like Zoho, fresh deck, sv.co) for us. That was superb. 

That was inspired me.

I had an opportunity to show who am I to Mr.Satheesh bro and Mr.Senthil Kumar bro. 


This was the biggest turning point in my life.

2nd Day in Startup... (My session, minimal poster and Web building)


hi guyz,

yesterday I got an opportunity to share my 1 year of experience in an android platform with my colleagues. I had taken more than 1 hour of the session yesterday... I'm very happy to take that session. 

We all learn how to design a minimal poster after my session. that session was taken by Mr.Senthil Nathan bro... really it was awesome... 

In the afternoon session, we all are designing our own resume site for hosting... I think today we hosted it... I'm waiting...

Tuesday, February 14, 2017

Google Developers ( GDG ) Startup boot camp at NASSCOM

Boot Camp #NASSCOM


Hi guyz,


Yesterday I had attended Boot Camp At NASSCOM. I'm happy to post my review here.

I already know the some of the topics they discussed with us. But I enjoyed the way Mr.S.Chathiswaran sir, Mr.Saravanan & Mr.SenthilNathan sir discuss with us.

They discuss their experience. I can't find out the any -ve in them. Because I'm hypnotized in their session.

The session was in an impressive manner. I learned a lot. My expectation are always learn new things. Today also I'm going to attend the session with same expectations.

Wednesday, February 1, 2017

19 characters need 1 byte to store in C

Bytes


Hi friendz,

I'm not a professional in C. but when. I  try a C program to store the character in a variable.

I accidently found a new thing. are you eagerly waiting to know what is that.

1 character needs 1 byte to store. so array concept was found to store more than 1 character.

but what i was found is. I store 19 characters in a single byte.

will someone tells me why 19 characters need 1 byte to store????

Thursday, August 11, 2016

Our Department Website
Hi guys,

I'm  happy  to  share  my  our  Department  Website  with  you.

This  was  Designed  by  Me  and  My  Super Senior(M.Alex Pandian-II M.Sc[CS & IT]).

It  is  also  my  first  Web Site  of  my  career.
  
We  Designed  it  for  Intercollegiate Meet(Strata)  conducted  by  our  Department.

Click  Me  to  visit  us.

I  want  to  convey  my  special  thanks  to  my  professor  Mr.M.Sakthi Saravanan M.sc., M.Phil  to  support  us  on  critical  situation.



Thursday, July 14, 2016

Android Studio Project for Session Management using sharedpreferences with apk ( tutorial )

Create Session using Shared Preference

Hello  guyz,

I  developed  an  app  to  see  how  session  is  working...  

I  implement  Shared Preferences  for it...

SharedPreference  is  an  API  from  Android  SDK  to  store  and  retrieve  application  Preference.

SharedPreference  are  still  exist  even  if  you  stop  the  application  or  turn  off  the  device...

Click  here  to  download  an  APK  file...

Friday, July 1, 2016

How to implement Tab Host, Page Viewer with Fragments and Swipe action in android application

Tab View

Hello guys,

I  know  that  some  of   you  wants  to  implement  a  Tab  Host  with  Page  viewer,  Fragments  and  Swipe  Action  in  your  app...

For  that  i  have  a simple  project  in  my  cloud....


If  you  want  it....

Download  it  by  Click Here...

I  think  that  it  is  very  useful  to  you...