This file is now just a pointer to this proof. Believe that.
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
{ | |
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | |
"extends": ["config:base"], | |
"lockFileMaintenance": { | |
"enabled": true, | |
"extends": ["schedule:daily"] | |
}, | |
"nix": { | |
"enabled": true | |
} |
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
stages: | |
# - ... | |
- tag | |
changelog: | |
stage: tag | |
image: curlimages/curl:7.79.1 | |
only: | |
- dev # Feel free to update this condition | |
script: |
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
# Considering that your app version is stored in VERSION.md file | |
# | |
# Example: ./gitlab-changelog.sh | |
# Example: ./gitlab-changelog.sh <YOUR-GITLAB-PROJECT-ACCESS-TOKEN> | |
#!/bin/bash | |
app_version=$(cat VERSION.md) | |
branch=dev |
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
/** | |
* Gets the last version number of the project and generates remotely the changelog on the dev branch via GitLab API. | |
* | |
* Example: node ./gitlab-changelog.js | |
*/ | |
const axios = require('axios'); | |
const version = require('../../package.json').version; | |
const branch = 'dev'; |
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
{ | |
"meta": { | |
"theme": "kendall" | |
}, | |
"basics": { | |
"name": "Jiří Altman", | |
"label": "Senior System Engineer", | |
"picture": "", | |
"email": "[email protected]", |
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
CFGUTIL(1) BSD General Commands Manual CFGUTIL(1) | |
NAME | |
cfgutil -- Command-line iOS device management | |
SYNOPSIS | |
cfgutil [-C ] [-K ] | |
[-e | -f | --foreach] | |
[--format JSON | plist | text] [-v] command [ ...] |
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
#define TRISTAR_IIC_BUS 0 | |
#define CBTL1610_R 0x35 | |
#define CBTL1610_W 0x34 | |
void (*task_sleep)(uint64_t delay) = TARGET_BASEADDR + 0x1FFDC; | |
int (*iic_read)(int iic, uint8_t address, const void *send_data, size_t send_len, void *data, size_t len, uint8_t fmt) = TARGET_BASEADDR + 0xA008; | |
int (*iic_write)(int iic, uint8_t address, const void *data, size_t len) = TARGET_BASEADDR + 0xA168; | |
int (*tristar_write)(uint8_t reg, uint8_t value) = TARGET_BASEADDR + 0xD644; | |
int (*tristar_read)(uint8_t reg, uint8_t *data) = TARGET_BASEADDR + 0xD604; |
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
;Dear friends, | |
;some time has already passed since the great days of One Half epidemy. | |
;Nevertheless we still hope that a code of this popular virus inspires | |
;you also now. A lot of stuff has been written on the subject, so I tink, | |
;not many words are necessary about this little creature any more. | |
;And, so, here is the original source of One_Half.3577: | |
DOSSEG | |
.MODEL SMALL | |
.STACK 100h |
There are many ways to parse in variable into the nginx config file.
Some uses set_by_lua
which is offered by lua-nginx-module.
Some use envstubst
to populate varilabes into a template file.
Today I am going to show you how to do that with njs
the JS scripting engine for nginx.
## /etc/nginx/fetch_env.js
function fetch_upstream_host(r) {
return process.env.UPSTREAM_HOST;
NewerOlder