#Scalable Deep Neural Network Reading List
| --- tools/cpp/CROSSTOOL 1980-01-01 00:00:00.000000000 -0600 | |
| +++ tools/cpp/CROSSTOOL 2017-09-27 02:34:03.000000000 -0500 | |
| @@ -106,22 +106,21 @@ | |
| toolchain_identifier: "local_linux" | |
| tool_path { name: "ar" path: "/usr/bin/ar" } | |
| - tool_path { name: "compat-ld" path: "/usr/bin/ld" } | |
| - tool_path { name: "cpp" path: "/usr/bin/cpp" } | |
| + tool_path { name: "compat-ld" path: "/opt/xalt/0.7.6/sles11.3/bin/ld" } | |
| + tool_path { name: "cpp" path: "/opt/gcc/6.3.0/bin/g++" } |
| /* | |
| * Copyright (c) 2009-2017, Farooq Mela | |
| * All rights reserved. | |
| * | |
| * Redistribution and use in source and binary forms, with or without | |
| * modification, are permitted provided that the following conditions are met: | |
| * | |
| * 1. Redistributions of source code must retain the above copyright | |
| * notice, this list of conditions and the following disclaimer. | |
| * 2. Redistributions in binary form must reproduce the above copyright |
| #!/bin/sh | |
| brew cask install amethyst | |
| brew cask install appcleaner | |
| brew cask install bittorrent-sync | |
| brew cask install Caskroom/cask/aerial | |
| brew cask install cyberduck | |
| brew cask install evernote | |
| brew cask install flux | |
| brew cask install iterm2 |
Custom recipe to get OS X 10.11 El Capitan running from scratch, setup applications and developer environment. This is very similar (and currently mostly the same) as my 10.10 Yosemite setup recipe (as found on this gist https://gist.github.com/kevinelliott/0726211d17020a6abc1f). Note that I expect this to change significantly as I install El Capitan several times.
I use this gist to keep track of the important software and steps required to have a functioning system after a semi-annual fresh install. On average, I reinstall each computer from scratch every 6 months, and I do not perform upgrades between distros.
This keeps the system performing at top speeds, clean of trojans, spyware, and ensures that I maintain good organizational practices for my content and backups. I highly recommend this.
You are encouraged to fork this and modify it to your heart's content to match your own needs.
| #! /bin/bash | |
| sudo cp /usr/lib/parallels-tools/kmods/prl_eth/pvmnet/prl_eth.ko /lib/modules/`uname -a | awk '{print $3}'`/extra/ | |
| sudo cp /usr/lib/parallels-tools/kmods/prl_tg/Toolgate/Guest/Linux/prl_tg/prl_tg.ko /lib/modules/`uname -a | awk '{print $3}'`/extra/ | |
| sudo cp /usr/lib/parallels-tools/kmods/prl_fs/SharedFolders/Guest/Linux/prl_fs/prl_fs.ko /lib/modules/`uname -a | awk '{print $3}'`/extra/ | |
| sudo cp /usr/lib/parallels-tools/kmods/prl_fs/SharedFolders/Guest/Linux/prl_fs/prl_fs.ko /lib/modules/`uname -a | awk '{print $3}'`/extra/ | |
| sudo /sbin/depmod -a | |
| sudo /sbin/modprobe prl_eth | |
| sudo /sbin/modprobe prl_tg | |
| sudo /sbin/modprobe prl_fs | |
| sudo /sbin/modprobe prl_fs_freeze |