^ Craig Glenday: “Biggest-selling Album Ever”. Guinness World Records. 2006年5月17日時点のオリジナルよりアーカイブ。2012年12月3日閲覧。
^Gitlin, Martin (March 1, 2011). The Baby Boomer Encyclopedia. ABC-CLIO. p. 196. http://books.google.com.pe/books?id=pQakFJFPT4YC&q=%22with+65+million+albums+sold%22#v=snippet&q=%22with%2065%20million%20albums%20sold%22&f=false2012年3月15日閲覧。.
^Janosik, MaryAnn (2006). The Greenwood Encyclopedia of Rock History: The video generation, 1981-1990. Greenwood Press. p. 16. ISBN 978-0-313-32943-2. http://books.google.com/books?id=eSIKAQAAMAAJ&q=thriller+pop+/rock+album&dq=thriller+pop+/rock+album2011年7月14日閲覧. "The phenomenal success of Thriller as a landmark pop/rock album was enhanced further by Jackson's innovative dance based music videos"
^“The Rights Stuff”. snopes.com (2006年12月11日). 2006年12月11日閲覧。
^Leopold, Todd (2012年6月25日). “Michael Jackson's 'Thriller' At 30: Classic Track-By-Track Review”. Billboard. http://www.billboard.com/articles/news/473938/michael-jacksons-thriller-at-30-classic-track-by-track-review2012年12月3日閲覧. "Worldwide, estimates range as high as 110 million albums sold."
^Bill Wyman (2013年1月4日). “Did "Thriller" Really Sell a Hundred Million Copies?”. The New Yorker (Condé Nast). http://www.newyorker.com/online/blogs/culture/2013/01/did-michael-jacksons-thriller-really-sell-a-hundred-million-copies.html2013年1月10日閲覧。
^Carl Bialik (2009年). “Spun: The Off-the-Wall Accounting of Record Sales”. The Wall Street Journal (Dow Jones & Company (News Corporation)). http://online.wsj.com/article/SB124760651612341407.html2013年1月10日閲覧。
^Carl Bialik (2009年7月14日). “How many albums did Michael Jackson Sell?”. The Wall Street Journal (Dow Jones & Company (News Corporation)). http://blogs.wsj.com/numbersguy/how-many-albums-did-michael-jackson-sell-755/2013年1月10日閲覧。
^David Lara (2012年5月12日). “Michael Jackson's 'Bad' Gets a Revamp and More Inflated Sales!”. Impre (ImpreMedia). http://www.impre.com/la-gente-dice/viewArticle.action?articleId=2814749789799622013年1月10日閲覧。
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
0
I have successfully enabled authorization on MongoDB and I have created an account on the admin database and then I created an account for my database called test. The following connection string to connect to my test database works successfully: mongo --host 192.168.17.52 --port 27017 -u user1 -p password --authenticationDatabase test Only problem I have now is, I cannot execute commands such as: show dbs. I get the following error when I try to do so: "errmsg" : "not authorized on admin to execute command { listDatabases: 1.0, lsid: { id: UUID("a1d5bc0d-bc58-485e-b232-270758a89455") }, $db: "admin...
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
0
I've got the same issue at #9280. I tried all solutions from that topic with/without GlobalKey for Scaffold and Form but the problem wasn't fixed. I tried to build a authentication form with login and signup. But the keyboard doesn't show when I tap the TextFormField at the first time. Then I try to input some letter from physical keyboard, the widget is rebuilt. Like this: login screen Nothing to be log when I run flutter run --verbose, so I logged manually. Every tapping on field, the widget called dispose -> init -> build. [√] Flutter (Channel beta, v1.0.0, on Microsoft Windows [Version 10.0.17763.195], ...
1
I tried to upgrade a yummy sandwich made of two test slices (@JsonTest and @JdbcTest in my case, crunchy test code in between) adding spring boot 2.1 flavour to it. But it seems it was not much of a success. I cannot annotate my tests with many @...Test since they are now each bringing their own XxxTestContextBootstrapper. It used to work when they all used same SpringBootTestContextBootstrapper. @RunWith(SpringRunner.class) @JdbcTest @JsonTest public class Test { @Test public void test() { System.out.printn("Hello, World !"); } } The error I get from BootstrapUtils is illegalStateException : Configuration error: found multiple declarations of @BootstrapWith for test class I understand I might be doing something wrong here but is there an easy way I could load both Json and Jdbc contex...