Integromat BASIC | Make Core (Annual) | |
---|---|---|
Operations | 10,000 | 10,000 |
Data transfer | 1 GB | 5 GB |
Minimum interval | 5 minutes | 1 minutes |
Max size of a single file | 50 MB | 100 MB |
Internal data storage | 10 MB | 10 MB |
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
[includeIf "gitdir:/usr/local/Homebrew/**"] | |
path = ~/.gitconfig_for_homebrew |
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
{ | |
"name": "Slack Free looper", | |
"flow": [ | |
{ | |
"id": 12, | |
"module": "util:SetVariables", | |
"version": 1, | |
"parameters": {}, | |
"mapper": { | |
"variables": [ |
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 | |
# usage: docker-cp-repo.sh src_repo dst_repo | |
set -euo pipefail | |
SRC_REPO=$1 | |
DST_REPO=$2 | |
SRC_TAGS=$(curl -s https://registry.hub.docker.com/v1/repositories/${SRC_REPO}/tags | jq -r '.[].name') | |
DST_TAGS=$(curl -s https://registry.hub.docker.com/v1/repositories/${DST_REPO}/tags | jq -r '.[].name') |
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
// ConsoleApplication3.cpp : このファイルには 'main' 関数が含まれています。プログラム実行の開始と終了がそこで行われます。 | |
// | |
#include <iostream> | |
//#include "test.h" | |
#include <test.h> | |
int main() | |
{ | |
std::cout << "Hello World!\n"; |
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
// ConsoleApplication3.cpp : このファイルには 'main' 関数が含まれています。プログラム実行の開始と終了がそこで行われます。 | |
// | |
#include <iostream> | |
#include "test.h" | |
//#include <test.h> | |
int main() | |
{ | |
std::cout << "Hello World!\n"; |
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
// not system include | |
// gcc: https://wandbox.org/permlink/MLrLASaM5o5A3UWm | |
// clang: https://wandbox.org/permlink/x6TT2NFROSmyLhV4 | |
// system include | |
// gcc: https://wandbox.org/permlink/XVHXnWIMyOfDMjl3 | |
// clang: https://wandbox.org/permlink/strTYwduT4ZLH5NK | |
// This file is a "Hello, world!" in C++ language by GCC for wandbox. | |
#include <iostream> | |
#include <cstdlib> |
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
name: Docker Build | |
on: | |
schedule: | |
- cron: "0 0 * * 1" | |
jobs: | |
push_to_registries: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo |
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
resources: | |
- name: ci_skip_cron_trigger | |
type: CronTrigger | |
configuration: | |
interval: '0 0 * * 2' | |
pipelines: | |
- name: ci_skip_noop | |
steps: | |
- name: noop |
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
resources: | |
- name: iutest_gitRepo | |
type: GitRepo | |
configuration: | |
gitProvider: GitHub | |
path: srz-zumix/iutest | |
branches: | |
include: master|^jfrog/.* | |
# https://www.jfrog.com/confluence/display/JFROG/Triggering+Pipelines+and+Steps#TriggeringPipelinesandSteps-CancellingPreviousRunsOnaGitRepositoryChange | |
cancelPendingRunsOn: |
NewerOlder