It seems that Fuse is compiled into the Ubuntu kernel by default.
To test you can use sshfs:
sudo apt-get install sshfs
mkdir tmp
sshfs localhost:/tmp ./tmp
ls tmp
Look at LSB init scripts for more information.
Copy to /etc/init.d:
# replace "$YOUR_SERVICE_NAME" with your service's name (whenever it's not enough obvious)| package com.vaughandroid.test.espresso.idlingresources; | |
| import android.app.Activity; | |
| import android.os.Handler; | |
| import android.support.annotation.IdRes; | |
| import android.support.annotation.NonNull; | |
| import android.support.test.espresso.*; | |
| import android.view.View; | |
| import java.lang.ref.WeakReference; |
| /* | |
| * Copyright (C) 2011 João Xavier | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
| # VSCode Nautilus Extension | |
| # | |
| # Place me in ~/.local/share/nautilus-python/extensions/, restrart Nautilus, and enjoy :) | |
| # mkdir -p ~/.local/share/nautilus-python/extensions && cp -f VSCodeExtension.py ~/.local/share/nautilus-python/extensions/VSCodeExtension.py && nautilus -q | |
| # | |
| # This script was written by cra0zy and is released to the public domain | |
| from gi import require_version | |
| require_version('Gtk', '3.0') | |
| require_version('Nautilus', '3.0') |
| @rem Do not use "echo off" to not affect any child calls. | |
| @setlocal | |
| @rem Get the abolute path to the parent directory, which is assumed to be the | |
| @rem Git installation root. | |
| @for /F "delims=" %%I in ("%~dp0..") do @set git_install_root=%%~fI | |
| @set PATH=%git_install_root%\bin;%git_install_root%\mingw\bin;%PATH% | |
| @if not exist "%HOME%" @set HOME=%HOMEDRIVE%%HOMEPATH% | |
| @if not exist "%HOME%" @set HOME=%USERPROFILE% |
Let's start by getting it out on the table: Sublime Text is great, and version 3 should no longer be considered "abandonware" as of build 3065. Sublime Text served me very, very well over the years. That said, trying out new things is a major part of leveling-up, and in that vein Vim deserves a go. (And have you seen some of those thoughtbot guys flying around in Vim? It's awesome!)
Getting Vim up-and-running on your Windows machine doesn't have to be an all-day project. In this post, we'll walk through:
As of 20/10/2017, a release file for Ubuntu 17.10 Artful Aardvark is not available on Download Docker.
If you are used to installing Docker to your development machine with get-docker script, that won't work either. So the solution is to install Docker CE from the zesty package.
sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
| /* | |
| * Copyright (C) 2014 skyfish.jy@gmail.com | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |