When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:
main {
max-width: 38rem;
padding: 2rem;
margin: auto;
}
# Put this file on your desktop so you can run the updateblog.ps1 file from your desktop. | |
# Set the blog directory path | |
$blogPath = "YOURHUGOINSTALLLOCATION" | |
# Change to the blog directory | |
Set-Location -Path $blogPath | |
# Run the update script | |
& "$blogPath\updateblog.ps1" |
#include <stdint.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
// munged from https://github.com/simontime/Resead | |
namespace sead | |
{ | |
class Random | |
{ |
brew unlink thrift | |
brew install https://raw.githubusercontent.com/Homebrew/homebrew-core/16ebe5f1843e6cb54856311ff0f676be53007329/Formula/thrift.rb |
This should be used for new users to getting started with the container registry feature on docker-gitlab.
Docker Distribution >= 2.4
Docker GitLab >= 8.8.4 ( #708 must be merged)
TLS certificates because it should be run with https it's not designed to use it without https
<?php | |
use GuzzleHttp\Client; | |
use GuzzleHttp\Exception\ConnectException; | |
use GuzzleHttp\Exception\RequestException; | |
use GuzzleHttp\Handler\CurlHandler; | |
use GuzzleHttp\HandlerStack; | |
use GuzzleHttp\Psr7\Request as Psr7Request; | |
use GuzzleHttp\Psr7\Response as Psr7Response; | |
use Psr\Log\LoggerInterface; | |
const MAX_RETRIES = 2; |
# This file is part of my tinytinyRSSinstallation | |
# It is used by systemd under Debian Jessie | |
# WorkingDirectory=/var/www/html/ttrss must be YOUR Installationpath without | |
# ending slash / | |
# | |
# vim /lib/systemd/system/ttrss-update.service | |
# systemctl enable ttrss-update.service | |
# systemctl --system daemon-reload | |
# systemctl start ttrss-update.service | |
# systemctl status ttrss-update.service |
#まず見るべき
以下のURLは、常に更新されているコンテンツです。
# check if job exists | |
curl -XGET 'http://jenkins/checkJobName?value=yourJobFolderName' --user user.name:YourAPIToken | |
# with folder plugin | |
curl -s -XPOST 'http://jenkins/job/FolderName/createItem?name=yourJobName' --data-binary @config.xml -H "Content-Type:text/xml" --user user.name:YourAPIToken | |
# without folder plugin | |
curl -s -XPOST 'http://jenkins/createItem?name=yourJobName' --data-binary @config.xml -H "Content-Type:text/xml" --user user.name:YourAPIToken | |
# create folder |