- デスクトップに任意の名前でフォルダを作る
- https://minecraft.net/download を開く
- ページ最後にある
minecraft_server.1.8.jar
を作ったフォルダにダウンロード - ターミナルを開く
Ctrl + Space キーを押して Spotlight を開き、ter
と入力すると早い cd ~/Desktop/[フォルダ名]
と入力して Enter- 下記コマンドを同様に入力
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:prompt(null,'"'+document.title+' '+location.href+'"');void(0); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:N=30,D=["日","月","火","水","木","金","土"],d=new Date();prompt(null,Array.apply(null, Array(N)).map(function(a,i){i&&d.setDate(d.getDate()+1);return (("0"+(d.getMonth()+1)).slice(-2))+"/"+(("0"+d.getDate()).slice(-2))+" ("+D[d.getDay()]+") ";}).join("\n"));void(0); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:a="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_",b="";for(i=0;i<32;i++)b+=a[~~(Math.random()*a.length)];prompt(null,b);void(0); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(()=>{const s=document.documentElement.style;s.backgroundColor='black';s.filter='invert(100%)';})();void 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: !this.$t$ && ($t$ = setInterval(function () { !confirm((new Date).toLocaleString()) && (clearInterval($t$), $t$ = null); }, 1000 * 60 * 60)); void 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: (function () { var target = document.querySelector("video"); if (target) { var canvas = document.createElement("canvas"); canvas.width = target.clientWidth; canvas.height = target.clientHeight; var context = canvas.getContext("2d"); context.drawImage(target, 0, 0, canvas.width, canvas.height); var image = new Image(); image.src = canvas.toDataURL("image/png"); var a = document.createElement("a"); a.download = location.host + "_" + (new Date()).toISOString() + ".png"; a.target = "_blank"; a.href = image.src; a.click(); } else { alert("There is no video tag."); } })(); void 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: (() => { const q = prompt('検索ワードを入力してください。'); if (q) { const a = document.createElement('a'); a.href = `https://twitter.com/search?src=typd&q=${encodeURIComponent(q)}%20from%3Amimonelu&f=live`; a.target = '_blank'; a.click(); } })(); void 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: (() => { let enabled = true, target = null; window.addEventListener('mouseover', (e) => { if (!enabled) return; target = e.target; target.style.outline = '4px solid #ff0000'; }); window.addEventListener('mouseout', (e) => { if (!enabled) return; target.style.outline = 'none'; target = null; }); window.addEventListener('click', (e) => { if (!enabled) return; e.preventDefault(); if (target) { const isBlur = target.getAttribute('data-is-blur'); if (!isBlur) { target.setAttribute('data-is-blur', true); target.style.filter = 'blur(8px)'; } else { target.removeAttribute('data-is-blur'); target.style.filter = 'none'; } } }); window.addEventListener('keyup', (e) => { if (!enabled) return; if (e.keyCode === 27) { enabled = false; if (target) { target.style.outline = 'none'; } } }); })(); void 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: window.open('https://twitter.com', 'twitter', `width=375,height=${screen.availHeight}`); void 0; |
OlderNewer