Skip to main content

UHARC அதி-சுருக்குப்பை(high compression multimedia archiever)

இது ஒரு high compression multimedia archiver ஆகும்.
உங்களிடம் உள்ள multimedia கோப்புகளை compress செய்வதற்கு ஒரு சக்திவாய்ந்த
software. இதனை கொண்டு 24mb அளவுள்ள .txt files அடங்கிய folderஐ வெறும் 3mb அளவிற்கு
compress செய்தேன். compression ratio 16.1%.

uharc என்ற இந்த இலவச மென்பொருள் free for personal use.
இது .uha formatஇல் file compress செய்யும்.
uharc download என்று googleஇல் தேடவும்.
winuha போன்ற gui சார்ந்த செயலிகள் கிடைக்கும்.

command mode:
file download link:
http://rapidshare.com/files/157690697/uha.dll

இது வெறும் 108kb dll file ஆகும். இதனை uha.exe என rename செய்து கொள்ளவும்.
பிறகு அதனை c:/windows/system32 வில் paste செய்யவும்.
command line:
>uha a -mx -md32768 -r+ filename.uha filedestination

விளக்கம்:
aஇந்த swith நம் fileகளை சேர்க்க
-mxcompressorஐ highest compressionமுறைக்கு மாற்ற (PPM Compression)
-md32768சுருக்கியை largest possible dictionary sizeக்கு மாற்ற
-r+தற்போது உள்ள directoryயின் அனைத்து folderகளையும் compress செய்ய.
filename.uhaநாம் கொடுக்கவேண்டிய பெயர் மற்றும் extension .uha

மேலும்
eகம்ப்ரெஸ் செய்த file கலை extract செய்வதற்கான attribute  
-aeH+S+the attribute exclusion switch which excludes hidden and system files. This is basically to ignore compressing annoying system files like desktop.ini or thumbs.db
-ed+stores empty directories.
-mm+turns on multimedia detection and compression.
-opwill prompt user before overwriting files.
-pw[password]கடவுச்சொல் கொடுக்க

மேலும் உதவி பெறுவதற்கு வெறும் uha என்று command ப்ரோம்ப்ட் இல் type செய்யவும்.

Comments

  1. ஏதாவது ex:
    போட்டல் நன்றாக இருக்கும்
    நண்பரே.....

    ReplyDelete

Post a Comment

Popular posts from this blog

ARP/RARP full simulation program

server.c #include "stdio.h" #include "stdlib.h" #include "string.h" #include "sys/types.h" #include "sys/socket.h" #include "arpa/inet.h" #include "netinet/in.h" #define SA struct sockaddr struct IPmac { char ip[100]; char mac[100]; }; int main() { int sockfd,len,i; struct sockaddr_in servaddr; char buff[30],temp[30],ip[30],mac[30];

Configure opendns in ubuntu 12.04

Today i have changed my dns server name to opendns. which is alternative to default dns and it provide more secure, faster browsing experience. What is opendns? OpenDNS is the leading provider of Internet security and DNS services Industry leading malware and botnet protection Award winning Web filtering Faster, reliable, more secure DNS Ultra-reliable, globally distributed cloud network Simple, Smart, Easy How to configure opendns in ubuntu 12.04: open terminal and type sudo nano /etc/resolv.conf enter your password and change these lines   nameserver 208.67.222.222  nameserver 208.67.220.220 to use google public dns use 8.8.8.8, 8.8.4.4 instead of 208.67.222.222, 208.67.220.220 simple isn't..! now see your facebook load faster than before. opendns comes with parental control, so never worry about unwanted websites, and your childrens are safe now. to check your dns changed successfully goto welcome.opendns.com

Given a string, reverse only vowels in it; leaving rest of the string as it is

/* Given a string, reverse only vowels in it; leaving rest of the string as it is. Input : abcdef Output : ebcdaf */ import java.io.*; import java.util.*; public class VowelReverse { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String str = sc.next(); String vowels = ""; String ans = ""; int arr[] = new int[str.length()]; for(int i=0;i<str.length();i++) { if(str.charAt(i)=='a' || str.charAt(i)=='e' || str.charAt(i)=='i' || str.charAt(i)=='o' || str.charAt(i)=='u') { vowels+=str.charAt(i); arr[i]=1; } } String revVowels = new StringBuffer(vowels).reverse().toString(); int j=0; for(int i=0;i<str.length();i++) { if(arr[i]!=1) { ans+=str.charAt(i); } else { ans+=revVowels.charAt(j); j++; } } System.out.println(ans); } }