Um unsere Webseite für Sie optimal zu gestalten und fortlaufend verbessern zu können, verwenden wir Cookies. Durch die weitere Nutzung der Webseite stimmen Sie der Verwendung von Cookies zu. Diese Seite zeigt lediglich nicht-personalisierte Werbung an, um der neuen EU-Datenschutzgrundverordnung gerecht zu werden.
Translate
Mittwoch, 31. Oktober 2018
Dienstag, 30. Oktober 2018
Upgrading all packages with pip
For pip < 10.0.1
import pip
from subprocess import call
packages = [dist.project_name for dist in pip.get_installed_distributions()]
call("pip install --upgrade " + ' '.join(packages), shell=True)
For pip >= 10.0.1
import pkg_resources
from subprocess import call
packages = [dist.project_name for dist in pkg_resources.working_set]
call("pip install --upgrade " + ' '.join(packages), shell=True)
https://gist.github.com/SeppPenner/efc73891480b67c561aac7ba47df9df7
Lenovo Docks-Ultra supports HDMI, DVI and Displayport at the same time, Pro only VGA and either Displayport or DVI
Lenovo Docks-Ultra supports HDMI, DVI and Displayport at the same time, Pro only VGA and either Displayport or DVI
Samstag, 27. Oktober 2018
Freitag, 26. Oktober 2018
Mittwoch, 24. Oktober 2018
Dienstag, 23. Oktober 2018
Montag, 22. Oktober 2018
Sonntag, 21. Oktober 2018
Freitag, 19. Oktober 2018
Jenkins Setup mit MSBuild
.Net Framework und Visual Studio installieren
PATH setzen auf MSBuild und Nuget
2 Buildschritte: 1. nuget restore Project.sln, 2. msbuild /p:Configuration=Release
Keine Umlaute verwenden in Projektnamen!!!
Mittwoch, 17. Oktober 2018
Dienstag, 16. Oktober 2018
Montag, 15. Oktober 2018
Freitag, 12. Oktober 2018
Dienstag, 9. Oktober 2018
Sonntag, 7. Oktober 2018
Donnerstag, 4. Oktober 2018
TelegramMessageBot is a project to send a message from a bot to a Telegram chat. The script was written and tested in Python 3.7.
TelegramMessageBot is a project to send a message from a bot to a
Telegram chat. The script was written and tested in Python 3.7.
Dienstag, 2. Oktober 2018
Using the Telegram API in Python
pip install python-telegram-bot
and use it like this:
import telegram
def main():
"Sends an example message"
bot = telegram.Bot('YourBotToken')
bot.sendMessage("YourChatId", "Test")
main()
def main():
"Sends an example message"
bot = telegram.Bot('YourBotToken')
bot.sendMessage("YourChatId", "Test")
main()
Abonnieren
Posts (Atom)