仕事探しなう アイコンは googLeNetが99%超の確率でルーペと認識する画像。 2020/8/23 独自ドメイン t.doujin-constant.net は失効しました。
tumblrの仕様として旧ドメインから転送されるので、リンク等はそのままで大丈夫です。 If you want to read some articles in English, please put a comment or send me a message.
I will translate them.
Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
✓ Live Streaming✓ Interactive Chat✓ Private Shows✓ HD Quality
Anya is LIVE right now
FREE
Free to watch • No registration required • HD streaming
Building on Linux The Linux scons file as of right now is outdated. Not only that, you've got to hunt for the dependencies yourself, even if it wasn't. As of right now, it still is a decent base to get it to build.
cd /usr/lib ln -s x86_64-linux-gnu/liblua5.2.a liblua.a
あと、RocketはLuaとの連携のため自分でビルドしました。
git clone https://github.com/libRocket/libRocket cd libRocket/Build mkdir build cd build cmake-gui .. enable: BUILD_LUA_BINDINGS make -j sudo make install
cd /path/you/want/ wget http://www.libsdl.org/projects/smpeg/release/smpeg2-2.0.0.tar.gz tar xvzf smpeg2-2.0.0.tar.gz cd smpeg2-2.0.0 ./configure make sudo make install
Format string positional values are being skipped, which means their type (and size on the stack) cannot be checked. This could cause unexpected results including stack content leaks, especially when using %n. This is invalid, for example: printf("%2$s\n", 0, "Test"); because position 1 is skipped.
Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
✓ Live Streaming✓ Interactive Chat✓ Private Shows✓ HD Quality
Anya is LIVE right now
FREE
Free to watch • No registration required • HD streaming
% ./ina219_example.py Traceback (most recent call last): File "./ina219_example.py", line 3, in from Subfact_ina219 import INA219 File "/home/pi/subfact_pi_ina219/Subfact_ina219.py", line 5, in from Adafruit_I2C import Adafruit_I2C File "/home/pi/subfact_pi_ina219/Adafruit_I2C.py", line 9, in class Adafruit_I2C : File "/home/pi/subfact_pi_ina219/Adafruit_I2C.py", line 23, in Adafruit_I2C def __init__(self, address, bus=smbus.SMBus(1 if getPiRevision() > 1 else 0), debug=False): IOError: [Errno 2] No such file or directory
% ./ina219_example.py Shunt : 0.050 mV Bus : 1.408 V Current : 0.000 mA % ./ina219_example.py Shunt : 0.040 mV Bus : 1.920 V Current : 0.000 mA % ./ina219_example.py Shunt : 0.020 mV Bus : 2.304 V Current : 0.000 mA % ./ina219_example.py Shunt : 0.040 mV Bus : 2.304 V Current : 0.000 mA % ./ina219_example.py Shunt : 0.040 mV Bus : 2.304 V Current : 0.000 mA % ./ina219_example.py Shunt : 0.040 mV Bus : 0.640 V Current : 0.000 mA
import math import numpy as np def tailor(dx, n): return [1.0] + [dx**i/float(math.factorial(i)) for i in range(1, n + 1)] def make_mat_svd(dx, n, m): # obtain 0 - n th derivative with nearest 2m + 1 points if 2*n > m: print "Solution may be unstable." A = np.array([tailor(i*dx, n) for i in range(m, - m - 1, -1)]) U, s_vec, V_T = np.linalg.svd(A, full_matrices=True) S_inv = np.zeros((n + 1, 2*m + 1)) S_inv[:n + 1, :n + 1] = np.diag(1./s_vec) U_T = np.transpose(U) V = np.transpose(V_T) return V.dot(S_inv.dot(U_T))
class range_check(object): def __init__(self, low_limit=None, high_limit=None): self.min = low_limit self.max = high_limit def __contains__(self, val): ret = True if self.min is not None: ret = ret and (val >= self.min) if self.max is not None: ret = ret and (val <= self.max) return ret
if __name__ == '__main__': import matplotlib.pyplot as plt dx = 0.01 w = 2 M = make_param_mat(dx, w) ndim = M.shape[0] x = np.arange(-3.14, 12.56, dx) y = np.exp(-x/6.28) * np.cos(x) plt.axhline(color='black') plt.axvline(color='black') for i in range(ndim): f = np.convolve(y, M[i], mode='same') label = "{} th deriv".format(i) if i == 0: label = r"$\exp(-x/2\pi)\cos(x)$" plt.plot(x[w:-w], f[w:-w], label=label) plt.legend(loc='best') plt.show()
Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
✓ Live Streaming✓ Interactive Chat✓ Private Shows✓ HD Quality
Anya is LIVE right now
FREE
Free to watch • No registration required • HD streaming
module regex_module use iso_c_binding implicit none type :: regex_type byte, pointer :: buffer(:) type(C_ptr) :: preg end type regex_type type, bind(C) :: regmatch_t integer(c_int64_t) :: rm_so integer(c_int64_t) :: rm_eo end type regmatch_t interface function C_regcomp(reg, pattern, flags) result(status) bind(C,name="regcomp") import type(C_ptr), value :: reg character(len=1,kind=C_char), intent(in) :: pattern(*) integer(c_int), intent(in), value :: flags integer(C_int) :: status end function C_regcomp function C_regexec(reg,string,nmatch,matches,flags) result(status) bind(C,name="regexec") import type(C_ptr), intent(in), value :: reg character(len=1,kind=C_char), intent(in) :: string(*) type(regmatch_t), intent(out) :: matches integer(C_size_t), intent(in), value :: nmatch integer(C_int), intent(in), value :: flags integer(C_int) :: status end function C_regexec function C_regerror(errcode, reg, errbuf, errbuf_size) result(regerror) bind(C,name="regerror") import integer(C_size_t) :: regerror integer(C_int), value :: errcode type(C_ptr), intent(in), value :: reg character(len=1,kind=C_char), intent(out) :: errbuf integer(C_size_t), value :: errbuf_size end function C_regerror subroutine C_regfree(reg) bind(C,name="regfree") import type(C_ptr), intent(in), value :: reg end subroutine C_regfree end interface contains (モジュール関数の実装) end module regex_module
一応確認しますと、例えば
function C_regcomp(reg, pattern, flags) result(status) bind(C,name="regcomp")
exec status = 0 match = T match position 1 start: 0 , end: 9 match position 2 start: 3 , end: 6 match position 3 start: 6 , end: 9 match position 4 start: -1 , end: -1 match position 5 start: -1 , end: -1
もし、対象の文字列を適当に変更してマッチしないようにした場合、
exec status = 1 error message: regexec() failed to match match = F match position 1 start: 6445715608 , end: 0 match position 2 start: 0 , end: 0 (以下略)
cd xz-5.2.2 ./configure --with-libiconv-prefix=/usr/local --with-libintl-prefix=/usr/local make
コンパイルエラー、というかリンクエラー発生。
.libs/liblzma_la-stream_encoder_mt.o: In function `stream_encode_mt': xz-5.2.2/src/liblzma/../../src/common/mythread.h:389: undefined reference to `__beginthreadex'
<p> Are you an adult?br br <a href="http://yahoo.co.jp" target="_blank"> No </a>br <a href="http://not-so-erotic-page"> Yes </a>br / <!-- True entrance:http://very-erotic-page--> </p>
Element name: p, type: 1 Element childs: Element name: text, type: 3 Element content: Are you an adult? Element name: br, type: 1 Element name: br, type: 1 Element name: a, type: 1 Element attributes: - Attribute name: href, type: 2 - Attribute content: http://yahoo.co.jp - Attribute name: target, type: 2 - Attribute content: _blank Element childs: Element name: text, type: 3 Element content: No Element name: br, type: 1 Element name: a, type: 1 Element attributes: - Attribute name: href, type: 2 - Attribute content: http://not-so-erotic-page Element childs: Element name: text, type: 3 Element content: Yes Element name: br, type: 1 Element name: comment, type: 8 Element content: True entrance:http://very-erotic-page
5行目のAre you an adult?が単独の行を持っていますが、これはpタグのすぐ後ろの改行文字が含まれているためです。 htmlReadFileのオプションのうち、NO_BLANKSがないと、brタグとaタグの前後の改行だけのテキストノードなどが出来て無駄なノードが多くなります。 NOIMPLIEDがあると勝手に頭にhtmlとbodyノードを付けます。
Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
✓ Live Streaming✓ Interactive Chat✓ Private Shows✓ HD Quality
Anya is LIVE right now
FREE
Free to watch • No registration required • HD streaming
program test implicit none integer :: N,M,i real(8), allocatable :: nd(:) real(8), allocatable :: random_values(:) read(*,*) N allocate(nd(N)) M = 10 allocate(random_values(M)) do i = 1, N call random_number(random_values) nd(i) = sum(random_values)/dble(M) end do call draw_histogram(nd, 25, 50) contains subroutine draw_histogram(x, height, width) ! 上の節を参照のこと end subroutine draw_histogram end program test
module spointer implicit none type :: iptr integer, pointer :: p => null() end type iptr interface iptr module procedure make_iptr end interface iptr contains function make_iptr(i) result(r) integer,target :: i type(iptr) :: r r%p => i end function make_iptr end module spointer program test use spointer implicit none type(iptr),allocatable :: p(:) integer, allocatable :: x(:) integer :: i x = (/(i**2, i = 1,5)/) p = (/(iptr(x(i)), i = 1,5)/) p(3)%p = 0 write(*,*)x end program test