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
for var 🍫= 0; 🍫<20000; 🍫++ { | |
println("🍫") | |
} |
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
.loader { | |
display: inline-block; | |
width: 36px; | |
height: 36px; | |
animation: spin 1s infinite linear; | |
} | |
@keyframes spin { | |
from { | |
transform: rotate(0deg); |
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
<div class="loader"></div> | |
<script> | |
$(".loader").html(twemoji.parse('🍣')); | |
</script> |
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
using Photoshop; | |
namespace ConsoleApplication1 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var app = new Application(); // Photoshop 起動 | |
var doc = app.Open(@"C:\Users\kureikei\Pictures\xmascard2014.jpg"); // ファイルを開く |
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
<?php | |
/* | |
Plugin Name: Pronama-chan shortcode | |
*/ | |
add_shortcode('pronama-chan-icon', 'pronama_chan_icon_func'); | |
function pronama_chan_icon_func($atts) { | |
extract(shortcode_atts(array( | |
'msg' => 'おはよう!' | |
), $atts)); |
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
<?php | |
/* | |
Plugin Name: Pronama-chan shortcode | |
*/ | |
add_shortcode('pronama-chan-icon', 'pronama_chan_icon_func'); | |
function pronama_chan_icon_func($atts) { | |
return '<img src="http://pronama.azurewebsites.net/icogen/image/thumb01.png" />'; | |
} | |
?> |
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
<?php /* | |
Plugin Name: Do Nothing Plugin | |
*/ ?> |
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
bl_info = { | |
"name": "Do Nothing Addon", | |
"category": ""} | |
def register(): | |
pass | |
def unregister(): | |
pass |
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
# テクスチャの UV テーブル | |
spriteUV = ((0, 0, 0.125, 0.1875), | |
(0.125, 0, 0.125, 0.1875), | |
(0.25, 0, 0.125, 0.1875), | |
(0.375, 0, 0.125, 0.1875), | |
(0.5, 0, 0.125, 0.1875), | |
(0.625, 0, 0.125, 0.1875)) | |
# スプライト制御 | |
class PronamaChanSprite: |
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
print("Pronama-chan") |