漫画、作曲、ラップ、プログラミングをやっています。I am Keita Roimo: Manga Artist, Musician, Rapper, Software Engineer.
Saturday, April 30, 2016
I was Fed up with the Political Bigotry
Politics is one of the harshest topics to talk in public cause we almost share nothing, there are always counter-arguments and someone who feel uncomfortable for your view. We might easily be indulged in bigotry. Trump is hated for his xenophobia and misogyny, while he definitely is supported by some citizens, called trolls, who also are part of American history and values. Megalomaniac figures often tend to be supported when people encounter with geopolitical or any other political threats. Always politics is sort of reflection of social reality. Criticizing demagogic politicians belongs to easy hippie style in 70's. What required most is reasoning et analysis on the background, IMAO.
Even Linus Torvalds said when (even technically) you speak out something, there are always people who are mad at your opinion. The most safe way to live is trying to disguise yourself as read-only, neutral ordinal guy. Probably in the socialist society there is no option but such attitude, disguising yourself and pretending to be analogous to the doctrine central institution(like Kremlin) provides. I personally am fed up with "politics", for there are no right answers(veritas) for it. Leftists omits threat, and Rightists dismisses international(or inter-racial) altruism. On the other hand, people have tendency to organize their ideological preference in their lifetime with self-centered instinct. Self-centered instinct implies your self-definition like ethnicity, religion, nationality, family, feature, community and it's benefit have to be top-priority. This might be part of Husserl's theory (phenomenology). There must be no a priori(aka thing-in-itself). This leads to the conclusion that it is non sequitur to be dedicated to any sorta political bigotry.
Friday, April 29, 2016
CNN's Anderson Cooper about Russian conspiracy theories on Malaysian MH1...
Julia Ioffe, who is Russian-origined journalist is currently being harassed on the Internet for dictating on Donald Trump and its wife, according to CNN money. She got death threats and picture sent to her implying Holocaust. Trolls, aka Trump's fanatic supporters might be oriented to xenophobia, misogyny, antisemitism et cetra.
I personally do not care so much about such hate related issues for I'm not living in U.S. but for the female journalist so clever, young, and attractive that it sounds horrible such terrific woman being currently under the attack of such cyber-bullies. She might, regard Russia as not being so threat to U.S. for the Kremlin not controlling whole part of the former Soviet Union, however it seems not 100 percent credible because the nation still has executed gigantic military power on bunch of peripheral countries, for instance, Cremea (but the fact that the nation lost the monopoly on the resources like natural gas contribute to the decline of the Kremlin's supremacy and hegemony).
TBH, I personally am fan of her because of her attractiveness.
See also:
http://money.cnn.com/2016/04/29/technology/julia-ioffe-online-harassment/
Saturday, April 23, 2016
Database partitioning memo
Database Partitioning
1. Range partitioning
example C0 {0001 ... 9999}
2. List partitioning
3. Hash partitioning (membership)
4. Composite partitioning
combinations of {1..3}
5. Horizontal partitioning
split by rows
6. Vertical partitioning
split by columns
Bibliography
https://en.wikipedia.org/wiki/Partition_%28database%29
http://dev.mysql.com/doc/refman/5.5/en/partitioning.html
1. Range partitioning
example C0 {0001 ... 9999}
2. List partitioning
3. Hash partitioning (membership)
4. Composite partitioning
combinations of {1..3}
5. Horizontal partitioning
split by rows
6. Vertical partitioning
split by columns
Bibliography
https://en.wikipedia.org/wiki/Partition_%28database%29
http://dev.mysql.com/doc/refman/5.5/en/partitioning.html
Saturday, April 16, 2016
Java 8で関数を引数にスル
import java.util.function.Function;
public class Main {
public static void main(String args[]){
toUpperCase( x -> x.toUpperCase(), "abc");
}
private static void toUpperCase(Function<String, String> func, String arg){
System.out.println(func.apply(arg));
}
}
public class Main {
public static void main(String args[]){
toUpperCase( x -> x.toUpperCase(), "abc");
}
private static void toUpperCase(Function<String, String> func, String arg){
System.out.println(func.apply(arg));
}
}
Saturday, April 9, 2016
Sunday, April 3, 2016
Friday, April 1, 2016
Subscribe to:
Posts (Atom)