curl 'https://dlcdnets.asus.com/pub/ASUS/wireless/USB-BT400/DR_USB_BT400_1201710_Windows.zip' \
-o bt400-driver.zip
Driver & tools for bt400 can be found here
Plug device and do
curl 'https://dlcdnets.asus.com/pub/ASUS/wireless/USB-BT400/DR_USB_BT400_1201710_Windows.zip' \
-o bt400-driver.zip
Driver & tools for bt400 can be found here
Plug device and do
| #!/bin/sh | |
| sudo ps aux | grep Netskope | grep -v grep | awk '{ print "kill -9", $2 }' | sudo sh | |
| echo '[✓] Kill Netskope Process' | |
| sudo rm -rf /Applications/Remove\ Netskope\ Client.app | |
| echo '[✓] Removed Remove Netskope Client.app' | |
| sudo rm -rf /Library/Application\ Support/Netskope | |
| echo '[✓] Removed Agent of Netskope Client.app' |
| From https://synocommunity.com add http://packages.synocommunity.com to your NAS package sources. | |
| For that, go to NAS->Package Cnter->Click Settings->Package Sources tab. | |
| Then from the community, you can see Mosquitto. Install it. | |
| After installing, please stop the Mosquitto service before updating configuration. You can start service after changes. | |
| Enable Admin login for Synology | |
| Enable SSH in NAS | |
| Download putty and connect to NAS Server | |
| Login using admin | |
| Change to root user [sudo -i, {use admin password}] | |
| Find mosquitto.conf file [find / -name mosquitto.conf] |
| @RunWith(Parameterized::class) | |
| class KotlinTest(val paramOne: Int, val paramTwo: String) { | |
| companion object { | |
| @JvmStatic | |
| @Parameterized.Parameters | |
| fun data() : Collection<Array<Any>> { | |
| return listOf( | |
| arrayOf(1, "I"), // First test: (paramOne = 1, paramTwo = "I") | |
| arrayOf(1999, "MCMXCIX") // Second test: (paramOne = 1999, paramTwo = "MCMXCIX") |
| #!/bin/sh | |
| if [ "$#" -ne 1 ]; then | |
| echo "Example: ${0} [email protected]" | |
| exit 1 | |
| fi | |
| cat ~/.ssh/id_rsa.pub | ssh ${1} "cat >> /etc/dropbear/authorized_keys && chmod 0600 /etc/dropbear/authorized_keys && chmod 0700 /etc/dropbear" |
| /* | |
| * Copyright (C) 2014 The Android Open Source Project | |
| * | |
| * 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 |