flowchart TD
%% Nodes
A("fab:fa-youtube <a rel="noopener" href="https://www.youtube.com/watch?v=T5Zthq-QR2A&" target="_blank">Starter Guide</a>")
B("fab:fa-youtube <a rel="noopener" href="https://www.youtube.com/watch?v=rfQ_yGJ8QAQ&" target="_blank">Make Flowchart</a>")
C("fa:fa-book-open <a rel="noopener" href="https://mermaid.js.org/syntax/flowchart.html" target="_blank">Learn More</a>")
D{"Use the editor"}
E(fa:fa-shapes Visual Editor)
F("fa:fa-chevron-up Add node in toolbar")
G("fa:fa-comment-dots AI chat")
---
title: Release flow
---
flowchart LR
classDef default fill:#5C307F,color:#FFF,stroke:#000000;
classDef begin fill:#BEC100,color:#000,stroke:#000000;
classDef finish fill:#FF8100,color:#FFF,stroke:#000000;
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Note
Highlights information that users should take into account, even when skimming.
Tip
Optional information to help a user be more successful.
Important
Crucial information necessary for users to succeed.
[!WARNING]
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Document</title> | |
<script src="script.js" defer></script> | |
</head> |
This file contains 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
@Echo Off | |
Set ServiceName=MySQL57 | |
SC queryex "%ServiceName%"|Find "STATE"|Find /v "RUNNING">Nul&&( | |
echo %ServiceName% Fora do AR | |
echo Start %ServiceName% | |
Net start "%ServiceName%">nul||( | |
Echo "%ServiceName%" não pode ser iniciado | |
exit /b 1 | |
) |
This file contains 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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "chrome", | |
"request": "launch", | |
"name": "Executar o Chrome contra localhost", | |
"url": "http://localhost:8100", | |
"sourceMaps": true, | |
"webRoot": "${workspaceFolder}/www" |
This file contains 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
<?php | |
defined('BASEPATH') OR exit('No direct script access allowed'); | |
class MY_Model extends CI_Model | |
{ | |
public function __construct() | |
{ | |
parent::__construct(); | |
} |
This file contains 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
https://scotch.io/tutorials/angularjs-multi-step-form-using-ui-router |
This file contains 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
import pyscreenshot as ImageGrab | |
def main(): | |
imagens = [] | |
# captura todas as imagens primeiro e deixa na memória | |
for i in range(10): | |
imagens.append(ImageGrab.grab()) | |
print("captura:" + str(i)) |
NewerOlder