- This ad turned up on Skype during a call this morning. Makes me wonder just who's using Skype. http://t.co/EEVhQELJZ3 11:50:40, 2015-07-29
- My Twitter Digest for 07/28/2015 http://t.co/4X4ihF5U3Y 15:30:11, 2015-07-29
My Twitter Digest for 07/28/2015
- RT @naypinya: at UC Davis, we have a new programming position to help move Libraries into linked open data! http://t.co/iK5SaU1f7u 09:30:43, 2015-07-28
- Lawyers Need “Soft Skills”—So Why Aren’t Law Schools Teaching Them? via @CELTLawBlog http://t.co/0A7N8KWKea 10:24:41, 2015-07-28
- 6 Questions with Rip Verkerke — University of Virginia School of Law http://t.co/WdUDEsMLo4 12:17:13, 2015-07-28
- Pitt Law Librarians Help Uncover Smoking Gun Evidence in Historic “Happy Birthday” Song Lawsuit | PittLaw https://t.co/0upqTL5YRs 12:35:13, 2015-07-28
- My Twitter Digest for 07/27/2015 http://t.co/VEzo4koIOU 15:30:10, 2015-07-28
- RT @UBLawLib: We get it, snow. Buffalo’s awesome, but it’s time to go away. For real. You’re embarrassing yourself…. http://t.co/QT2BYN1k… 16:48:15, 2015-07-28
- RT @brianwc: Almost the only thing I've ever read about document authentication that I enjoyed reading. Brilliant @waldojaquith
https://t.… 21:35:34, 2015-07-28
My Twitter Digest for 07/27/2015
- RT @sglassmeyer: Annotations aren't primary law. Primary law is the only thing we have a right to. con't. 10:04:25, 2015-07-27
- RT @sglassmeyer: Maybe if primary law were truly free, open secondary materials could be developed using topic modeling or AI. con't. 10:04:43, 2015-07-27
- RT @sglassmeyer: Copyright is a red herring. The real problem is governments publishing law in silos (corporate or format) and that can't … 10:04:49, 2015-07-27
- RT @sglassmeyer: The misinformation I'm seeing bandied about on the Internet about the status of codes is making me crazy. 10:04:57, 2015-07-27
- My Twitter Digest for 07/26/2015 http://t.co/ePaAHK56QQ 15:30:10, 2015-07-27
- How to Clone a MySQL Database. Useful for Development http://t.co/ED3i1kYoXx 16:02:36, 2015-07-27
- RT @jasonenter: Remote Command-Line debugging with PHPStorm for PHP/Drupal (including drush) http://t.co/T8Z0FyI6kw 16:35:22, 2015-07-27
Lawyers Need “Soft Skills”—So Why Aren’t Law Schools Teaching Them? via @CELTLawBlog
Lawyers Need “Soft Skills”—So Why Aren’t Law Schools Teaching Them? via @CELTLawBlog http://bestpracticeslegaled.albanylawblogs.org/2015/07/28/lawyers-need-soft-skills-so-why-arent-law-schools-teaching-them/
How to Clone a MySQL Database. Useful for Development
You can also use mysqldump and mysqlimport to transfer the database. For large tables, this is much faster than simply using mysqldump. In the following commands, DUMPDIR represents the full path name of the directory you use to store the output from mysqldump.First, create the directory for the output files and dump the database:
shell> mkdir DUMPDIRshell> mysqldump --tab=DUMPDIR db_nameThen transfer the files in the DUMPDIR directory to some corresponding directory on the target machine and load the files into MySQL there:
shell> mysqladmin create db_name # create databaseshell> cat DUMPDIR/*.sql | mysql db_name # create tables in databaseshell> mysqlimport db_name DUMPDIR/*.txt # load data into tablesDo not forget to copy the mysql database because that is where the grant tables are stored. You might have to run commands as the MySQL root user on the new machine until you have the mysql database in place.
After you import the mysql database on the new machine, execute mysqladmin flush-privileges so that the server reloads the grant table information.
Source: MySQL :: MySQL 5.0 Reference Manual :: 2.19.5 Copying MySQL Databases to Another Machine
Currently the best way to make a clone of a database on the CALI dev environment. Useful as a aid to development allowing the developer to test new things out on copy of a db so if it goes wrong you can get back to where you were.
My Twitter Digest for 07/26/2015
- RT @gumption: @PyDataConf Critique of dashboards by @EdwardTufte shown during @LorenaABarba's keynote #PyData https://t.co/GzceyaIq0b 13:57:31, 2015-07-26
- How long should a book chapter be? | Teleread http://t.co/UCRsn8unDi 15:13:50, 2015-07-26
- My Twitter Digest for 07/25/2015 http://t.co/6Tw7H8l2cI 15:30:11, 2015-07-26
- RT @carlmalamud: MSM! Engadget reports area man sued for posting Georgia Law. http://t.co/XswGa7vEby SOURCE: The Register. Big time! 20:40:33, 2015-07-26
My Twitter Digest for 07/25/2015
- RT @plugusin: We lose the confidence of our kids and communities when tech, instead of teaching and learning, stands at the center of our c… 08:16:02, 2015-07-25
- RT @felixlohmeier: Wikimedia is going to “Create a database listing every academic publication ever” and copy fulltext of OA. Big deal! htt… 08:16:31, 2015-07-25
- RT @JEGrant3: Join the Agile Attorneys Worldwide Slack Channel for robust discussion of #Lean and #Agile techniques for the law. http://t.c… 10:24:05, 2015-07-25
- My Twitter Digest for 07/24/2015 http://t.co/48Wt9l2KED 15:30:10, 2015-07-25
- Is it a fail if I can select 3 security questions (for banking) that all have the same answer? Or is it a personal problem? 17:53:08, 2015-07-25
- Cylon.js – JavaScript framework for robotics, physical computing, and the Internet of Things using Node.js http://t.co/v64hykk33R 22:31:44, 2015-07-25
- RT @timoreilly: This is very cool. Check it out: http://t.co/jMNuJidzTJ and http://t.co/ls20GQiq1h https://t.co/kkBJPMW3MY 22:32:28, 2015-07-25
How long should a book chapter be? | Teleread
How long should a book chapter be? | Teleread http://www.teleread.com/publishing/how-long-should-a-book-chapter-be/
Cylon.js – JavaScript framework for robotics, physical computing, and the Internet of Things using Node.js
Cylon.js – JavaScript framework for robotics, physical computing, and the Internet of Things using Node.js http://cylonjs.com/
My Twitter Digest for 07/24/2015
- Google Calendar Reminders Come to Slack | Several People Are Typing http://t.co/bSqpGYLY6R 07:19:23, 2015-07-24
- RT @SlackHQ: Missed our exciting integration announcement? Well, you won't miss nothin' from now on: Because Google Calendar: http://t.co/G… 07:19:42, 2015-07-24
- @mlzman #CALIcon16 is June 16-18, 2016 at Georgia State College of Law in Atlanta. @caliorg in reply to mlzman 10:29:29, 2015-07-24
- @sglassmeyer in ga state govt works hard to suppress both info and voters to maintain a palpable corruption. in reply to sglassmeyer 11:44:57, 2015-07-24
- LearnLeo May Help you Streamline Studying http://t.co/m9sNVVwMdM 15:14:34, 2015-07-24
- My Twitter Digest for 07/23/2015 http://t.co/cmd0ib01mi 15:30:30, 2015-07-24
- 6 Node Raspberry PI 2 Cluster Running Apache Spark and Hadoop http://t.co/7xqNaz61oc http://t.co/zpPvzeDu8U 15:44:16, 2015-07-24
- New Amazon CloudWatch Action – Reboot EC2 Instance | AWS Official Blog http://t.co/86NEJTALl4 15:55:43, 2015-07-24
- RT @mattcutts: This is ridiculous: https://t.co/HUfMEyipR3
Anyone in Georgia or Atlanta able to help educate the state about why this is a… 17:41:01, 2015-07-24
- RT @carlmalamud: Dear @JoshMcKoon @GovernorDeal You’re of course free to litigate, but I’ve said many times I’d love to come see you, talk … 18:17:46, 2015-07-24
- RT @carlmalamud: Now I’m happy, ABA Journal covering Georgia. http://t.co/aYGrdCecJE They did a cover article a year ago on edicts of gover… 20:50:21, 2015-07-24
- @KenHirsh @johnpmayer GA isn't exactly known for its good laws. in reply to KenHirsh 20:51:30, 2015-07-24
- RT @grimmelm: Hey, wait a minute, a few years ago I actually wrote a white paper about copyright in state laws. http://t.co/Salrq5FDiM 20:52:45, 2015-07-24
- RT @davewiner: A fully open source silo-free way to publish single-page docs to the web in a way that's reasonably future-safe. http://t.co… 20:54:00, 2015-07-24