文責 mala
経緯:
- Meety退会しようと思ったがアカウントがなかったので、退会するためにアカウントを作ることにした。
免責:
- 気になった範囲ですぐに見つかったもののうち、悪用可能なものを記載しています。
- 好ましくないが仕様だろうというものは書いていません。
FROM alpine:3.10.1 | |
LABEL maintainer "Adrian B. Danieli - https://github.com/sickp" | |
EXPOSE 80 443 | |
CMD ["nginx", "-g", "daemon off;"] | |
ENV NGINX_VERSION 1.19.1 | |
RUN set -ex \ |
chrome_ev: | |
gcc -o chrome_ev chrome_ev.cc |
<?php | |
// そのままでは動きません | |
if (!defined('XOOPS_ROOT_PATH')) { | |
exit(); | |
} | |
class EncryptSha1Password extends XCube_ActionFilter | |
{ | |
public function preFilter() | |
{ |
#!/bin/bash | |
# | |
# You can set up sSMTP by setting the following ENV variables: | |
# | |
# SSMTP_TO - This is the address alarms will be delivered to. | |
# SSMTP_SERVER - This is your SMTP server. Defaults to smtp.gmail.com. | |
# SSMTP_PORT - This is the SMTP server port. Defaults to 587. | |
# SSMTP_USER - This is your username for the SMTP server. | |
# SSMTP_PASS - This is your password for the SMTP server. Use an app password if using Gmail. | |
# SSMTP_TLS - Use TLS for the connection. Defaults to YES. |
# GIT / GIT FLOW ALIASES | |
alias gs="git stash" | |
alias gsa="git stash apply" | |
alias gsl="git stash list" | |
alias gsc="git stash clear" | |
alias gft="git fetch --tags" | |
alias gpt="git push --tags" | |
alias gcm="git checkout master" |
#!/usr/bin/env bash | |
echo "I'm sorry Ishikawa-san." | |
echo "I'm sorry Ishikawa-san." | |
echo "I'm sorry Ishikawa-san." | |
sed --follow-symlinks -i 's;SELINUX=enforcing;SELINUX=disabled;g' /etc/sysconfig/selinux | |
setenforce 0 |
<?php | |
// Use in the "Post-Receive URLs" section of your Bitbucket repo. | |
if ( $_POST['payload'] ) { | |
$data = json_decode($_POST['payload']); | |
$commits = $data->{"commits"}; | |