steps: install and set password
- sudo apt-get install x11vnc
- x11vnc -storepasswd
create autostart entry
- cd .config
- mkdir autostart
- cd autostart
steps: install and set password
create autostart entry
' Hack to workaround the Powershell Console popup running on a Windows Scheduled Task | |
' Powershell limitations: https://github.com/PowerShell/PowerShell/issues/3028 | |
' | |
' Add this file in the same git root directory as the sync.ps1 | |
' | |
Dim shell,command | |
Dim oFSO : Set oFSO = CreateObject("Scripting.FileSystemObject") | |
Dim sScriptDir : sScriptDir = oFSO.GetParentFolderName(WScript.ScriptFullName) | |
command = "powershell.exe -nologo -File " & sScriptDir & "\sync.ps1" |
* Lower Layer: Numpad | |
* | |
* .-------------------------------------------. .-------------------------------------------. | |
* | | F7 | F8 | F9 | F10 | | | / ? | 7 & | 8 * | 9 ( | - _ | | | |
* |--------+------+------+------+------+------| |------+------+------+------+------+--------| | |
* | | F4 | F5 | F6 | F11 | | | * | 4 $ | 5 % | 6 ^ | , < | + | | |
* |--------+------+------+------+------+------+ |------+------+------+------+------+--------| | |
* | | F1 | F2 | F3 | F12 | | | 0 ) | 1 ! | 2 @ | 3 # | = + | | | |
* '----------------------+------+------+------+ |------+------+------+----------------------' | |
* | | | | | | | | |
name: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Install dependencies | |
run: | | |
sudo apt-get update |
package example.android.notepad.test; | |
import java.util.ArrayList; | |
import android.widget.ListView; | |
import com.example.android.notepad.NotesList; | |
import com.jayway.android.robotium.remotesolo.RemoteSolo; | |
import junit.extensions.TestSetup; | |
import junit.framework.Test; | |
import junit.framework.TestCase; | |
import junit.framework.TestSuite; |
This issue applies to: RHEL/CentOS 7.x and later | |
By default, firewalld will block intercontainer networking on the same docker host. To allow communication between the docker containers, run the following commands: | |
$ firewall-cmd --permanent --direct --add-rule ipv4 filter INPUT 4 -i docker0 -j ACCEPT |
youtube-dl --extract-audio --audio-format mp3 -o "%(title)s.%(ext)s" <url to playlist> |
Please try the following steps:
rm -f /Library/Application\ Support/Logitech.localized/Logitech\ Options.localized/Updates/PendingUpdates.xml
for b in `git branch -r | grep -v -- '->'`; do git branch --track ${b##origin/} $b; done | |
git fetch --all | |
git pull --all |