search/tweets
では一週間以上前のツイートは検索できないので注意
search/universal
は公式のConsumerKey/ConsumerSecretでないと使用できない
当方では一切の責任を負いません
git filter-branch --prune-empty --tree-filter ' | |
git lfs track "*.ai" | |
git lfs track "*.psd" | |
git lfs track "*.eps" | |
git lfs track "*.jpg" | |
git lfs track "*.png" | |
git lfs track "*.svg" | |
git add .gitattributes | |
git ls-files -z | xargs -0 git check-attr filter | grep "filter: lfs" | sed -E "s/(.*): filter: lfs/\1/" | tr "\n" "\0" | while read -r -d $'"'\0'"' file; do |
Create the following folder structure in your cookbook:
test
└── integrationq
├── helpers
│ ├── serverspec
│ │ ├── shared_serverspec_tests
│ │ │ └── shared_tests2.rb
│ │ └── spec_helper.rb
docker run -rm -t -i -v $(dirname $SSH_AUTH_SOCK) -e SSH_AUTH_SOCK=$SSH_AUTH_SOCK ubuntu /bin/bash |
日時: | 2025-03-15 |
---|---|
作: | 時雨堂 |
バージョン: | 2025.2 |
URL: | https://shiguredo.jp/ |
時雨堂クラウドサービスを支える技術
cookbook 'mysql', | |
:git => 'https://github.com/9minutesnooze/mysql.git', | |
:ref => 'mysql56' | |
# (create oauth2 tokens from Google Console) | |
client_id = "" | |
client_secret = "" | |
# (paste the scope of the service you want here) | |
# e.g.: https://www.googleapis.com/auth/gan | |
scope = "" | |
#!/usr/bin/env php | |
<?php | |
/** | |
* CSSTidy - Command Line Interface (CLI) | |
* | |
* Command Line Interface that try to mimic as much as possible the C++ CLI | |
* version of csstidy. It should be a drop in replacment for the C++ CLI that is | |
* no longuer maintain. New settings like css_level are added. | |
* | |
* Copyright 2005, 2006, 2007 Florian Schmitz |
## mysql::master | |
ruby_block "store_mysql_master_status" do | |
block do | |
node.set[:mysql][:master] = true | |
m = Mysql.new("localhost", "root", node[:mysql][:server_root_password]) | |
m.query("show master status") do |row| | |
row.each_hash do |h| | |
node.set[:mysql][:master_file] = h['File'] | |
node.set[:mysql][:master_position] = h['Position'] | |
end |
require "sinatra" | |
require 'json' | |
require "oauth" | |
require "oauth/consumer" | |
require 'gmail_xoauth' | |
enable :sessions | |
before do | |
session[:oauth] ||= {} |