View yarpp-template-pandanote-sample.css
This file contains 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
.related-post { | |
display: inline-block; | |
} | |
a.related-post { | |
color: #1e3e8a | |
} | |
.related-post img { | |
float: left; |
View yarpp-template-pandanote-sample.php
This file contains 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
<h2>Related Posts / 関連ページ</h2> | |
<?php if(have_posts()):?> | |
<div class="related-post-list"> | |
<?php $adpos = 0; ?> | |
<?php while(have_posts()) : the_post(); ?> | |
<?php if ($adpos == 1): ?> | |
<!-- Insert your infeed ad --> | |
<?php endif; ?> | |
<a href="<?php the_permalink() ?>" | |
title="<?php the_title_attribute(); ?>" |
View regexp_test.vba
This file contains 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
Sub regexp_test() | |
Dim reg As Object | |
Set reg = CreateObject("VBScript.RegExp") | |
reg.Global = True | |
reg.Pattern = "^([^\(]+)\(([^\)]+)\)" | |
Dim output As String | |
output = reg.Replace("京急1000形1890番台(Le Ciel)", "$2 $1") | |
Debug.Print output | |
End Sub |
View mongodb_var_lib_nfs_fs.te
This file contains 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
module mongodb_var_lib_nfs 1.0; | |
require { | |
type mongod_t; | |
type var_lib_nfs_t; | |
class dir search; | |
class file { getattr read open }; | |
} | |
#============= mongod_t ============== |
View mongodb_sysctl_fs.te
This file contains 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
module mongodb_sysctl_fs 1.0; | |
require { | |
type mongod_t; | |
type sysctl_fs_t; | |
class dir search; | |
class file { getattr read open }; | |
} | |
#============= mongod_t ============== |
View uploadToIpfs.js
This file contains 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
// See https://pandanote.info/?p=8723 for details. | |
import * as fs from 'fs'; | |
import axios from 'axios'; | |
import FormData from 'form-data'; | |
function getBoundary(header) { | |
var tmpct = header['content-type'].split(/;/); | |
var boundary = tmpct.filter(function(e) { | |
return e.trim().startsWith("boundary="); | |
}); |
View openvpn_start.sh
This file contains 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
#!/bin/sh | |
modprobe tun | |
cd /jffs/openvpn/conf | |
nohup /usr/sbin/openvpn --config client.conf 2>&1 >/dev/null & |
View tfidf.py.sample
This file contains 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
# TF | |
aa = bow.copy() | |
np.set_printoptions(threshold=np.inf,formatter={'float': '{:.8f}'.format}) | |
for i in range(0,dim[0]): | |
ar = bow.getrow(i) | |
rowsum = np.matrix.sum(ar.todense()) | |
arr = ar/rowsum | |
aa[i] = arr | |
# IDF(ln) |
View freq2matrix.py.example
This file contains 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
with open(inputfile, encoding='utf-8') as fh: | |
freqlist = json.load(fh) | |
words = [] | |
articleids = [] | |
for k,v in freqlist.items(): | |
words.append(k) | |
for vv in v: | |
a,f = vv.split(",") |
View startipfs.sh
This file contains 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
#!/bin/bash | |
# | |
# See https://pandanote.info/?p=8205 for details. | |
# | |
MODE="start" | |
if [ -n "$1" ]; then | |
MODE="stop" | |
fi |
NewerOlder