graph LR
style Customer fill:yellow
style Epic fill:aquamarine
style Feature fill:yellowgreen
style Task fill:cornflowerblue
style Sprint fill:mediumpurple
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
function myFunction() { | |
const R = ramda.R; // Import Ramda | |
// Example of using Ramda: | |
const a = R.split('.', 'asdf.b.c.d') | |
Logger.log('a') | |
Logger.log(a) // [asdf, b, c, d] | |
} |
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
#!/bin/bash | |
# Connect to TerminusDB and dump all data (RDF-triplets) to local file | |
# https://gist.github.com/alexander-mart/ff1c896f55e5cc7774e922e3f977961b | |
# Access the TerminusDB CLI from the Docker Compose: | |
# https://terminusdb.com/docs/install-terminusdb-as-a-docker-container/#usingthecli | |
# TerminusDB dump command: | |
# https://terminusdb.com/docs/terminusdb-cli-commands/#triplesdump |
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
#asana_main>div.asanaView-bodyContainer>div.asanaView-body, | |
#asana_main>div.asanaView-bodyContainer>div.asanaView-body>div:nth-child(1), | |
#asana_main>div.asanaView-bodyContainer>div.asanaView-body>div:nth-child(4), | |
#asana_main>div.remix-topbar, | |
#asana_main>div.remix-topbar>div, | |
#asana_main>div.remix-topbar>div.react-mount-node>div>div, | |
#center_pane__contents>div>div>div.loading-boundary.hidden>div>div, | |
#grid>tbody, | |
.PageHeaderCollapsedStructure, | |
.TeamOverview, |
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
license: gpl-3.0 |
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
@startuml | |
package "PlantUML Repository" { | |
[Gitlab] | |
[Github] | |
[Github Gist] | |
[中文仓库] | |
} | |
[PlantUMLRenderServlet] --> [Gitlab] |
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
#!/usr/bin/env node | |
//please requist your app token from | |
//https://trello.com/1/connect?key=yourkey&name=git-hook&expiration=never&response_type=token&scope=read,write | |
var key = "your key"; | |
var token = "your token"; | |
//https://trello.com/board/-/4e9003324a517dad44465056 | |
var board_id = "4e9003324a517dad44465056"; | |
var Trello = require("node-trello"); |
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
#!/bin/sh | |
versionMaj="1" | |
versionMin="0" | |
versionRev="1" | |
version="$versionMaj.$versionMin-$versionRev" | |
echo "Removing old Postman tarballs" | |
rm -f $(ls Postman*.tar.gz) |
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://gitlab.com/vltlabs/git-trello-hook | |
https://github.com/xfguo/gitlab-commit-trello-comment | |
https://github.com/adunkman/node-trello | |
http://drakmail.ru/post/2015-12-06-trello-gitlab-rails-integration/ |
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
#!/bin/bash | |
# Заменяем строки с IP-адресом в файлах и именах файлов и папок в директорях /home /etc /usr | |
# Старый IP | |
old_ip="xxx.xxx.xxx.xxx" | |
# Новый IP | |
new_ip="yyy.yyy.yyy.yyy" |
NewerOlder