Posts

Showing posts from November 24, 2018

Varnish hotlink protection with multiple referers

Image
up vote 0 down vote favorite I have been trying to follow this: https://varnish-cache.org/trac/wiki/VCLExampleAvoidHotlinking And include multiple referers such as: if (req.http.host == "example.com" && req.url ~ "^/wp-content/uploads/" && (req.http.referer && req.http.referer !~ "^http://example.com/" && req.http.referer !~ "^http://twitter.com/" && req.http.referer !~ "^http://linkedin.com/" && req.http.referer !~ "^http://lnkd.in/" && req.http.referer !~ "^http://t.co/" && req.http.referer !~ "^http://google.com/" && req.http.referer !~ "^http://bing.com/" && req.http.referer !~ "^http://yahoo.com/")) { return (synth(403, &quo

泰澄

Image
泰澄 (たいちょう、天武天皇11年6月11日(682年7月20日) - 神護景雲元年3月18日(767年4月20日))は、奈良時代の修験道の僧 [1] 。加賀国(当時越前国)白山を開山したと伝えられる [1] 。 越(こし)の大徳 と称された [2] 。 目次 1 生涯 2 脚注 2.1 注釈 2.2 出典 3 参考文献 4 関連項目 5 外部リンク 生涯 越前国麻生津(福井市南部)にて、豪族三神安角(みかみのやすずみ)の次男として生まれる [3] 。14歳の時出家し、法澄と名乗る [3] 。越智山にのぼり、十一面観音を念じて修行を積んだ [3] 。大宝2年(702年)文武天皇から鎮護国家の法師に任じられ、豊原寺を建立する。その後養老元年(717年)越前国の白山にのぼり 妙理大菩薩 を感得した [3] 。同年、平泉寺を建立する。養老3年からは越前国を離れ、各地にて仏教の布教活動を行う [3] 。養老6年元正天皇の病気平癒を祈願し、その功により神融禅師(じんゆうぜんじ)の号を賜った [3] 。天平9年(737年)に流行した疱瘡を収束させた功により、孝謙仙洞重祚により称徳天皇に即位の折り、正一位大僧正位を賜り泰澄に改名した [4] と伝えられる。 脚注 [ ヘルプ ] 注釈 出典 ^ a b 「泰澄」 - 日本大百科全書(ニッポニカ) ^ 「泰澄」 - 大辞林 第三版 ^ a b c d e f 白山神社編『泰澄和尚伝記』、1953年、ASIN B000JB5UQ4 ^ 能州石動山縁起 参考文献 白山神社編『泰澄和尚伝記』、1953年、ASIN B000JB5UQ4 能州石動山縁起 関連項目 白山信仰 泉野櫻木神社(石川県金沢市) 大谷寺(福井県越前町) 中山寺(福井県高浜町) 月輪寺(京都市右京区) 豊原寺 平泉寺 栢野寺 栢野大杉 神童寺 法師 (旅館) 外部リンク 白山さん(白山比咩神社) みんな白山・泰澄大師伝説 (勝山郷土研究会、2011年2月4日閲覧。) 表 話 編 歴 仏教 基本教義 四諦 八正道 中道

Allan Morley

Image
Allan Morley From Wikipedia, the free encyclopedia Jump to navigation Jump to search Allan Morley (Scarborough, North Yorkshire, Great Britain, 29 April 1895 - Thanet, Kent 5 September 1960 [1] ) was a British comic artist. He first worked for DC Thomson in 1925, drawing a number of comic strips for the Sunday Post and for DC Thomson's story papers including The Wizard , where he drew Nero and Zero. He also drew a number of strips for both The Beano and The Dandy from the late thirties until the early fifties. He drew Keyhole Kate, Hungry Horace and Freddie the Fearless Fly, three long-running strips which first appeared in the first issue of The Dandy . He also drew a number of strips for The Beano , including Big Fat Joe, which appeared in the comic's very first issue. The last time he drew for The Beano was the last strip of The Magic Lollipops in issue 475 (25 August 1951). [2] Allan Morley died in Kent on

Calculate Pi algorithm from a tutorial using OpenMP

Image
up vote 1 down vote favorite I am studying this tutorial about OpenMP and I came across this exercise, on page 19. It is a pi calculation algorithm which I have to parallelize: static long num_steps = 100000; double step; void main () { int i; double x, pi double sum = 0.0; step = 1.0 / (double)num_steps; for(i = 0; i < num_steps; i++) { x = (I + 0.5) * step; sum = sum + 4.0 / (1.0 + x*x); } pi = step * sum; } I can not use, up to this point, #pragma parallel for. I can only use: #pragma omp parallel {} omp_get_thread_num(); omp_set_num_threads(int); omp_get_num_threads(); My implementation looks like this : #define NUM_STEPS 800 int main(int argc, char **argv) { int num_steps = NUM_STEPS; int i; double x; double pi; double step = 1.0 / (double)num_steps