Mac OS Kitematic – Docker Image Toolbox with sharelatex

1. Install Kitematic (Beta) https://www.docker.com/toolbox 2. Install tiagoboldt/sharelatex-docker https://hub.docker.com/r/tiagoboldt/sharelatex-docker/ 3. Start the docker image 4. Open Exec terminal 5. Change directory to: /sharelatex/web 6. Execute: grunt create-admin-user --email joe@example.com  replace  joe@example.com with your adminstrator's email address 7. Follow the generated web link to set the password: Maybe you need to replace the ip and port to the ones provided by kitematic for your image, see: Settings/Ports/MAC IP:PORT 8. Publish (www): in order to be able to access your docker image from the internet you must expose your local docker subnet ip/port to your host subnet: ill recommend using nap/netcat/ncat for this: https://nmap.org/download.html#macosx 8.1 Install…

0 Comments

Guide: EyeTV with eyetvCamd and OSCam (1.20 r10948) and CCcam (2.3.0) and OS X 10.10.5

Because of so many requests: let me show you how to watch encrypted TV with your MAC and EyeTV via eyetvCamd. First things first: I compiled a new version of OSCam for MAC (OS X 10.10.5)! You can download it oscam-1.20-r10948-ssl. You only need OSCam locally if you want to use other protocols than OSCam with your Server (Host): e.g. CCCam Server: you must use a local OSCam Proxy -> use my OSCam version (1.20 r10984 compiled with SSL because of APPLE only using "secure" HTTPS as of 10.10.4?) Other tools and plugins can be found: here and here and here. If you…

5 Comments

Using Facebook Chat + Adium + XMPP / Jabber (List of online contacts)

As of June 2015 Facebook decided to rework their API for 3d party plugins. Because of this "bad idea" possibilities of connecting to Facebook via Adium or Pidgin were disabled. But Facebook did not disable the possibility to use their service via Jabber's XMPP protocol. So instead of creating a default Facebook account within Adium or Pidgin, create an Jabber XMPP one and use the following login/connection: <username>@chat.facebook.com <username> is your official Facebook username (See Facebook webpage for details, Or go to your Facebook homepage and look at end of the URL) [UPDATE] There is something wrong with the SSL certificate…

0 Comments

Mac OS 10.10 FreeImage Library > 3.17 Makefile for OS X > 10.10 Yosemite and Xcode 6.x

This is a working FreeImage Library Makefile to support the library building process  within OS X...   [Tip] Make sure to correctly setup your MAC OS X Xcode SDK within this Makefile. Download Makefile.osx   # Mac OSX makefile for FreeImage # General configuration variables: CC_X86_64 = clang CPP_X86_64 = clang++ -stdlib=libc++ #CPP_X86_64 = clang++ -stdlib=libc++ COMPILERFLAGS = -Os -fexceptions -fvisibility=hidden -DNO_LCMS -D__ANSI__ -DDISABLE_PERF_MEASUREMENT COMPILERFLAGS_X86_64 = -arch x86_64 COMPILERPPFLAGS = -Wno-ctor-dtor-privacy INCLUDE += INCLUDE_X86_64 = -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk CFLAGS_X86_64 = $(COMPILERFLAGS) $(COMPILERFLAGS_X86_64) $(INCLUDE) $(INCLUDE_X86_64) CPPFLAGS_X86_64 = $(COMPILERPPFLAGS) $(CFLAGS_X86_64) LIBRARIES_X86_64 = -Wl,-syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk LIBTOOL = libtool LIPO = lipo TARGET = freeimage STATICLIB…

3 Comments

Mac OS: Nvidia WebDriver GTX 750 and GTX9xx – Update Problems

[Do not copy and paste] Remember: always replace the following system version strings with your specific ones. Remember: you can force the default OS X display driver to load by adding nv_disable=1 to your boot flags   If you are using CLOVER keep in mind that you are loading the Nvidia driver by adding nvda_drv=1 to your boot flags. This results in the fact the Nvidia menu always show up OS X Default driver but is running the Nvidia webdriver: But if you exec: kextstat | grep web you will see something like the following (if  you are successfully running Nvidia's web driver) 112 2 0xffffff7f8261b000 0x2d7000…

0 Comments

Mac OS: Fix weird, not available, display resolutions

If you are like me: "not able to select the right display resolution for your display": go ahead an press the "OPTION KEY" while selecting "Scaled". This enables all (un)supported resolutions. The problem occurs for instance because of a bad EDID handshake of your graphics adapter and your display. For me the problem arises using a "LogiLink Mini DisplayPort Female to DisplayPort Male Converter" which connects via an original APPLE VGA adapter to a VGA display. (Other than that, this is the only solution to be able to use a VGA display with the latest OS X versions BUY - http://www.amazon.de/LogiLink-Mini-DisplayPort-Female-Converter/dp/B002UTSNGC)

0 Comments

Owncloud Setup Tutorial – Ubuntu 14.04 LTS – Bugfixes: php, utf8, untrusted, ssl, apache

1. Preparation - ubuntu 14.04 Long Time Support - Any Edition i386/amd64 - VMware/Native Bootable USB Stick MAC OS X diskutil list diskutil unmountDisk /dev/disk2 hdiutil convert -format UDRW -o Downloads/ubuntu-14.04.2-server-i386 Downloads/ubuntu-14.04.2-server-i386.iso sudo dd if=Downloads/ubuntu-14.04.2-server-amd64.dmg of=/dev/rdisk2 bs=1m diskutil eject /dev/disk2 2. Install Ubuntu Switch to root user (sudo su root) apt-get update apt-get upgrade 2.1 Setup Network nano /etc/network/interfaces Edit according to your settings: auto eth0 iface eth0 inet static address 192.168.0.200 netmask 255.255.0.0 gateway 192.168.0.1 dns-nameservers 192.168.0.1 192.168.0.1 3. Database - mysql apt get-install apache2 php5 php5-mysql MySQL Setup: user: root password: password mysql -u root -p create database dbname; CREATE…

1 Comment

COQ – Calculus of Inductive Constructions – Sublime – OS X 10.10.X

0. Preparation As of OS X 10.10 the official coq IDE version (Coq 8.4pl5) is not working. 0.1 Install brew Enter your terminal ans execute: ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 0.2 Install coq brew install coq 0.3 Install coqide brew install Caskroom/cask/coqide   1. Install "Sublime Package Control": If for some reason the console installation instructions do not work for you (such as having a proxy on your network), perform the following steps to manually install Package Control: Click the Preferences > Browse Packages… menu Browse up a folder and then into the Installed Packages/ folder Download Package Control.sublime-package and copy it into the Installed Packages/ directory Restart Sublime Text 2.…

0 Comments