Go to ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/LATEST/
For macOS, download ncbi-blast-2.6.0+.dmg or similar
/** | |
* Create a simple CORS proxy with Cloudflare Workers | |
* to bypass cors restrictions in the browser. | |
* Example Usage: https://<worker_subdomain>.workers.dev/https://postman-echo.com/get?foo1=bar1&foo2=bar2 | |
*/ | |
addEventListener('fetch', event => | |
event.respondWith(handleRequest(event.request)) | |
) |
<html> | |
<head> | |
<title>daily-proverbs.html</title> | |
</head> | |
<body> | |
<script> | |
var d = new Date(); | |
document.getElementById("demo").innerHTML = d.getDate(); | |
</script> | |
<p> |
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<title>Redirect</title> | |
<script type="text/javascript"> // <![CDATA[ | |
// iPhone or iPad Version: | |
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPad/i))) { | |
window.location = "https://itunes.apple.com/us/app/fkcc/id1364772616?mt=8"; | |
} |
Go to ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/LATEST/
For macOS, download ncbi-blast-2.6.0+.dmg or similar
javascript:(function(){var script = document.createElement("script"); script.setAttribute("src", "//ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"); script.addEventListener('load', function() { var script = document.createElement("script"); document.body.appendChild(script); }, false); document.body.appendChild(script);})(); | |
javascript:(function(){$('a.save-job-link').click();})(); |
[보디빌딩매니아] (http://bbmania.com)
[네이버 블로그: 수피] (http://blog.naver.com/kiltie999)
성무제 간사님이 보여주신 비디오
Are Science and Faith in Conflict?
Richard Dawkins
Human Genome project
(define (fibo n) | |
(cond | |
((= n 0) 1) | |
((= n 1) 1) | |
(true (+ (fibo (- n 1)) (fibo (- n 2)))) | |
) | |
) | |
(define (sumofint n) | |
(cond |