techorama.blogspot.com
Tech-Share: SUDO
http://techorama.blogspot.com/2011/01/sudo.html
Monday, January 10, 2011. Linux / Unix Command: sudo. Sudo - execute a command as another user. Allows a permitted user to execute a command. As the superuser or another user, as specified in the sudoers. File The real and effective uid and gid are set to match those of the target user as specified in the passwd file (the group vector is also initialized when the target user is not root). By default, sudo. Minutes unless overridden in sudoers. Subscribe to: Post Comments (Atom). Linux / Unix Command: top.
techorama.blogspot.com
Tech-Share: February 2012
http://techorama.blogspot.com/2012_02_01_archive.html
Tuesday, February 7, 2012. How to Identify OS or Oracle 64 bit or 32 bit. How to Identify OS or Oracle 64 bit or 32 bit on Unix. It is very common question which version of oracle I need to install. 32 bit or 64 bit? As a 64-bit operating system can support either a 32-bit database or a 64-bit database. A 32-bit operating system cannot support a 64-bit database. So, version identification of the OS is necessary prior to install oracle. The following procedure will hopefully help you. Getconf -a grep KERN.
webgeek-tutorials.blogspot.com
Web Gurus: Oracle DBA script: Monitor user activity on the DB Best Tutorials for Website design and Mobile Webs
http://webgeek-tutorials.blogspot.com/2012/06/oracle-dba-script-monitor-user-activity.html
Thursday, June 28, 2012. Oracle DBA script: Monitor user activity on the DB. Set verify off message off echo off pause off timing off time off. Column o format a8 heading 'O/S User'. Column u format a10 heading 'Oracle Userid'. Column s format a12 heading 'R-S Name'. Column txt format a45 heading 'Current Statement' word. Select osuser o,. Segment name s,. From v$session s,. Dba rollback segs r,. Where s.taddr = t.addr. And txidusn = r.segment id. And ssql address = sa.address. Posted by Shardul Singh.
webgeek-tutorials.blogspot.com
Web Gurus: ER Diagram for a College System Best Tutorials for Website design and Mobile Webs
http://webgeek-tutorials.blogspot.com/2011/09/er-diagram-for-college-system.html
Friday, September 23, 2011. ER Diagram for a College System. The ER diagram refined to have an 'is-a' relationship. The simple conceptual tables can now be designed in such case as:. STUDENT (st-id, dob). FULL-TIMEPROG (p-code, duration). PART-TIMEPROG (p-code, duration). REGISTERS (p-code, st-id). In an educational institute, there are several departments and students belong to one of them. Each department has a unique department number, a name, a location, phone number and is headed by a professor.
webgeek-tutorials.blogspot.com
Web Gurus: Netbeans Tips for ROR Best Tutorials for Website design and Mobile Webs
http://webgeek-tutorials.blogspot.com/2011/01/netbeans-tips-for-ror.html
Tuesday, January 11, 2011. Netbeans Tips for ROR. This editor indents, completes, and highlights your Ruby code syntactically as well as semantically. It assists you with rename refactoring, type inference, and navigation. The editor parses your code live as you type, so it can match words and brackets, mark errors and occurrences, and display new quick fixes and RDoc. With a few keystrokes you insert commonly used code snippets from live templates. Click on image to print / enlarge / download . Oracle t...
webgeek-tutorials.blogspot.com
Web Gurus: Reload / Refresh Page in jQuery Best Tutorials for Website design and Mobile Webs
http://webgeek-tutorials.blogspot.com/2012/07/reload-refresh-page-in-jquery.html
Tuesday, July 10, 2012. Reload / Refresh Page in jQuery. Here is the code to refresh the page when u click on a button component. Its just like you press "F5" button to refresh page. Code begins = = = = = = = = = = = = =. Title Reload/Refresh a Page in jQuery /title. Script type="text/javascript" src="http:/ code.jquery.com/jquery-1.7.2.js" /script. P")append(" strong Now Refreshing page. /strong ");. Input id="Refresh" type="Button" value="Refresh" /. Code Ends = = = = = = = = = = = = =.
webgeek-tutorials.blogspot.com
Web Gurus: nth-child CSS trick with IE Fix Best Tutorials for Website design and Mobile Webs
http://webgeek-tutorials.blogspot.com/2011/01/nth-child-css-trick-with-ie-fix.html
Wednesday, January 5, 2011. Nth-child CSS trick with IE Fix. Pseudo-classes allows you to select elements with a formula. By numbers of your choice. For instance,. Selects the 1st, 4th, 7th etc. child. Ul li:nth-child(3n 3) {. Select every third list item inside unordered lists. That is, the 3rd, 6th, 9th, 12th, etc. nth-child accepts two keywords: even and odd."Even" selects even numbered elements, like the 2nd, 4th, 6th, etc. "Odd" selects odd numbered elements, like 1st, 3rd, 5th, etc. If lt IE 7].
webgeek-tutorials.blogspot.com
Web Gurus: Oracle DBA script: tablespace usage in %, blocks used etc Best Tutorials for Website design and Mobile Webs
http://webgeek-tutorials.blogspot.com/2012/06/oracle-dba-script-tablespace-usage-in.html
Thursday, June 28, 2012. Oracle DBA script: tablespace usage in %, blocks used etc. SELECT RPAD(t.name,18,' ') tablespace ,. LPAD(TO CHAR(CEIL( (SUM(s.blocks)*COUNT(*) / (SUM(f.blocks) *. POWER(COUNT(DISTINCT(f.file#) ,2) * 100 ) ,3) Pct ,. LPAD(TO CHAR(TRUNC(SUM(f.blocks) * t.blocksize *. COUNT(*) * 1024 * 1024 * 1024 ),2) ,6) vol G ,. LPAD(TO CHAR(SUM(f.blocks) * t.blocksize * COUNT(DISTINCT(f.file#) /. COUNT(*) * 1024 * 1024 ) ,8) volume M ,. TRUNC(SUM(s.blocks) * t.blocksize /. AND fts# = t.ts#.
webgeek-tutorials.blogspot.com
Web Gurus: How to : jQuery UI Autocomplete - Combobox ( dropdown ) Best Tutorials for Website design and Mobile Webs
http://webgeek-tutorials.blogspot.com/2012/05/how-to-jquery-ui-autocomplete-combobox.html
Friday, May 4, 2012. How to : jQuery UI Autocomplete - Combobox ( dropdown ). Convert your select into beautiful jQuery UI Combobox. Its been fun with jQuery and UI is really cool. This is what i got when finished. ( final output ). You can customize the widget as you want. for this you need jQuery UI. I downloaded my own jQueryUI Theme using Theamroller. You can download default theme or customize it as per your project need, just download it from here. To do this cool widget i follow following steps.
webgeek-tutorials.blogspot.com
Web Gurus: Creating Cross-plattform Mobile Applications with Dojo Toolkit Best Tutorials for Website design and Mobile Webs
http://webgeek-tutorials.blogspot.com/2011/07/creating-cross-plattform-mobile.html
Monday, August 1, 2011. Creating Cross-plattform Mobile Applications with Dojo Toolkit. Is an open source toolkit that helps you write robust and efficient JavaScript code. JavaScript is a language that runs within the Web browser, and there are various flavors of Web browser that interpret the JavaScript in slightly different ways. Toolkits such as Dojo, YUI. And many others are designed to abstract away the browser idiosyncrasies so that you don't have to learn them all and handle them in your code.