Posts

How Can I Center the Text in my Table?

Image
up vote 0 down vote favorite I want to center the text in each entry of my table: usepackage{array} documentclass[11pt, a4paper]{article} begin{document} begin{table}[h] centering begin{tabular*}{0.80textwidth}{| @{extracolsep{fill} } c||c|c|} hline & textbf{Monday} & textbf{Wednesday}\ hline Week 1 & August 27 & August 29\ & 1.1, 1.2 & 1.3, 1.4\ hline Week 2 & September 3 & September 5\ & color{darkred}NO CLASScolor{black}& 2.1, 2.2\ & & Chapter 1 Quiz\ hline Week 3 & September 10 & September 12\ & 2.3, 2.4 & 2.5\ hline Week 4 & September 17 & September 19\ & 3.1, 3.2 & 3.3, 3.4\ & & Chapter 2 Quiz\ hline Week 5 & September 24 & September 26...

Is there a significant issue to allocating all available cores to one VM if that is the only major task...

Image
up vote 2 down vote favorite I have a one-off task that requires me to use a VM to fix a build bug a software project using SCons (Python). The testing cycle is fairly short, resulting in frequent rebuilds. I'm using a 4-core laptop to host the VM and doing little else (a handful of tabs in Firefox, one terminal window for vim) aside from the work in the VM itself. I'm considering increasing the hardware allotment to the VM from 2 to 4 cores, but this would give all of my cores to the VM. Is this a terrible idea? More info in case it matters: VirtualBox on Ubuntu 18.04 LTS RAM: 2GB of 8GB used according to free , 4GB allocated to the VM. Storage: 256GB SSD (M.2) memory virtual-machine cpu multi-core core share | i...