Posts

Showing posts with the label text

Steganography Hide Text In Picture Files SRC

Image
Steganography Hide Text In Picture Files SRC � Informa��es: � Programa: Hide Text In Picture Files � Tamanho: 54,9 KB ::. � Data da Cria��o: 20/03/2008 [23:10] download  file  now

SOLVED java lang Exception java lang ClassCastException class com sun jersey core impl provider entity XMLJAXBElementProvider Text

Image
SOLVED java lang Exception java lang ClassCastException class com sun jersey core impl provider entity XMLJAXBElementProvider Text It is quite natural seeing ClassCastException in Hadoop MR Jobs like these for Hadoop beginers. java.lang.Exception: java.lang.ClassCastException: class com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$Text at org.apache.hadoop.mapred.LocalJobRunner$Job.run(LocalJobRunner.java:404) Caused by: java.lang.ClassCastException: class com.sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$Text at java.lang.Class.asSubclass(Class.java:3037) at org.apache.hadoop.mapred.JobConf.getOutputKeyComparator(JobConf.java:819) at org.apache.hadoop.mapred.MapTask$MapOutputBuffer.init(MapTask.java:836) at org.apache.hadoop.mapred.MapTask.createSortingCollector(MapTask.java:376) at org.apache.hadoop.mapred.MapTask.access$100(MapTask.java:85) at org.apache.hadoop.mapred.MapTask$NewOutputCollector.<init>(MapTask.java:584) at org.apache.hadoop....

Some useful tips using the find linux command to search for text

Some useful tips using the find linux command to search for text Searching for texts into projects source code is a common task when you are developing. I think the best aproach is to go to shell and run the commands bellow: Search for xml files containing the text "org.alfresco.util.CronTriggerBean" find . -type f -name "*.xml" -print | xargs grep "org.alfresco.util.CronTriggerBean" Look for javascript files containing the text "renderPickerHTML" find . -type f -name "*" -print | xargs grep "renderPickerHTML" But there are some projects that have lots of "minimized" files, and those files are not that useful when you are searching for sample code. In these cases, its better to filter the results, ignoring the minized ones. To do this, you just need to include one parameter to your command, like this find . -type f -not -iwholename *-min.js -name "*" -print | xargs grep "renderPickerHTML" The only...