You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Zprovoznění rozšíření pro gitlab.tul.cz ve VS Code
Jak zprovoznit GitLab Workflow ve VS Code s univerzitním certifikátem
Při pokusu o propojení oficiálního rozšíření GitLab Workflow ve VS Code s instancí GitLabu (např. univerzitní gitlab.tul.cz) často narazíte na chybu:
FetchError: request to https://gitlab.example.com/api/v4/personal_access_tokens/self failed,
reason: unable to verify the first certificate;
if the root CA is installed locally, try running Node.js with --use-system-ca
Auto-Registration of PowerShell Script to Windows Task Scheduler
Automatická registrace scriptu do plánovače uloh
Pro zaregistorvani scriptu ho staci manuálně spustit a podle nastavení se pak již automaticku bude dále psouštět v nastavaném intervalu.
Za vzorový kód vložte svůj kód vykonávající požadovanou periodickou cinost.
Odstranění naplánované ulohy
Spusťte PowerShell jako Správce (Administrator) a použijte příkaz Unregister-ScheduledTask. Protože je úloha registrovana do specifické složky, musíte uvést název i cestu:
SSL checker - jednoduchý make obalující openssl pro kontrolu platnosti SSL certifikátu webů
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
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
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
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
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
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
Programovací jazyk Python vznikl v roce 1991 a jeho autor Guido van Rossum Wiki. Je to tedy poměrně mladý jazyk. Rossum si dal za cíl vytvořit jazyk, který by byl jednoduchý svojí syntaxí a umožnil tak co největšímu množství lidí se začít učit programovat.
Syntaxe jazyka je velmi podobná pseudo-kódu, tedy způsobu jak se popisují algoritmy, nebo postupy toho co musí počítač vykonat, než vyřeší zadanou úlohu. Python se díky tomu řadí mezi programovací jazyky, které jsou pro člověka vůbec nejčitelnější.
Co se s Pythonem dá dělat?
Jeden z nejsilnějších nástrojů Pythonu jsou jeho knihovny (moduly). Umožňují nám využívat zdrojové kódy, které naprogramoval někdo jiný. Zpravidla platí, že ať člověk řeší jakýkoliv problém v Pythonu, tak s velkou jistotou už existuje nějaká knihovna, která za nás udělá 70% práce.