docker run -it --rm --name example -v "$PWD":/usr/src/app -w /usr/src/app node:5-slim node index.js
output:
#!/bin/bash | |
# Usage: slackpost <token> <channel> <message> | |
# Enter the name of your slack host here - the thing that appears in your URL: | |
# https://slackhost.slack.com/ | |
slackhost=PUT_YOUR_HOST_HERE | |
token=$1 |
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' | |
sudo apt-get update | |
sudo apt-get install google-chrome-stable |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test | |
sudo apt-get update | |
sudo apt-get install gcc-5 g++-5 | |
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 60 --slave /usr/bin/g++ g++ /usr/bin/g++-5 |
import java.util.Random; | |
/** | |
* | |
* @author Vijini | |
*/ | |
//Main class | |
public class SimpleDemoGA { |
Thank you for your interest in contributing to the PayPay’s OSS product (the “Product”). PayPay Corporation (“PayPay”) is very interested in receiving Your Contribution (defined below). In order to participate, we need to confirm how the rights in Your Contributions will be handled. Following the practices of other open source communities, PayPay requests that you grant PayPay a license, as indicated below, to the intellectual property rights in Your Contributions. PayPay requires that you have a Contributor License Agreement (“CLA”) on file prior to using any of Your Contributions. This helps us ensure that the intellectual property embodied within the Products remains unencumbered for use by the whole of the community. | |
Please review this CLA. By submitting Your Contribution, you accept and agree to be bound by the terms and provision of this CLA. | |
Please read this document carefully before signing and keep a copy for your records. | |
Definitions. | |
1.1. “Contribution” means any work of authorship (including softw |
Thank you for your interest in contributing to the PayPay's OSS product (the "Product"). PayPay Corporation ("PayPay") is very interested in receiving Your Contribution (defined below). In order to participate, we need to confirm how the rights in Your Contributions will be handled. Following the practices of other open source communities, PayPay requests that you grant PayPay a license, as indicated below, to the intellectual property rights in Your Contributions. PayPay requires that you have a Contributor License Agreement ("CLA") on file prior to using any of Your Contributions. This helps us ensure that the intellectual property embodied within the Products remains unencumbered for use by the whole of the community.
Please review this CLA. By submitting Your Contribution, you accept and agree to be bound by the terms and provision of this CLA.
Please read this document carefully before signing and keep a copy for your records.
1.1. &qu
// | |
// CollapsibleStackView.swift | |
// TemplateApp | |
// | |
// Created by Andrei Terentiev on 4/3/22. | |
// | |
import Foundation | |
import SwiftUI | |
import UniformTypeIdentifiers |