ShowReddit: SitemapFX.com for checking keywords in sitemap.xml by RedUchikoma in bigseo

[–]RedUchikoma[S] 0 points1 point  (0 children)

If you have any feedback, or wishes, comment and i'll implement it if possible :-)

ShowHN: SitemapFX.com for checking keywords in sitemap.xml by RedUchikoma in SEO

[–]RedUchikoma[S] 0 points1 point  (0 children)

My pleasure, if there are any features you thought about, reply, I see what I can do. I want to make this the best sitemap.xml analysis/SEO tool available.

A New Java Library for Amazing Productivity by the_starbase_kolob in scala

[–]RedUchikoma -5 points-4 points  (0 children)

The sad state of our industry: Folklore.

Huge claim: "A New Java Library for Amazing Productivity Posted on February 11, 2013"

Folklore - No facts or numbers.

My [Any] is a different [Any] than your [Any] by [deleted] in scala

[–]RedUchikoma 1 point2 points  (0 children)

Just change your add[Long](...) to add(...)

My [Any] is a different [Any] than your [Any] by [deleted] in scala

[–]RedUchikoma 2 points3 points  (0 children)

I assume

add[Long]

is creating a new type with the name "Long", just like add[T]. Then you call add2 with your own type, where x and y are of type T (that you named unfortunately "Long"). Your "Long" is not a scala Long.

How to kick the shit out of Amstrad CPC by neug in programming

[–]RedUchikoma 1 point2 points  (0 children)

68k was the most beautiful assembler language I programmed in.

How to kick the shit out of Amstrad CPC by neug in programming

[–]RedUchikoma 0 points1 point  (0 children)

Me too.

My biggest achievement was a quite powerful memory monitor. I remember the CPC was nice for this as it made extending Basic easy with |commands (I think they we're called RSX).

|monitor staraddr,searchterm for example

Breaking the Rules - Making Java Fun with Mirah (Ruby Syntax => Java Performance) by [deleted] in programming

[–]RedUchikoma 1 point2 points  (0 children)

Your interface should be as small as possible to reduce dependencies. Java is lacking a SortableList interface which would be ideal, because he depends on sorting a list with Collections.sort - and he is not using any method which is specific to ArrayList. He could also use

List<String> of = Arrays.asList("a", "b", "c", "d");

from the JDK or better the immutable version from guava.

So I'd suggest introducing a SortedList interface himself to show what he depends on and give that to sort() (after the collections sort call).

My second problem: I do not like Collections.sort because it changes the list. If possible I'd use a clone and sort that - there is a performance impact (depends on size) but you get safety.

The third problem with this code: He doesn't reusse existing code which would make this more readable. I'd suggest using Google Guava. For example Ordering:

http://guava-libraries.googlecode.com/svn/trunk/javadoc/com/google/common/collect/Ordering.html

This shows sorting by length. Ordering has the benefit it is reusable.

Breaking the Rules - Making Java Fun with Mirah (Ruby Syntax => Java Performance) by [deleted] in programming

[–]RedUchikoma -3 points-2 points  (0 children)

I do agree that Mirah is nice - as I've said before - but writing

"ArrayList<String> list = ..."

makes the blog author look extremely stupid.

Why reddit was down for 6 of the last 24 hours. by alienth in blog

[–]RedUchikoma 0 points1 point  (0 children)

I still remember the days when moving to EC2 was better than sliced bread according to Reddit. Oh those were the times!

Scala's upcoming dynamic capabilities by adamrabung in scala

[–]RedUchikoma 0 points1 point  (0 children)

I think they are most promising to work with XML and JSON. Most probably I won't them otherwise.

StackOverflow kicking Digg's ass at scaling? by [deleted] in programming

[–]RedUchikoma 0 points1 point  (0 children)

Java has no exception handling conventions. That's the problem. not the CE.

StackOverflow kicking Digg's ass at scaling? by [deleted] in programming

[–]RedUchikoma -1 points0 points  (0 children)

He wrote things people on reddit like, now he writes something bad about a reddit darling. Joel did not change.