Sunday, 18 September 2011

D:\>DIR /B /O:N > list.txt
D:\>DIR /B /O:N /S > list.txt

Monday, 5 September 2011

declare a varchar2(10); b varchar2(10); begin for i in 65..90 loop for j in 65..90 loop if(i=65) then dbms_output.put_line(chr(j)); end if; if(i=66) then dbms_output.put_line(chr(i)||chr(j)); end if; if(i=67) then dbms_output.put_line(chr(i)||chr(j)||chr(j+1)); end if; end loop; end loop; end; /

declare
a varchar2(10);
b varchar2(10);
begin
for i in 65..90
loop
for j in 65..90
loop
if(i=65) then
dbms_output.put_line(chr(j));
end if;
if(i=66) then
dbms_output.put_line(chr(i)||chr(j));
end if;
if(i=67) then
dbms_output.put_line(chr(i)||chr(j)||chr(j+1));
end if;
end loop;
end loop;
end;
/

Thursday, 1 September 2011











Rotated horizontal text


writing-mode is tb


x x x x xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Thursday, 25 August 2011

http://2.bp.blogspot.com/_60JWcqOL3AI/SRxgz8jEb-I/AAAAAAAAA9w/uGH31BgqGk8/s1600-h/msdos+Copy+FileNames+in+a+directory+into+a+text+file.PNG

Saturday, 20 August 2011