$ docker
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
{ | |
"status": "error", | |
"data": { | |
"error_code": "not_authenticated" | |
} | |
} | |
{ | |
"status": "error", |
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
File "/app/tests/conftest.py", line 152, in user | |
user.save() | |
File "/app/collector/core/models/employee.py", line 139, in save | |
return super(Employee, self).save(commit) | |
File "/app/collector/core/models/base.py", line 44, in save | |
traceback.print_stack() | |
File "/app/tests/conftest.py", line 193, in user_with_email | |
email.save() |
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
------------ Sat May 01 16:02:40 +06 2021 ------------ | |
[[0;32m OK [0m] Started [0;1;39mShow Plymouth Boot Screen[0m. | |
[[0;32m OK [0m] Started [0;1;39mForward Password R…s to Plymouth Directory Watch[0m. | |
[[0;32m OK [0m] Reached target [0;1;39mLocal Encrypted Volumes[0m. | |
[[0;32m OK [0m] Finished [0;1;39mFlush Journal to Persistent Storage[0m. | |
[[0;32m OK [0m] Mounted [0;1;39mMount unit for gnome-3-34-1804, revision 66[0m. | |
[[0;32m OK [0m] Mounted [0;1;39mMount unit for code, revision 62[0m. | |
[[0;32m OK [0m] Mounted [0;1;39mMount unit for heroku, revision 4044[0m. | |
[[0;32m OK [0m] Mounted [0;1;39mMount unit for gnome-3-34-1804, revision 60[0m. | |
[[0;32m OK [0m] Mounted [0;1;39mMount unit for heroku, revision 4048[0m. |
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> | |
<head> | |
<meta charset="utf-8"> | |
<title>Uppy</title> | |
<link href="https://releases.transloadit.com/uppy/v1.27.0/uppy.min.css" rel="stylesheet"> | |
</head> | |
<body> | |
<div id="drag-drop-area"></div> |
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
To delete all containers including its volumes use: | |
docker rm -vf $(docker ps -a -q) | |
To delete all the images: | |
docker rmi -f $(docker images -a -q) | |
docker system prune |
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
package main | |
import ( | |
"log" | |
"time" | |
"github.com/aws/aws-sdk-go/aws" | |
"github.com/aws/aws-sdk-go/aws/credentials" | |
"github.com/aws/aws-sdk-go/aws/session" | |
"github.com/aws/aws-sdk-go/service/s3" |
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
//1. | |
//Every Go program is made up of packages. | |
//Programs start running in package main. | |
//By convention, the package name is the same as the last element of the import path. | |
//For instance, the "math/rand" package comprises files that begin with the statement package rand. | |
//2. | |
import "fmt" | |
import "math" |
Cохранено с мобилки:
[
{
"id": 14,
"field_value": "",
"user_value": "5000",
"field_label": "Цена",
"field_type_mobile": "editNumber",
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 | |
$host = gethostname(); | |
$ip = gethostbyname($host); |
NewerOlder