create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
I have always struggled with getting all the various share buttons from Facebook, Twitter, Google Plus, Pinterest, etc to align correctly and to not look like a tacky explosion of buttons. Seeing a number of sites rolling their own share buttons with counts, for example The Next Web I decided to look into the various APIs on how to simply return the share count.
If you want to roll up all of these into a single jQuery plugin check out Sharrre
Many of these API calls and methods are undocumented, so anticipate that they will change in the future. Also, if you are planning on rolling these out across a site I would recommend creating a simple endpoint that periodically caches results from all of the APIs so that you are not overloading the services will requests.
$.ajax({ | |
url: "ajax.html", | |
success: function(data) { | |
alert('success!!'); | |
}, | |
error: function(data) { | |
alert('error!!!'); | |
} | |
}); |
(function () { | |
var tapClass = ""; | |
var hoverClass = ""; | |
var Hover = window.Hover = function (ele) { | |
return new Hover.fn.init(ele); | |
}; | |
Hover.fn = { | |
//Hover Instance | |
init : function (ele) { |
//テキストエリア | |
<textarea id="text_area"></textarea> | |
//残りの文字数の表示 | |
<p>残りの文字数 <span="count"></p> | |
//送信ボタン | |
<input type="submit" value="送信" id="submit"> | |
<script> |
個人で使っているブログの画像は全てflickrにアップしたものを使ってるんだけど、WordPressのアイキャッチ画像にもflickrにアップしたものを使いたい。 | |
ただし、前提条件としてサムネイルをWPをインストールしたサーバに配置しないこと。ざっとプラグインを探してみたところ、flickrからアイキャッチ画像にするものはあるけど、サムネイル画像はサーバ内に保存するものが多い。 | |
また、アイキャッチ画像は記事内の最初に出てくる画像でよい。ということで、面倒なUIとか要らない。設定したら自動でやってくれるというのが運用上助かる。 | |
WPでアイキャッチ画像のhtmlを出力する関数はthe_post_thumbnailらしいので、コレのソースを追ってみたところ、ざっくりこんな感じだった。 | |
1. get_the_post_thumbnail | |
2.1. get_post_thumbnail_id |
# ----------------------------------------------------------------- | |
# .gitignore for WordPress | |
# Bare Minimum Git | |
# http://ironco.de/bare-minimum-git/ | |
# ver 20150227 | |
# | |
# This file is tailored for a WordPress project | |
# using the default directory structure | |
# | |
# This file specifies intentionally untracked files to ignore |
# 目次 | |
+ JavaScript オブジェクトと値の型 |