Txt

Byte sized tech know-how.

  • Home
  • About

Tag Archives: library

01 Feb

strace to find Library Calls

Display library calls


strace -f -e open ls >/dev/null
admin Posted in Command Line, Linux call, command, debug, filler, library, Linux, strace Leave a comment
09 Jun

Show Shared Libraries

Show shared libraries required by ssh program


ldd /usr/bin/ssh
admin Posted in Command Line, Linux ldd, library, shared Leave a comment
29 Oct

A Simple Logging Function for JavaScript

Prints all the arguments of the function. This function uses console.log if firebug is available – else, uses alert.


function p() {
                for(var i=0; i<<arguments.length; i++) {
			if(window.console) console.log(arguments[i]);
			else alert(arguments[i]);
		}
}
admin Posted in Code, JavaScript debug, firebug, function, JavaScript, library, logging, script Leave a comment

Post navigation

Categories

  • Code
  • Command Line
  • Configuration
  • CSS
  • HTML
  • internet
  • JavaScript
  • Linux
  • Mobile
  • Perl
  • PHP
  • Python
  • Ruby
  • Uncategorized

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org
Fruitful theme by fruitfulcode Powered by: WordPress
↑