MySQL
Getting started
- http://www.sqlteaching.com/
- https://www.codecademy.com/learn/learn-sql
- https://www.codecademy.com/catalog/language/sql
package main | |
import ( | |
"encoding/base64" | |
"flag" | |
"fmt" | |
"strings" | |
"github.com/gocolly/colly" | |
"github.com/gookit/color" |
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"strings" | |
) |
package model | |
import ( | |
"fmt" | |
) | |
type Person struct { | |
Name string | |
Age int | |
} |
# The workspace_utils.py module includes an iterator wrapper called keep_awake and a context manager | |
# called active_session that can be used to maintain an active session during long-running processes. | |
# The two functions are equivalent, so use whichever fits better in your code. | |
# | |
# EXAMPLE 1 | |
# | |
# from workspace_utils import keep_awake | |
# for i in keep_awake(range(5)): #anything that happens inside this loop will keep the workspace active | |
# # do iteration with lots of work here | |
# |
Some Jenkinsfile examples |