-
Do czego służy Vagrant?
- Do projektowania interfejsów użytkownika
- Do tworzenia testów jednostkowych
- Do zarządzania środowiskami wirtualnymi i automatyzacji ich konfiguracji
- Do klasyfikacji danych statystycznych.
-
Czym jest Docker?
- Językiem zapytań, używanym w bazach danych
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
install.packages("influxdbr") | |
library(dplyr) | |
library(influxdbr) | |
library(xts) | |
con <- influx_connection( | |
scheme = c("http", "https"), | |
host = "", | |
port = 8086, |
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
#!/usr/bin/python3 | |
import os | |
def main(): | |
urlFirst = 'http://www.mywebsite.com/img/' | |
extension = '.jpg' | |
for i in range(801): | |
os.system('wget' + urlFirst + str(i) + extension) | |
print("Downloaded!") |