This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Get device IP address | |
adb shell ip addr show wlan0 | |
# Run ADB | |
adb tcpip 5555 | |
adb connect <device_ip_address>:5555 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git shortlog -s -n --all --no-merges |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sDefault := "Prosím, zadejte své údaje:"; | |
sNotEnough := "%1, nemáte oprávnění pro přístup k %2." + @NewLine + @NewLine + "Prosím, použijte uživatelské jméno, které má dostatečná přístupová práva:"; | |
sInvalid := "Zadali jste neplatné uživatelské jméno nebo heslo." + @NewLine + @NewLine + "Prosím, přihlaste se znovu:"; | |
sExpired := "Vaše přihlášení vypršelo. Prosím, přihlaste se znovu:"; | |
sOutOfSync := "%1, vaše přihlášení bylo zrušeno z důvodu problému s časem na přihlašovacích serverech." + @NewLine + @NewLine + "(Pro vyřešení problému bude nutné sesynchronizovat čas mezi servery.)" + @NewLine + @NewLine + "Prosím, přihlaste se znovu:"; | |
sLockedOrInvalid := "Jste uzamčen, nebo jste zadali neplatné uživatelské jméno nebo heslo." + @NewLine + @NewLine + "Prosím, přihlaste se znovu:"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell http osgi ss com.ibm.xsp.extlib |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell http osgi ss com.ibm.xsp.extlib |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# A startup script for the Lotus Domino 6 server | |
# | |
# chkconfig: 345 95 5 | |
# description: This script is used to start the domino \ | |
# server as a background process.\ | |
# | |
# Usage /etc/init.d/domino start|stop|status|restart |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Tell Amgr Run "DatabaseName.nsf" 'AgentName' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
' FUNCTION | |
Function TestFunction(param as String) As String | |
On Error GoTo ErrorThrower | |
' CUSTOM CODE | |
Exit Function | |
ErrorThrower: | |
Error Err, Error & Chr(13) & "Function: " & GetThreadInfo(1) & ", Line: " & Erl | |
End Function |