Tue May 21 00:45:34 GMT 2024
From
/weblog/misc
I Went on the Dark Web and Instantly Regretted It. Accessing the forbidden parts of the World Wide Web, only to realize the depravity of humanity -
https://medium.com[..]web-and-instantly-regretted-ba768514fbad
(google search)
(amazon search)
Fri Mar 17 12:29:45 GMT 2023
From
/weblog/misc
A detailed overview of POP, IMAP and GMAIL -
http://www.macdevcenter.com/lpt/a/6702 The 12 steps to cure e-mail addiction
- Admit that e-mail is managing you. Let go of your need to check e-mail every ten minutes.
- Commit to keeping your inbox empty.
- Create files where you can put inbox material that needs to be acted on.
- Make broad headings for your filing system so that you have to spend less time looking for filed material.
- Deal immediately with any e-mail that can be handled in two minutes or less but create a file for mails that will take longer.
- Set a target date to empty your in box. Don't spend more than an hour at a time doing it.
- Turn off automatic send/receive.
- Establish regular times to review your e-mail.
- Involve others in conquering your addiction.
- Reduce the amount of e-mail you receive.
- Save time by using only one subject per e-mail; delete extra comments from forwarded e-mail, and make the subject line detailed.
- Celebrate taking a new approach to e-mail.
I think 5 and 6 is useful...
http://www.cnn.com[..]20/email.addiction.steps.reut/index.html How to control emails? -
http://www.russellbeattie.com/notebook/1008869.html Why Is Email Still So Terrible? Email is an awful online ID that we use for almost everything. -
https://getpocket.com[..]ther-sara-morrisons-are-ruining-my-inbox
(google search)
(amazon search)
Sun Feb 05 12:17:35 GMT 2023
From
/weblog/misc
真假難辨?Google 攜手 MyGoPen 教你用查核工具拆解不實資訊 -
https://www.inside.com.tw[..]5-google-mygopen-factcheck-give-you-tips The power of the press, such as it is, is like the power of academic scholars, scientific researchers, and Supreme Court Justices. It is not backed by force. It rests on faith: the belief that these are groups of people dedicated to pursuing the truth without fear or favor. Once they disclaim that function, they will be perceived in the way everyone else is now perceived, as spinning for gain or status. -
https://www.newyorker.com[..]06/when-americans-lost-faith-in-the-news
(google search)
(amazon search)
Thu Dec 08 13:48:03 GMT 2022
From
/weblog/misc
http://www.bbc.com[..]o-build-something-that-lasts-10000-years Life in many medieval towns revolved around constructing a cathedral, a massive undertaking that took generations of work by everyone from artists and architects to prisoners of war. -
https://www.nationalgeographic.com[..]-cathedrals-architecture-medieval-europe
(google search)
(amazon search)
Sat Oct 29 13:36:26 GMT 2022
From
/weblog/misc
The war in Ukraine has exposed the vehicle’s vulnerabilities. They can be overcome -
https://www.economist.com[..]l/2022/06/15/does-the-tank-have-a-future
(google search)
(amazon search)
Sat Nov 06 13:16:57 GMT 2021
From
/weblog/misc
How to work with wiki -
http://www.oreillynet.com/lpt/a/6646 Arguement about the pros and cons about review and approval process of editing -
http://martinfowler.com/bliki/WikipediaDeath.html Students are told not to use Wikipedia for research. But it’s a trustworthy source -
https://www.zmescience.com[..]ence/wikipedia-reliable-source-05112021/
(google search)
(amazon search)
Mon Jun 21 13:21:12 GMT 2021
From
/weblog/misc
Another notice about shuffling collection with random order -
http://www.codinghorror.com/blog/archives/001008.html with detailed analysis-
http://www.codinghorror.com/blog/archives/001015.html unique => not statistically independent and not uniformly distributed,
cannot be generated by normal Random Number Generator.
You may consider way like shuffling (for example, put 100 integer into an
ArrayList, calls Collections.shuffle(), get the numbers sequentially).
Most of the time unique random number can be replaced by hashCode() of
something because hash seldom (at order of magnitude 10^-100 for MD5) crash,
if you don't require it to be "ALWAYS" unique, you may consider hashCode()
as well.
>> Hi Hi,
>>
>> I would like to write a method to generate a number of random and unique
>> number. I try to do it myself as following. It's work but seem to be
>> stupid.
>>
>> I try to found it at java.util.Random API but I didn't found out a better
>> solution. Please comment. Many thx
>>
>> Random generator = new Random();
>> Vector randomVec = new Vector();
>>
>> int r = 0;
>>
>> try {
>> do {
>> r = generator.nextInt(100);
>>
>> if (!randomVec.contains(new Integer(r).toString())) {
>> randomVec.addElement(new Integer(r).toString());
>> j++;
>> }
>> } while (j < 20);
>> } catch (Exception e) {
>> e.printStackTrace();
>> }
(google search)
(amazon search)