Skip to main content

Posts

Showing posts from 2016

Resume Example for Computer Engineer

Full Name [Street, City, State, Zip] | [Phone] [Email Address] COMPUTER ENGINEER Computer Engineer with ten years’ experience in designing, developing and implementing computer based hardware and software. Skilled in analyzing system engineering requirements, planning/designing and developing software and hardware. Vast experience in troubleshooting computer based problems within applications. Analytical skills: Good logic problem-solver. Capable of working in a team and without supervision. PROFESSIONAL EXPERIENCE Computer Engineer          Central TKM    Washington, DC        2004 – Present Development/Engineering Management: Supervised the design of ABC software for DEF while communicating between R&D departments, customers, and outsourcing suppliers. Worked as leader of engineering team and ensured cooperation and achievement of deadline. Met clients to assess requirements: Analyzed system compatibil...

Computer Science Resume - Samples

Computer Science Resume - Sample 1 Abdul Mugeesh Shaikh Contact: +91-779456**** Email ID: ***@yahoo.com Career Summary A detail oriented and hardworking professional with remarkable analytical, logical skills and expert in performing complex operations possessing 3 year experience as Computer Science Engineer. Excellent in developing various programms on different languages for existing software. Proficient in maintaining the computer system and existing software. Efficient in working at fast pace environment and excellent organizational and interpersonal organization. Excellent data analysis reporting skills using statistical methods and software. Personal Qualities Unmatchable communication skills in verbal and written both Detail oriented and strong interpersonal skills. Good Conceptual, Analytical and Logical skills. Ability to work individually as well as in group environment. Technical Knowledge Excellent in MS Office (MS Word, MS Excel, MS PowerPoin...

Be careful of financial data

PHP suffers from floating point imprecision. This issue also affects a few other languages too. So what is floating point imprecision? Let's take a look at an example: <?php echo (int) ((0.1 + 0.7) * 10); ?> Did you guess 8? I'm sorry, you're wrong. The output is actually 7. So what happened? Let me explain: 1st operation: 0.1 + 0.7 // result is 0.79999999999 2nd operation: 0.79999999 * 10 = 7.999999999 3rd operation: (int) 7.9999999 // result is 7 PHP is also loosely typed. So when you're doing any form of numeric variables, you must be aware of the type. You could potentially strip out 99 cents if you convert from float to integer. Normally, a simple website would not encounter such issues, but when you're dealing with financial data, a wrong figure can literal cause you to lose not just your job. You could potentially get into serious legal problems with your company or your client if you cause them millions.

Test your self

Which of followng statement is more suitable if you want to output a blend of static text and dynamic information stored within one or several variables? 1. print ( ) 2. Print f ( ) 3. echo ( ) 4. None

How To Build RESTful APIs Using PHP and Laravel

While designing a good RESTful API takes a lot of thought and planning, thanks to application frameworks that have been developed with REST in mind, the nuts and bolts of implementation has never been easier. This how-to explores RESTful API implementation using  Laravel Track this API , an object-oriented MVC framework for PHP that is fast becoming one of the language's most popular frameworks. Why Laravel? There are a number of great PHP frameworks that developers can use to build robust PHP applications. Laravel, which is relatively new, has quickly gained a dedicated following. And it's not hard to understand why. Built on top of a number of components from Symfony, one of PHP's most mature frameworks, Laravel adopts many of PHP's newest features, is highly expressive, and features powerful components, including a great templating engine, ORM and command line interface called Artisan. All of this gives developers a comprehensive toolkit for building applicati...

Running Clock

Current Time is : Here is the code <html> <head> <script> function updateClock() { var currentTime = new Date(); var currentHours = currentTime.getHours ( ); var currentMinutes = currentTime.getMinutes ( ); var currentSeconds = currentTime.getSeconds ( ); // Pad the minutes and seconds with leading zeros, if required currentMinutes = ( currentMinutes currentSeconds = ( currentSeconds // Choose either "AM" or "PM" as appropriate var timeOfDay = ( currentHours // Convert the hours component to 12-hour format if needed currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours; // Convert an hours component of "0" to "12" currentHours = ( currentHours == 0 ) ? 12 : currentHours; // Compose the string for display var ...

Real time changing Clock showing date and time

We can display a clock which will be showing the local time of the client computer by using JavaScript. Note that this time displayed is taken from user computer and not from the server.  We have seen in our  date object example how to display current date and time   where the current date and time is displayed once. Here we will try to display changing clock or real time change in date and time by using  setTimeout function . This setTimeout function we have used to trigger the time display function in a refresh rate of 1000 mill seconds ( 1 Sec ). This refresh rate can be changed to any other value. By changing the value to 5000 the clock will refresh and show the exact time once in every 5 seconds.  Here is the demo of this script and code is given below that.  Sat Apr 23 2016 08:27:22 GMT+0530 (IST)   Here is the code <html> <head> <title>(Type a title for your page here)</title> <script type="text/javascript...

Timer funcitons in JavaScript: Reminder Script

Timers are used in web pages and we will discuss how to setup one and how to use one with an example. The function setTimeout() in function is used and here is its general syntax. mytime = setTimeout(expression, msec); mytime  is the identifier used to identify the current timeout function.  expression  is the statement that is to be executed after the specified time has ticked off.  msec  is the duration of time in milliseconds after which the expression will be executed.  You can see by using setTimeout function we can execute any function or object after a set of time. For example if msec is set 5000 then the expression will be executed after 5 seconds or 5000 milliseconds.  We will try one example where we will have four period buttons and each button will set a different time for another function to execute and display a alert button. We will call it as a reminder script and we will get one alert box based on the period button we click...

JavaScript Date functions

Functions Description Date Object Displaying date and time in an alert window getTime() milliseconds that is passed from January 1, 1970 getMonth month part of the date object, showing month number from 0 to 11 getYear Getting the year in YYYY format from the data object getDate Date of the month starting from 1 to 31 and formatting getDay Returns 0 for Sunday and 1 for Monday .. 6 for Saturday getMinutes Minute part of the date object, starting from 0 to 59 getHours Hour part of the date object, starting from 0 to 23 getSeconds Seconds part of the date object, starting from 0 to 59 setDate Changing the date object by changing the date of the month setMonth Setting the month part of the date object by using numbers 0 to 11 setfullyear Setting to full year the date object setHours Changing the hour part of date object, from 0 to 23 or to any other value setMinutes Changing the Minute part of date object, from 0 to 59 or to any other value toString Before using any stri...

MOST IMPORTANT ANDROID INTERVIEW QUESTIONS WITH ANSWERS

Here is a list of 50 important Android Operating system interview questions with their answers.Android is the most popular operating system used in mobile phones. It started a new era on mobile industry with smartphones and tablets. The main feature was its touch screen. Android operating system is initially developed by a company called “Android Inc”. later it acquired by google and then Goggle released this as an open source code. Now most of the IT companies are working with Android Apps developments. There are several institutes providing training for Android development. Now go through all these question and answers before attending your Android job interviews. If your a fresher, then expect this as the first question. Prepare an introduction about Android. Question about Google Android SDK Question about Architecture of Android OS About Android Framework AAPT in Android ...