We'll install MSOffice using the PlayOnLinux wizard. Additionally, MSOffice requires samba and winbind to properly work.
So, if not installed, install them:
sudo apt-get install playonlinux samba winbind
| #undef HID_ENABLED | |
| // Arduino Due ADC->DMA->USB 1MSPS | |
| // by stimmer | |
| // from http://forum.arduino.cc/index.php?topic=137635.msg1136315#msg1136315 | |
| // Input: Analog in A0 | |
| // Output: Raw stream of uint16_t in range 0-4095 on Native USB Serial/ACM | |
| // on linux, to stop the OS cooking your data: | |
| // stty -F /dev/ttyACM0 raw -iexten -echo -echoe -echok -echoctl -echoke -onlcr |
Most projects on GitHub have a main repository that's the focal point of activity. For example, the Example organization has the Example.com repository:
https://github.com/example/example.com
Developers of Example.com typically call this the 'upstream' repository. We'll come back to it in a moment.
| """ | |
| Example TensorFlow script for finetuning a VGG model on your own data. | |
| Uses tf.contrib.data module which is in release v1.2 | |
| Based on PyTorch example from Justin Johnson | |
| (https://gist.github.com/jcjohnson/6e41e8512c17eae5da50aebef3378a4c) | |
| Required packages: tensorflow (v1.2) | |
| Download the weights trained on ImageNet for VGG: | |
| ``` | |
| wget http://download.tensorflow.org/models/vgg_16_2016_08_28.tar.gz |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Jigsaw puzzle</title> | |
| <script type="text/javascript"> | |
| function save(filename, data) | |
| { | |
| var blob = new Blob([data], {type: "text/csv"}); |
| FROM ubuntu:18.10 | |
| # non interactive frontend for locales | |
| ENV DEBIAN_FRONTEND=noninteractive | |
| # installing texlive and utils | |
| RUN apt-get update && \ | |
| apt-get -y install --no-install-recommends pandoc texlive texlive-latex-extra texlive-generic-extra texlive-extra-utils texlive-fonts-extra texlive-bibtex-extra biber latexmk make git procps locales curl && \ | |
| rm -rf /var/lib/apt/lists/* |