regression_logistic.cpp | C++ source code to compute logistic regression. | 2022-11-21 22:39:27 |
eigen_test.cpp | C++ source code to test C++ matrix library Eigen. | 2022-11-09 00:39:36 |
logistic_regression.rb | Ruby script to calculate a logistic regression. | 2022-10-11 20:33:55 |
regression_curve_5d.cpp | C++ source code to calculate a simple regression curve(5d). | 2022-06-20 22:49:54 |
regression_curve_5d.rb | Ruby script to calculate a simple regression curve.(5d) | 2022-06-18 00:20:34 |
gauss_elimination_pivot.cpp | C++ source code to solve simultaneous equations with Gauss elimination method(pivot). | 2022-04-15 20:10:25 |
gauss_elimination_pivot.f95 | Fortran95 source code to solve simultaneous equations with Gauss elimination method(pivot). | 2022-04-14 20:19:01 |
gauss_elimination_pivot.rb | Ruby script to solve simultaneous equations with Gauss elimination method(pivot). | 2022-04-14 01:16:18 |
date_loop.sh | Bash script to loop by date. | 2021-07-02 18:23:15 |
make_eop.cpp | C++ source code to make an EOP(Earth Orientation Parameters) file. | 2021-05-31 18:30:38 |
blh2enu.cpp | C++ source code to convert a coordinate from WGS84(BLH) to ENU. | 2021-05-07 18:33:49 |
ecef2blh.cpp | C++ source code to convert a coordinate from ECEF to WGS84(BLH). | 2021-05-03 18:31:41 |
blh2ecef.cpp | C++ source code to convert a coordinate from WGS84(BLH) to ECEF. | 2021-05-03 18:30:32 |
mean_time.cpp | C++ source code to calculate a mean of 2 timespecs. | 2021-02-08 23:00:59 |
lorenz_attractor_runge_kutta.cpp | C++ source code to calculate a Lorenz attractor by Runge-Kutta's method. | 2020-10-15 19:16:10 |
lorenz_attractor_euler.cpp | C++ source code to calculate a Lorenz attractor by Euler's method. | 2020-10-15 19:02:39 |
infix2rpn_bt.cpp | C++ source code to convert a formula string to a RPN with a binary tree. | 2020-10-13 18:43:53 |
rpn.cpp | C++ source code to calculate a formula expressed with RPN. | 2020-10-12 19:28:01 |
infix2rpn.cpp | C++ source code to convert a formula string to a RPN. | 2020-10-12 19:20:39 |
infix2rpn_bt.rb | Ruby script to convert a formula string to a RPN by binary tree. | 2020-10-03 23:30:06 |
rpn.rb | Ruby script to calculate a formula expressed with RPN. | 2020-10-02 19:05:41 |
infix2rpn.rb | Ruby script to convert a formula string to a RPN. | 2020-10-01 20:45:20 |
vincenty_destination.cpp | C++ source code to calculate geodesical values by Vincenty's formulae.(destination) | 2020-09-16 19:30:57 |
vincenty_distance.cpp | C++ source code to calculate geodesical values by Vincenty's formulae.(distance) | 2020-09-16 19:17:44 |
rcc_kendall.cpp | C++ source code to calculate a Kendall's Rank Correlation Coefficient. | 2020-09-11 22:24:31 |
rcc_spearman.cpp | C++ source code to calculate a Spearman's Rank Correlation Coefficient. | 2020-09-09 20:08:23 |
rank_2.cpp | C++ source code to rank, considering same ranks(mid-rank method). | 2020-09-06 19:30:51 |
rank.cpp | C++ source code to rank, considering same ranks. | 2020-09-02 20:38:18 |
common.hpp | C++ source code to calculate binomial coefficients. | 2020-09-02 20:21:24 |
is_real.cpp | C++ source code to judge if a string is an real number. | 2020-08-25 19:04:29 |
is_integer.cpp | C++ source code to judge if a string is an integer. | 2020-08-23 19:11:08 |
factorial.cpp | C++ source code to calculate factorials with GMP. | 2020-08-18 19:01:14 |
spline_interpolation.cpp | C++ source code to interpolate by 3D-Spline. | 2020-08-12 07:30:31 |
lu_decomposition_crout.cpp | C++ source code to do LU-decomposition by Crout method. | 2020-07-29 20:32:19 |
lu_decomposition_inner_product.cpp | C++ source code to do LU-decomposition by inner-product form. | 2020-07-29 20:21:13 |
lu_decomposition_outer_product.cpp | C++ source code to do LU-decomposition by outer-product form. | 2020-07-26 19:14:33 |
file.hpp | C++ source code to calculate an adjusted coefficent of determination for multiple regression. | 2020-07-21 19:01:06 |
regression_multi_2e_2d.cpp | C++ source code to compute multiple regression equations.(2d) | 2020-07-16 18:51:02 |
gistfile1.txt | C++ source code to compute multiple regression equations.(3 explanatory variables) | 2020-07-11 19:46:27 |
regression_multi_2e.cpp | C++ source code to compute multiple regression equations. | 2020-07-06 19:05:42 |
file.hpp | C++ source code to calculate a coefficent of determination for simple 2D regression. | 2020-06-30 19:54:45 |
file.hpp | C++ source code to calculate a coefficent of determination for simple linear regression. | 2020-06-26 19:07:01 |
regression_curve_exp_e.cpp | C++ source code to calculate a simple regression curve(exp_e). | 2020-06-05 22:43:22 |
regression_curve_pow.cpp | C++ source code to calculate a simple regression curve(exp). | 2020-06-05 22:32:31 |
regression_curve_pow.cpp | C++ source code to calculate a simple regression curve(pow). | 2020-06-05 22:24:52 |
regression_curve_frac.cpp | C++ source code to calculate a simple regression curve(frac). | 2020-06-05 22:17:11 |
regression_curve_ln.cpp | C++ source code to calculate a simple regression curve(ln). | 2020-05-31 18:52:58 |
regression_curve_sqrt.cpp | C++ source code to calculate a simple regression curve(sqrt) | 2020-05-25 19:40:09 |
regression_curve_4d.cpp | C++ source code to calculate a simple regression curve(4d). | 2020-05-19 20:04:09 |
regression_curve_3d.cpp | C++ source code to calculate a simple regression curve(3d). | 2020-05-13 23:13:33 |
regression_curve_2d.cpp | C++ source code to calculate a simple regression curve(2d). | 2020-05-09 23:20:45 |
regression_line.cpp | C++ source code to calculate a simple linear regression line. | 2020-05-07 23:33:34 |
test_csv.cpp | C++ source code to read csv data(v2). | 2020-03-07 22:50:11 |
inverse_matrix.f95 | Fortran 95 source code to calculate an inverse matrix by cofactor matrix. | 2020-02-05 20:50:20 |
determinant.f95 | Fortran 95 source code to calculate a determinant by cofactor expansion. | 2020-02-05 20:29:46 |
test_inverse_matrix.rb | Ruby script to calculate an inverse matrix by cofactor matrix. | 2020-02-04 23:01:03 |
test_determinant.rb | Ruby script to calculate a determinant by cofactor expansion. | 2020-02-04 22:45:57 |
adjusted_coefficient_of_determination.f95 | Fortran 95 source code to calculate an adjusted coefficent of determination for multiple regression. | 2020-02-02 20:07:52 |
adjusted_coefficient_of_determination.rb | Ruby script to calculate an adjusted coefficient of determination. | 2020-02-02 19:55:24 |
regression_multi_3e.f95 | Fortran 95 source code to compute multiple regression equations.(3 explanatory variables) | 2020-01-31 20:15:14 |
regression_multi_3e.rb | Ruby script to compute multiple regression equations.(3 explanatory variables) | 2020-01-31 20:07:02 |
calc_rcc_kendall.f95 | Fortran 95 source code to calculate a Kendall's Rank Correlation Coefficient. | 2020-01-29 22:38:42 |
calc_rcc_spearman.f95 | Fortran 95 source code to calculate a Spearman's Rank Correlation Coefficient. | 2020-01-29 22:33:49 |
calc_rcc_spearman.rb | Ruby script to calculate a Kendall's Rank Correlation Coefficient. | 2020-01-28 20:56:13 |
calc_rcc_spearman.rb | Ruby script to calculate a Spearman's Rank Correlation Coefficient. | 2020-01-28 20:49:11 |
binom_coeff.f95 | Fortran 95 source code to calculate binomial coefficients. | 2020-01-27 20:44:30 |
test_binom.rb | Ruby script to calculate binomial coefficients. | 2019-10-20 01:42:06 |
calc_central_angle.rb | Ruby script to calculate a central angle betweetn 2 points on earth. | 2019-08-31 02:59:44 |
calc_vincenty.rb | Ruby script to calculate geodesical values by Vincenty's formulae. | 2019-08-22 18:57:27 |
regression_multi_2d.f95 | Fortran 95 source code to compute multiple regression equations.(2d) | 2019-08-15 20:12:01 |
regression_multi_2d.rb | Ruby script to calculate a multiple regression function.(2d) | 2019-08-15 19:55:37 |
regression_multi_v2.f95 | Fortran 95 source code to compute multiple regression equations.(v2) | 2019-08-14 23:25:17 |
regression_curve_exp_e.f95 | Fortran 95 source code to calculate a simple regression curve.(exp_e) | 2019-05-08 20:28:44 |
regression_curve_exp.f95 | Fortran 95 source code to calculate a simple regression curve.(exp) | 2019-05-08 20:24:45 |
regression_curve_pow.f95 | Fortran 95 source code to calculate a simple regression curve.(power) | 2019-05-08 20:20:57 |
regression_curve_frac.f95 | Fortran 95 source code to calculate a simple regression curve.(frac) | 2019-05-08 20:14:57 |
regression_curve_ln.f95 | Fortran 95 source code to calculate a simple regression curve.(ln) | 2019-05-08 20:06:56 |
regression_curve_sqrt.f95 | Fortran 95 source code to calculate a simple regression curve.(sqrt) | 2019-05-08 20:01:06 |
regression_curve_4d.f95 | Fortran 95 source code to calculate a simple regression curve.(4d) | 2019-05-08 19:55:32 |
regression_curve_3d.f95 | Fortran 95 source code to calculate a simple regression curve.(3d) | 2019-05-08 19:46:22 |
regression_curve_exp_e.rb | Ruby script to calculate a simple regression curve.(exp_e) | 2019-05-06 20:26:56 |
regression_curve_exp.rb | Ruby script to calculate a simple regression curve.(exp) | 2019-05-06 20:19:56 |
regression_curve_pow.rb | Ruby script to calculate a simple regression curve.(power) | 2019-05-06 20:08:23 |
regression_curve_frac.rb | Ruby script to calculate a simple regression curve.(frac) | 2019-05-06 20:00:25 |
regression_curve_ln.rb | Ruby script to calculate a simple regression curve.(ln) | 2019-05-06 19:55:11 |
regression_curve_sqrt.rb | Ruby script to calculate a simple regression curve.(sqrt) | 2019-05-06 19:49:33 |
regression_curve_4d.rb | Ruby script to calculate a simple regression curve.(4d) | 2019-05-06 19:39:41 |
regression_curve_3d.rb | Ruby script to calculate a simple regression curve.(3d) | 2019-05-06 19:29:25 |
coefficient_of_determination_2d.f95 | Fortran source code to calculate a coefficent of determination for simple 2D regression. | 2019-04-02 20:38:08 |
coefficient_of_determination_line.f95 | Fotran source code to calculate a coefficent of determination for simple linear regression. | 2019-04-02 20:27:58 |
coefficient_of_determination_2d.rb | Ruby script to calculate a coefficent of determination for simple 2D regression. | 2019-03-30 22:17:29 |
coefficient_of_determination_line.rb | Ruby script to calculate a coefficent of determination for simple linear regression. | 2019-03-30 20:44:04 |
regression_curve_2.f95 | Fortran 95 source code to compute a simple regression curve(2d)(ver.2). | 2019-03-18 00:48:31 |
regression_curve.f95 | Fortran 95 source code to compute a simple regression curve(2d). | 2019-03-17 22:30:20 |
regression_line_2.f95 | Fortran 95 source code to calculate a simple linear regression line.(Ver.2) | 2019-03-16 20:44:42 |
regression_curve_2.rb | Ruby script to calculate a simple linear regression curve.(Ver.2) | 2019-03-15 20:30:13 |
regression_line_2.rb | Ruby script to calculate a simple linear regression line.(Ver.2) | 2019-03-15 20:03:09 |
sle_lu.f95 | Fortran 95 source code to solve simultaneous equations by LU-decomposition(outer-product form). | 2019-03-14 20:17:31 |
sle_lu.rb | Ruby script to solve simultaneous equations by LU-decomposition(outer-product form). | 2019-03-14 20:11:04 |
lu_decomposition_3.f95 | Fortran 95 source code to do LU-decomposition by Crout method. | 2019-03-11 00:30:33 |
lu_decomposition_2.f95 | Fortran 95 source code to do LU-decomposition by inner-product form. | 2019-03-11 00:26:14 |
lu_decomposition.f95 | Fortran 95 source code to do LU-decomposition by outer-product form. | 2019-03-11 00:20:04 |
lu_decomposition_3.rb | Ruby script to do LU-decomposition by Crout method. | 2019-03-07 23:20:11 |
lu_decomposition_2.rb | Ruby script to do LU-decomposition by inner-product form. | 2019-03-07 23:19:10 |
lu_decomposition.rb | Ruby script to do LU-decomposition by outer-product form. | 2019-03-07 23:17:43 |
blh2enu.f95 | Fortran 95 source code to convert WGS84(BLH) to ENU coordinate. | 2019-02-25 23:01:42 |
ecef2blh.f95 | Fortran 95 source code to convert ECEF to WGS84(BLH) coordinate. | 2019-02-25 22:56:10 |
blh2ecef.f95 | Fortran 95 source code to convert WGS84(BLH) to ECEF coordinate. | 2019-02-25 22:50:25 |
blh2enu.rb | Ruby script to convert WGS84(BLH) to ENU coordinate. | 2019-02-24 22:21:36 |
ecef2blh.rb | Ruby script to convert ECEF to WGS84(BLH) coordinate. | 2019-02-24 22:16:56 |
blh2ecef.rb | Ruby script to convert WGS84(BLH) to ECEF coordinate. | 2019-02-24 22:11:46 |
blh2enu.py | Python script to convert WGS84(BLH) to ENU coordinate. | 2019-02-23 22:15:27 |
tweet_oauth.rb | Ruby script to tweet with image files. | 2019-02-15 23:31:15 |
spline_interpolation.f95 | Fortran 95 source code to compute 3D Spline interpolation. | 2018-12-24 22:30:09 |
modular exponentiation_2.f95 | Fortran 95 source code to compute modular exponetiation recursively. | 2018-12-24 22:20:24 |
modular exponentiation_1.f95 | Fortran 95 source code to compute modular exponetiation iteratively. | 2018-12-24 22:19:23 |
regression_multi.f95 | Fortran 95 source code to compute multiple regression equations. | 2018-12-24 20:10:38 |
regression_line.f95 | Fortran 95 source code to compute a simple linear regression line. | 2018-12-24 19:52:00 |
correlation_coefficient.f95 | Fortran 95 source code to compute a correlation coefficient. | 2018-12-24 19:37:43 |
discrete_fourier_transformation.f95 | Fortran 95 source code to compute discrete Fourier transformation. | 2018-12-24 19:13:29 |
fourier_series_expansion.f95 | Fortran 95 source code to expand Fourier's series. | 2018-12-23 20:32:15 |
newton_interpolation.f95 | Fortran 95 source code to interpolate by Newton's method. | 2018-12-23 20:14:52 |
lagrange_interpolation.f95 | Fortran 95 source code to interpolate by Lagrange's method. | 2018-12-23 20:08:30 |
taylor_expansion_cos.f95 | Fortran 95 source code to computer Taylor expansion(cos(x)). | 2018-12-22 22:46:17 |
taylor_expansion_exp.f95 | Fortran 95 source code to computer Taylor expansion(exp(x)). | 2018-12-22 22:44:46 |
sort_test.f95 | Fortran 95 source code to test sorting algorithms. | 2018-12-22 20:28:11 |
heap_downward.f95 | Fortran 95 source code to generate a heap by downward method. | 2018-12-22 20:08:16 |
heap_upward.f95 | Fortran 95 source code to generate a heap by upward method. | 2018-12-22 20:07:01 |
simplex.f95 | Fortran 95 source code to solve a linear programming by simplex method. | 2018-12-22 19:41:41 |
gauss_elimination.f95 | Fortran 95 source code to solve simultaneous equations by Gauss elimination method. | 2018-12-21 23:13:11 |
gauss_jordan_pivot.f95 | Fortran 95 source code to solve simultaneous equations by Gauss-Jordan's method(pivot). | 2018-12-21 22:59:25 |
gauss_jordan.f95 | Fortran 95 source code to solve simultaneous equations by Gauss-Jordan's method. | 2018-12-21 22:49:19 |
rndnum_mb.f95 | Fortran 95 source code to generate random numbers by box-muller's method. | 2018-12-21 22:34:09 |
pgmout.c | Fortran 95 source code to test cellular-automaton implementation.(Ver.2) | 2018-11-29 02:05:20 |
pi_chudnovsky.f95 | Fortran 95 source code to compute PI with FMLIB, using Chudnovsky formula. | 2018-11-20 00:23:18 |
napier.f95 | Fortran 95 source code to compute Napier's constant with FMLIB. | 2018-11-17 20:24:16 |
asc2eph.f95 | Fortran 95 source code to convert JPL source cord from ascii to binary | 2018-10-14 19:49:25 |
definite_integral.f95 | Fortran 95 source code to compute a definite integral. | 2018-10-13 20:14:53 |
nonlinear_equation_newton.f95 | Fortran 95 source code to solve nonlinear-equation with newton method. | 2018-10-12 22:37:04 |
nonlinear_equation_bisection.f95 | Fortran 95 source code to solve nonlinear-equation with bisection method. | 2018-10-11 22:51:24 |
pgmout.c | Fortran 95 source code to generate 2D-fractal by complex convergence method. | 2018-10-09 20:00:25 |
cell_atm.f95 | Fortran 95 source code to test cellular-automaton implementation. | 2018-10-08 22:17:37 |
stack.f95 | Fortran 95 source code to compute with Reverse Polish Notation method. | 2018-10-08 20:43:28 |
test_stack.f95 | Fortran 95 source code to test stack implementation. | 2018-10-08 20:32:02 |
fibonacci.f95 | Fortran 95 source code to compute the Fibonacci-series. | 2018-10-07 22:04:24 |
rosseland_mean.f95 | Fortran 95 source code to compute the rosseland-maen. | 2018-10-07 21:56:07 |
fibonacci_2.f95 | Fortran 95 source code to compute the Fibonacci-series.(Ver.2) | 2018-10-07 19:44:09 |
rosseland_mean_2.f95 | Fortran 95 source code to compute the rosseland-maen.(Ver.2) | 2018-10-07 19:34:50 |
factorial.f95 | Fortran 95 source code to compute the factorial. | 2018-10-06 01:11:15 |
gcd.f95 | Fortran 95 source code to compute the G.C.D. | 2018-10-04 22:09:59 |
mv_product.f95 | Fortran 95 source code to compute the product of matrix and vetor. | 2018-10-04 19:34:39 |
inner_product_2.f95 | Fortran 95 source code to compute inner-product of vetors(Ver.2). | 2018-10-02 23:48:05 |
inner_product.f95 | Fortran 95 source code to compute inner-product of vetors. | 2018-10-02 23:39:44 |
test_mecab.py | Python script to test of MeCab. | 2018-08-12 20:01:52 |
tweet_v2.py | Python script to tweet with medias by OAuth only. | 2018-08-06 23:33:49 |
iss_sgp4.py | Python script to calclulate the ISS position/velocity with SGP4 algorithm. | 2018-07-02 19:59:06 |
get_eop_csv.py | Python script to generate csv data from IERS's EOP. | 2018-06-29 23:31:57 |
get_eop_csv.rb | Ruby script to generate csv data from IERS's EOP. | 2018-06-29 23:30:50 |
ecef2blh.py | Python script to convert ECEF to WGS84(BLH) coordinate. | 2018-06-29 18:25:39 |
blh2ecef.py | Python script to convert WGS84(BLH) to ECEF coordinate. | 2018-06-29 18:14:43 |
verify_gc2jd_2.rb | Ruby script to verify of converting Gregorian Calendar to Julian Day.(v2) | 2018-06-26 22:47:23 |
get_delta_t_usno.py | Python script to get delta_T from USNO. | 2018-06-20 20:42:20 |
get_delta_t_usno.rb | Ruby script to get delta_T from USNO. | 2018-06-20 20:31:18 |
tle_iss_nasa.py | Python script to get TLE from NASA. | 2018-06-16 20:10:16 |
tle_iss_nasa.rb | Ruby script to get TLE from NASA. | 2018-06-16 19:58:39 |
calc_gmst_iau_1982.py | Python script to calculate GMST with IAU1982 theory. | 2018-06-16 19:21:36 |
calc_gmst_iau_1982.rb | Ruby script to calculate GMST with IAU1982 theory. | 2018-06-16 19:17:58 |
trigonometric.py | Python script to convert coordinates. | 2018-04-28 19:48:50 |
time.py | Gist - Python script to convert time series. | 2018-04-27 19:22:16 |
calc_delta_t.py | Python script to calculate deltaT by NASA method. | 2018-04-17 20:58:44 |
mean_obliquity_ecliptic.py | Python script to calc a Mean Obliquity of the Ecliptic. | 2018-04-11 00:27:38 |
lib_read_de430.py | Python script to calc ICRS coordinates with JPL binary data DE430. | 2018-04-06 20:27:24 |
lorenz_attractor_runge_kutta.py | Python script to draw a lorenz attractor with Runge-Kutta's method. | 2018-03-24 19:52:53 |
lorenz_attractor_euler.py | Python script to draw a lorenz attractor with Euler's method. | 2018-03-24 19:44:42 |
lorenz_attractor_runge_kutta.rb | Ruby script to draw a lorenz attractor with Runge-Kutta's method. | 2018-03-23 02:31:25 |
lorenz_attractor_euler.rb | Ruby script to draw a lorenz attractor with Euler's method. | 2018-03-22 23:06:15 |
jpl_read_de430.py | Python script to read a jpl binary data DE430. | 2018-03-19 23:32:58 |
str_trunc.py | Python script to truncate string, including multi-byte characters. | 2018-03-04 21:47:51 |
tinyurl_shorten.py | Python script to shorten a url with TinyURL API. | 2018-02-25 20:42:03 |
bitly_shorten.py | Python script to shorten a url with bitly API. | 2018-02-25 20:06:34 |
test_subprocess.py | Python script to test an execution of external commands by subprocess. | 2018-02-24 20:45:03 |
test_signal.py | Python script to test interrupt handling by signal. | 2018-02-23 21:00:20 |
test_daemon.py | Python script to do a process as a daemon. | 2018-02-22 19:56:36 |
regression_multi_numpy.py | Python script to compute multiple regression equation with NumPy. | 2018-02-21 00:13:03 |
regression_line_curve.py | Python script to compute regression line/curve(1-4D). | 2018-02-19 19:53:28 |
pi_chudnovsky.py | Python script to compute pi with Chudnovsky formula and Binary Splitting Algorithm, using GMP libarary. | 2018-01-23 23:00:42 |
regression_curve.py | Python script to compute regression curve. | 2018-01-20 22:36:48 |
regression_curve.rb | Ruby script to calculate a simple regression curve. | 2018-01-16 21:57:45 |
spline_interpolation.py | Python script to calc 3D-Spline-Interpolation. | 2018-01-10 22:40:21 |
modular_exponentiation_2.py | Python script to compute modular-exponentiation recursively. | 2018-01-09 00:06:22 |
modular_exponentiation_1.py | Python script to compute modular-exponentiation iteratively. | 2018-01-09 00:05:34 |
regression_multi.py | Python script to compute multiple regression equation. | 2018-01-06 23:22:24 |
regression_line.py | Python script to compute regression line. | 2018-01-06 00:04:51 |
correlation_coefficient.py | Python script to compute correlation coefficient. | 2018-01-04 23:52:59 |
sort_test.py | Python script to test sorting algorithms. | 2017-12-24 23:26:41 |
sort_test.cpp | C++ source code to test sorting algorithms. | 2017-12-24 19:40:12 |
heap_downward.py | Python script to generate a heap by the downward method. | 2017-12-24 00:06:22 |
heap_upward.py | Python script to generate a heap by the upward method. | 2017-12-24 00:05:33 |
heap_downward.cpp | C++ source code to generate a heap with the downward method. | 2017-12-23 22:32:48 |
heap_upward.cpp | C++ source code to generate a heap with the upward method. | 2017-12-23 22:31:10 |
least_squares_method.py | Python script to solve approximate equation with least squares method. | 2017-12-23 00:25:16 |
LeastSquaresMethod.java | Java source code to solve approximate equation with least squares method. | 2017-12-22 23:21:19 |
least_squares_method.f95 | Fortran95 source code to solve approximate equation with least squares method. | 2017-12-22 23:18:47 |
least_squares_method.cpp | C++ source code to solve approximate equation with least squares method. | 2017-12-22 22:58:41 |
linear_programming_simplex.py | Python script to execute linear programming with Simplex method. | 2017-12-22 00:08:17 |
linear_programming.cpp | C++ source code to execute linear programming with Simplex method. | 2017-12-21 23:22:36 |
gauss_elimination.py | Python script to solve simultaneous equations with Gauss elimination method. | 2017-12-20 22:38:51 |
gauss_elimination.cpp | C++ source code to solve simultaneous equations with Gauss elimination method. | 2017-12-20 20:31:27 |
gauss_jordern_pivot.py | Python script to solve simultaneous equations with Gauss-Jorden(pivot) method. | 2017-12-19 22:15:16 |
gauss_jordern_pivot.cpp | C++ source code to solve simultaneous equations with Gauss-Jorden(pivot) method. | 2017-12-19 21:24:48 |
gauss_jordern.py | Python script to solve simultaneous equations with Gauss-Jorden method. | 2017-12-19 02:17:19 |
gauss_jordern.cpp | C++ source code to solve simultaneous equations with Gauss-Jorden method. | 2017-12-19 01:20:27 |
discrete_fourier_transform.py | Python script to compute discrete Fourier transform. | 2017-12-18 00:44:44 |
discrete_fourier_transform.cpp | C++ source code to compute discrete Fourier transform | 2017-12-17 23:23:22 |
fourier_series_expansion.py | Python script to expand Fourier's series. | 2017-12-16 20:28:03 |
fourier_series_expansion.cpp | C++ source code to expand Fourier's series. | 2017-12-16 19:51:57 |
add_big_float.py | Python script to compute big-digit floats. | 2017-12-15 23:52:55 |
add_big_float.cpp | C++ source code to compute big-digit floats. | 2017-12-15 20:38:28 |
compare_big_digits.py | Python script to compare big digits. | 2017-12-14 22:47:09 |
compare_big_digits.cpp | C++ source code to compare big digits. | 2017-12-14 22:10:14 |
multiply_toom_cook_3.py | Python script to multiply big-digit values with Toom-Cook 3-way method. | 2017-12-13 22:38:59 |
multiply_toom_cook_3.cpp | C++ source code to multiply big-digit values with Toom-Cook 3-way method. | 2017-12-13 20:52:17 |
multiply_karatsuba.py | Python script to multiply big-digit values with Karatsuba method. | 2017-12-13 01:02:45 |
multiply_karatsuba.cpp | C++ source code to multiply big-digit values with Karatsuba method. | 2017-12-13 00:06:55 |
str_trunc.rb | Ruby script to truncate string, including multi-byte characters. | 2017-12-12 00:41:40 |
multiply_normal.py | Python script to multiply big-digit values. | 2017-12-11 21:21:20 |
multiply_normal.cpp | C++ source code to multiply big-digit values. | 2017-12-11 20:25:22 |
calc_big_digits_2.py | Python script to compute big-digit values.(v2) | 2017-12-10 23:26:17 |
calc_big_digits_2.cpp | C++ source code to compute big-digit values.(v2) | 2017-12-10 22:16:51 |
calc_pi_arctan.f95 | Fortran source code to compute Pi with arctan's formula. | 2017-12-10 01:28:14 |
calc_pi_arctan.py | Python script to compute Pi with arctan's formula. | 2017-12-10 00:42:53 |
calc_pi_arctan_2.cpp | C++ source code to compute Pi with arctan's formula.(v2) | 2017-12-09 22:47:28 |
calc_pi_arctan.rb | Ruby script to compute Pi with arctan's formula. | 2017-12-09 22:32:04 |
calc_pi_arctan.cpp | C++ source code to compute Pi with arctan's formula. | 2017-12-09 22:13:00 |
calc_pi_arctan_old.cpp | C++ source code to compute Pi with arctan's formula.(old ver.) | 2017-12-09 20:54:42 |
calc_pi_euler.py | Python script to compute Pi with Euler's formula. | 2017-12-08 23:45:14 |
calc_pi_euler.cpp | C++ source code to compute Pi with Euler's formula. | 2017-12-08 23:02:05 |
calc_pi_klingenstierna.py | Python script to compute Pi with Klingenstierna's formula. | 2017-12-07 22:54:46 |
calc_pi_klingenstierna.cpp | C++ source code to compute Pi with Klingenstierna's formula. | 2017-12-07 20:22:30 |
calc_factorial.py | Python script to compute factorials. | 2017-12-06 21:17:29 |
calc_factorial.cpp | C++ source code to compute factorials. | 2017-12-06 20:49:25 |
calc_napier.py | Python script to compute Napier constant. | 2017-12-06 01:04:14 |
calc_napier.cpp | C++ source code to compute Napier's constant. | 2017-12-05 23:42:41 |
calc_pi_machin.py | Python script to compute Pi with Machin's formula. | 2017-12-05 02:31:41 |
calc_pi_machin.cpp | C++ source code to compute Pi with Machin's formula. | 2017-12-05 01:18:28 |
calc_big_digits.py | Python script to compute big-digit values. | 2017-12-04 20:48:20 |
calc_big_digits.cpp | C++ source code to compute big-digit values. | 2017-12-04 19:55:44 |
interpolate_newton.py | Python script to interpolate with Newton method. | 2017-12-03 22:55:41 |
interpolate_newton.cpp | C++ source code to interpolate with Newton method. | 2017-12-03 22:25:01 |
interpolate_lagrange.py | Python script to interpolate with Lagrange method. | 2017-12-03 21:26:31 |
interpolate_lagrange.cpp | C++ source code to interporate with Lagrange method. | 2017-12-03 20:46:51 |
nonlinear_equation_newton.py | Python script to compute nonlinear equation with Newton method. | 2017-12-02 22:50:06 |
nonlinear_equation_newton.rb | Ruby script to compute nonlinear equation with Newton method. | 2017-12-02 22:30:53 |
nonlinear_equation_newton.cpp | C++ source code to compute nonlinear equation with Newton method. | 2017-12-02 22:23:53 |
nonlinear_equation.py | Python script to compute nonlinear equation with bisection method. | 2017-12-01 23:15:04 |
nonlinear_equation.rb | Ruby script to compute nonlinear equation with bisection method. | 2017-12-01 22:40:47 |
nonlinear_equation.cpp | C++ source code to compute nonlinear equation with bisection method. | 2017-12-01 22:34:31 |
taylor_expansion_cos.py | Python script to compute Taylor expansion (cos(x)). | 2017-11-30 20:33:36 |
taylor_expansion_cos.rb | Ruby script to compute Taylor expansion (cos(x)). | 2017-11-30 20:11:42 |
taylor_expansion_cos.cpp | C++ source code to compute Taylor expansion (cos(x)). | 2017-11-30 20:01:26 |
taylor_expansion.py | Python script to compute Taylor expansion (exp(x)). | 2017-11-29 23:38:08 |
taylor_expansion.rb | Ruby script to compute Taylor expansion (exp(x)). | 2017-11-29 20:56:10 |
taylor_expansion.cpp | C++ source code to compute Taylor expansion (exp(x)). | 2017-11-29 20:47:23 |
definite_ingegral_simpson.py | Python script to compute definite integral by simpson rule. | 2017-11-28 23:26:29 |
definite_ingegral_simpson.rb | Ruby script to compute definite integral by Simpson rule. | 2017-11-28 22:53:15 |
definite_ingegral_simpson.cpp | C++ source code to compute definite integral by Simpson rule. | 2017-11-28 22:40:43 |
definite_ingegral_trapezoid.py | Python script to compute definite integral by trapezoidal rule. | 2017-11-27 23:47:53 |
definite_ingegral_trapezoid.rb | Ruby script to compute definite integral by trapizoidal rule. | 2017-11-27 22:51:53 |
definite_ingegral_trapezoid.cpp | C++ source code to compute definite integral by trapizoidal rule. | 2017-11-27 22:42:06 |
rndnum_box_muller.py | Python script to generate random numbers with Box-Muller algorithm. | 2017-11-26 22:24:59 |
rndnum_box_muller.rb | Ruby script to compute random number with Box-Muller algorithm. | 2017-11-26 21:32:10 |
rndnum_box_muller.cpp | C++ source code to compute random number with Box-Muller algorithm. | 2017-11-26 21:25:12 |
chi_2_rndnum.py | Ruby script to test for uniformity of random number with Chi-square algorithm. | 2017-11-24 23:13:11 |
chi_2_rndnum.rb | Ruby script to test for uniformity of random number with Chi-square algorithm. | 2017-11-24 22:26:55 |
chi_2_rndnum.cpp | C++ source code to test for uniformity of random number with Chi-square algorithm. | 2017-11-24 22:18:08 |
rndnum_lcgs.py | Python script to generate random numbers with LCGs algorithm. | 2017-11-23 21:42:46 |
rndnum_lcgs.rb | Ruby script to compute random number with LGGs algorithm. | 2017-11-22 23:20:06 |
rndnum_lcgs.cpp | C++ source code to compute random number with LGGs algorithm. | 2017-11-22 23:10:40 |
prime_factorization.py | Python script to compute prime fractorization. | 2017-11-21 23:42:54 |
prime_factorization.rb | Ruby script to compute prime factorizatiton. | 2017-11-21 08:16:19 |
prime_factorization.cpp | C++ source code to compute prime factorizatiton. | 2017-11-21 08:05:22 |
prime_number.py | Python script to judge prime number. | 2017-11-20 00:28:47 |
prime_number.cpp | C++ source code to judge prime number. | 2017-11-19 22:25:51 |
gcd_euclid.py | Python script to compute G.C.D. with Eublid's algorithm. | 2017-11-17 23:02:12 |
gcd_euclid.rb | Ruby script to compute G.C.D. with Euclid's algorithm. | 2017-11-17 21:32:57 |
gcd_euclid.cpp | C++ source code to compute G.C.D. with Euclid's algorithm. | 2017-11-17 21:30:19 |
tweet.py | Python script to tweet with OAuth only. | 2017-11-16 23:04:48 |
pycall_sgp4.rb | Sample script of Ruby to use Python with PyCall. | 2017-10-22 20:51:41 |
gmt_aep.sh | Bash script to draw maps with Azimuthal Equidistant Projection. | 2017-05-27 22:17:54 |
linked_list_by_pointer.f95 | Fortran code to generate linked-list by pointer. | 2017-05-18 01:45:23 |
to_uppercase.f95 | Fortran code to convert chars to uppercase. | 2017-05-15 02:33:13 |
prime_numbers.f95 | Fortran code to compute prime numbers. | 2017-04-20 23:04:00 |
double_precision_real.f95 | Fortran code to specify floating-point numbers. | 2017-04-14 23:37:50 |
series.f95 | Fortran code to calculate series. | 2017-04-10 20:56:45 |
rndnum_lcg.f95 | Fortran code to calculate random numbers by lcg method. | 2017-04-09 02:37:28 |
tweet_oauth.rb | Ruby script to tweet with only OAuth. | 2017-01-16 22:56:06 |
read_csv.cpp | C++ source code to read csv data. | 2017-01-12 21:15:46 |
validation.hpp | C++ source code to check date validation. | 2017-01-12 20:55:02 |
analyze_tweetid.rb | Ruby script to get a timestamp from a tweet-id. | 2017-01-07 21:19:20 |
tumblr_text.rb | Ruby script to post texts to Tumblr. | 2017-01-04 02:42:15 |
get_access_token_tumblr.rb | Ruby script to get Tumblr access token from consumer key. | 2017-01-03 22:30:44 |
conv_camel_snake.rb | Ruby script to convert CamelCase and snake_case each other. | 2016-10-29 02:48:39 |
cal_jpl.rb | Ruby script to calculate a Japan's calendar with a selfmade gem library, using JPL DE430. | 2016-10-01 23:55:19 |
apparent_sun_moon_jpl.rb | Ruby script to calculate apparent position of Sun and Moon. | 2016-09-15 23:19:21 |
conv_time.rb | Ruby script to convert time system. | 2016-09-14 01:15:23 |
calc_greenwich_time.rb | Ruby script to calculate Greenwich times. | 2016-09-06 23:00:44 |
coord_conversion.rb | Ruby script to convert celestial coordinates. | 2016-08-29 19:50:47 |
bpn_rotation.rb | Ruby script to apply Bias-Precession-Nutation to a rectanglar coordinate. | 2016-08-28 00:55:47 |
get_dut1_nict.rb | Ruby script to get a list of DUT1 adjustment. | 2016-07-25 20:28:41 |
get_leapsec_nict.rb | Ruby script to get a list of leap-second adjustment. | 2016-07-25 20:27:19 |
calc_schwarzschild_radius.rb | Ruby script to calculate Schwarzschild radius. | 2016-07-18 20:05:13 |
jpl_distance_earth.rb | Ruby script to calculate planetary distances. | 2016-07-13 21:08:01 |
jpl_planetary_mass.rb | Ruby script to calculate planetary masses from JPL DE430. | 2016-07-01 22:31:33 |
ephemeris_jpl.rb | Ruby script to calculate JPL ephemeris with a selfmade gem library. | 2016-06-19 20:31:05 |
calc_delta_t.rb | Ruby script to calculate deltaT by NASA method. | 2016-06-16 00:34:49 |
verify_jd2gc.rb | Ruby script to verify of converting Julian Day to Gregorian Calendar. | 2016-06-15 20:22:42 |
verify_gc2jd.rb | Ruby script to verify of converting Gregorian Calendar to Julian Day. | 2016-06-15 20:07:47 |
sun_moon.rb | Ruby script to calculate a Japan's Sun/Moon phenomenons with a selfmade gem library. | 2016-06-14 00:28:33 |
calendar.rb | Ruby script to calculate a Japan's calendar with a selfmade gem library. | 2016-06-14 00:17:16 |
mean_obliquity_ecliptic.rb | Ruby script to calc a Mean Obliquity of the Ecliptic. | 2016-05-27 00:02:22 |
JAPAN_ETOPO1_b.sh | Bash script to paint a Japan's elevetion map by GMT(Albers). | 2016-04-29 00:25:50 |
JAPAN_ETOPO1.sh | Bash script to paint a Japan's elevetion map by GMT(Mercator). | 2016-04-29 00:24:52 |
rmagick_watermark.rb | Ruby script to write a watermark by rmagick. | 2016-04-25 03:09:04 |
jpl_calc_de430.rb | Ruby script to calc ICRS coordinates with JPL binary data DE430. | 2016-03-14 23:49:36 |
jpl_read_de430.rb | Ruby script to read a jpl binary data DE430. | 2016-03-13 03:27:50 |
check_string_similarity_by_ngram.rb | Ruby script to check a degree of string similarity by n-gram model | 2016-02-28 21:30:15 |
tinyurl_shoten_2.rb | Ruby script to shorten a url by TinyURL.(ver.2) | 2016-02-01 00:48:05 |
tinyurl_shorten.rb | Ruby script to shorten a url by TinyURL. | 2016-02-01 00:47:11 |
fr24_airlines.rb | Ruby script to get a airline list from Flightradar24. | 2015-12-20 23:49:32 |
fr24_airports.rb | Ruby script to get a airport list from Flightradar24. | 2015-12-20 23:42:27 |
spline_interpolation.rb | Ruby script to calc 3D-Spline-Interpolation. | 2015-12-08 02:17:30 |
db_dump_only_data_by_split.sh | Bash script to dump only records of MariaDB(MySQL) tables by split. | 2015-09-17 23:08:47 |
test_nokogiri_xml.rb | Ruby script to verify the speed of xml parsing by Nokogiri. | 2015-08-29 00:11:50 |
table_definition.xsl | XSL template to generate a HTML from a XML of MariaDB(MySQL)'s table definition. | 2015-08-19 21:59:37 |
gnuplot_3.rb | Ruby script to draw a graph by gnuplot.(Ex.3) | 2015-07-12 22:49:57 |
gnuplot_2.rb | Ruby script to draw a graph by gnuplot.(Ex.2) | 2015-07-12 22:48:40 |
gnuplot_1.rb | Ruby script to draw a graph by gnuplot.(Ex.1) | 2015-07-12 22:46:39 |
array_rank.rb | Ruby script to rank array items, considering same ranks. | 2015-06-20 01:48:12 |
get_mail.rb | Ruby script to get a mail via alias of postfix. | 2015-06-15 20:07:01 |
chudnovsky.rb | Ruby script to compute pi by Chudnovsky formula and Binary Splitting Algorithm using GMP libarary. | 2015-05-07 03:43:52 |
pi_bbp.rb | Ruby script to compute pi with BBP formula. | 2015-04-26 02:20:11 |
pi_bbp.cpp | C++ source code to compute pi with BBP formula. | 2015-04-26 01:08:37 |
modular_exponentiation_2.rb | Ruby script to compute modular-exponentiation recursively. | 2015-04-25 20:30:40 |
modular_exponentiation_1.rb | Ruby script to compute modular-exponentiation iteratively. | 2015-04-25 20:28:53 |
ModularExponentiation2.cpp | C++ source code to compute modular exponetiation recursively. | 2015-04-24 02:20:17 |
ModularExponentiation1.cpp | C++ source code to compute modular exponetiation iteratively. | 2015-04-24 02:19:10 |
chudnovsky.cpp | C++ source code to compute pi with Chudnovsky formula and Binary Splitting Algorithm using GMP libarary. | 2015-04-22 02:03:16 |
test_gmp.cpp | C++ source code to calculate values with GMP library. | 2015-04-20 18:43:30 |
send_mail.rb | Ruby script to send a ISO-2022-JP mail. | 2015-04-14 20:50:51 |
test_gmp.c | C source code to calculate values with GMP library. | 2015-04-02 03:24:26 |
socket_client.rb | Ruby script to test for socket connection.(Client-side) | 2015-03-31 01:04:06 |
socket_server.rb | Ruby script to test for socket connection.(Server-side) | 2015-03-31 01:00:25 |
geo_ruby_nsew.rb | Ruby script to get NorthSouthEastWest ends from shapefile. | 2015-03-21 01:44:54 |
geo_ruby_geometry.rb | Ruby script to read geometric datas from shapefile. | 2015-03-21 01:43:12 |
jartic.rb | Ruby script to get road closing informations from JARTIC. | 2015-03-16 20:57:19 |
calc_pressure.rb | Ruby script to calculate values about pressure. | 2015-01-16 23:42:02 |
twitter_settings.rb | Ruby script to set informations of a twitter account. | 2015-01-11 03:53:03 |
problem_2038.rb | Ruby script to calc remaining seconds to the date of Problem-2038. | 2015-01-03 22:35:14 |
JAPAN_ETOPO1.sh | Bash script to paint a map with elevation data. | 2014-12-22 23:45:39 |
prime_number_list.rb | Ruby script to list prime numbers. | 2014-12-15 23:07:05 |
prime_number_2.rb | Ruby script to calculate Xth prime number. | 2014-12-15 23:06:14 |
prime_number_1.rb | Ruby script to check a prime number. | 2014-12-15 23:03:28 |
test_bash_cursor_2.sh | Bash script to control cursor position.(Ex.2) | 2014-12-15 02:38:32 |
test_bash_cursor_1.sh | Bash script to control cursor position.(Ex.1) | 2014-12-15 02:36:45 |
check_html.rb | Ruby script to check a difference between a saved-html and a current-html. | 2014-12-12 20:26:21 |
check_twitter_accounts.rb | Ruby script to check existance of twitter accounts. | 2014-12-07 22:30:03 |
ps_check.sh | Bash script to check processes. | 2014-12-02 01:19:50 |
ts_test.rb | Ruby script to get tweet statuses by tweetstream library. | 2014-11-30 23:44:39 |
json_stream.rb | Ruby script to get tweet statuses by twitter-stream gem library. | 2014-11-29 03:55:07 |
japan_okinawa.R | R scirpt to draw a map of Japan. (Okianwa Division Ver.) | 2014-11-26 01:46:44 |
japan_standard.R | R scirpt to draw a map of Japan. (Standard Ver.) | 2014-11-26 01:44:40 |
TwitterStream.cpp | C++ source code to get twitter timelines by Twitter Streaming API. | 2014-11-24 21:11:27 |
YamlCpp03.cpp | C++ source code to get yaml informations by yaml-cpp 0.3 series. | 2014-11-12 01:44:07 |
regression_multi.rb | Ruby script to calculate a multiple regression function. | 2014-11-02 01:59:53 |
PicoJson.cpp | C++ source code to parse json datas by picojson. | 2014-10-24 00:11:24 |
check_html.sh | Bash script to check a difference between a saved-html and a current-html. | 2014-10-20 21:03:48 |
regression_line.rb | Ruby script to calculate a simple linear regression line. | 2014-10-11 22:41:17 |
correlation_coefficient.rb | Ruby script to calculate a correlation coefficient. | 2014-10-11 02:21:03 |
YamlCpp.cpp | C++ source code to get yaml informations by yaml-cpp. | 2014-09-27 22:08:18 |
population_density_pref.R | R script to generate a choropleth map of Japan's population density. | 2014-09-14 03:05:06 |
geo_ruby.rb | Ruby to read a shapefile with georuby. | 2014-09-07 00:39:15 |
SubStrUtf8.cpp | C++ source code to get substrings of UTF-8. | 2014-09-02 21:42:21 |
CntStrUtf8.cpp | C++ source code to count strings of UTF-8. | 2014-09-02 21:30:56 |
Twitcurl.cpp | C++ source code to tweet by twitcurl library. | 2014-08-19 00:30:27 |
Mysql.cpp | C++ source code to connect to MariaDB(MySQL). | 2014-08-17 23:54:29 |
BoostRegexR.cpp | C++ source code to replace regular expressions by boost. | 2014-08-15 01:15:27 |
BoostRegexI.cpp | C++ source code to match regular expressions using iterators by boost. | 2014-08-15 01:08:00 |
BoostRegexW.cpp | C++ source code to match regular expressions(wchar) by boost. | 2014-08-15 01:00:13 |
BoostRegex.cpp | C++ source code to match regular expressions by boost. | 2014-08-15 00:53:28 |
SjistToUtf8.cpp | Gist - C++ source code to convert ShiftJIS to UTR-8. | 2014-08-06 22:54:38 |
GetHtml.cpp | C++ source code to get HTML. | 2014-08-06 22:44:29 |
test_maptools_ksj.R | R script to generate a map of KSJ by maptools. | 2014-07-27 19:32:48 |
earthquake.R | R script to plot earthquake infos on a map. | 2014-07-27 19:29:25 |
test_maptools.R | R script to generate a map by maptools. | 2014-07-21 19:53:05 |
test_xml.rb | Ruby script to do tests of parsing xml with Nokogiri, Hpricot parsers. | 2014-04-12 20:33:03 |
sort_test.rb | Ruby script to test sorting algorithms. | 2014-04-05 01:21:05 |
heap_downward.rb | Ruby script to generate a heap by the downward method. | 2014-03-26 19:51:06 |
heap_upward.rb | Ruby script to generate a heap by the upward method. | 2014-03-26 19:49:40 |
metar.sh | Bash script to get a METAR information. | 2014-03-19 23:22:19 |
noaa_weather_station.sh | Bash script to search NOAA weather stations by a ICAO code. | 2014-03-18 23:59:40 |
noaa_stations.rb | Ruby script to calculate a summary of the list of NOAA's weather stations. | 2014-03-18 04:43:48 |
check_df.sh | Bash script to check the capacity of disk partitions. | 2014-03-17 02:29:51 |
twitter_access_token.rb | Ruby script to get twitter access token from consumer key. | 2014-03-11 02:05:57 |
write_excel.rb | Ruby script to write a Excel workbook by 'spreadsheet'. | 2014-03-10 01:37:03 |
read_excel.rb | Ruby script to read a Excel workbook by 'spreadsheet'. | 2014-03-10 01:35:10 |
iso_3166_2_jp.csv | CSV file of ISO 3166-2:JP. | 2014-03-03 01:10:36 |
iso_3166_1.csv | CSV file of ISO 3166-1. | 2014-03-03 01:07:41 |
least_squares_method.rb | Ruby script to solve approximate equation with least squares method. | 2014-02-25 21:32:52 |
linear_programming_simplex.rb | Ruby script to execute linear programming with Simplex method. | 2014-02-11 21:31:06 |
search_mac.rb | Ruby scripts to search a vendor name from a MAC address. | 2013-12-08 21:04:58 |
push_controller.rb | Rails controller to receive feeds from the Hub of PubSubHubbub. | 2013-10-30 00:16:08 |
test_daemon | Shell script to start a daemon. | 2013-09-20 02:24:43 |
test_daemon.rb | Ruby script testing to daemonize a ruby script. | 2013-09-20 02:22:08 |
test_tweetstream.rb | Ruby script testing to get tweets by tweetstream. | 2013-09-16 00:01:24 |
gauss_elimination.rb | Ruby script to solve simultaneous equations with Gauss elimination method. | 2013-09-12 02:41:07 |
gauss_jorden_pivot.rb | Ruby script to solve simultaneous equations with Gauss-Jorden(pivot) method. | 2013-09-11 22:42:25 |
gauss_jorden.rb | Ruby script to solve simultaneous equations with Gauss-Jorden method. | 2013-09-10 23:02:08 |
csv2table.rb | Ruby script to convert a csv file to html table tags. | 2013-08-26 23:15:02 |
rmagick_compile_color.rb | Ruby script to compile colors in a image with RMagick. | 2013-08-21 01:46:06 |
fb_api_likes.rb | Ruby script to get a list of Facebook likes by Facebook API. | 2013-08-19 00:28:16 |
fb_api.rb | Ruby script to get Facebook user informations by Facebook API. | 2013-08-18 21:22:04 |
write_copyright.rb | Ruby script to write characters to a image file by RMagick. | 2013-08-15 21:57:15 |
rmagick_available_fonts.rb | Ruby script to generate a image of available fonts on RMagick. | 2013-08-15 03:11:29 |
get_link_list_md.rb | Ruby script to get a link list from markdown files in a directory recursively. | 2013-08-11 03:41:05 |
rmagick_img_info.rb | Ruby script to get informations of a image file by RMagick. | 2013-08-10 21:16:08 |
check_link.rb | Ruby script to check link in a web site. | 2013-08-08 23:38:30 |
calc_num_of_days.rb | Ruby script to calc the number of days. | 2013-08-05 22:46:40 |
bitly_shorten.rb | Ruby script to shorten a long url to a short url by bitly API V3. | 2013-07-07 01:14:06 |
google_maps_dist.js | JavaScript file to calc distance between two spots with Google Maps API v3. | 2013-07-04 20:46:57 |
octokit_gists.rb | Ruby script to get gist lists by octokit. | 2013-06-22 23:40:05 |
octokit_repositories.rb | Ruby script to get github repositories by octokit. | 2013-06-22 23:38:04 |
google_geocode.rb | Ruby script to get a address or latitude, longitude with Google Geocoding API. | 2013-06-21 01:00:51 |
discrete_fourier_transform.rb | Ruby script to compute discrete Fourier transform. | 2013-05-19 20:57:49 |
.tmux.conf | tmux config(setting) file. | 2013-05-15 03:41:30 |
fourier_series_expansion.rb | Ruby script to expand Fourier's series. | 2013-05-05 00:03:52 |
compare_big_digits.rb | Ruby script to compare big digits. | 2013-05-05 00:00:09 |
add_big_float.rb | Ruby script to compute big-digit floats. | 2013-04-24 04:24:14 |
multiply_toom_cook_3.rb | Ruby script to multiply big-digit values with Toom-Cook 3-way method. | 2013-04-19 23:50:56 |
multiply_karatsuba.rb | Ruby script to multiply big-digit values with Karatsuba method. | 2013-04-13 00:51:16 |
multiply_normal.rb | Ruby script to multiply big-digit values. | 2013-04-12 01:57:50 |
calc_big_digits_2.rb | Ruby script to compute big-digit values.(v2) | 2013-04-09 00:07:06 |
cal_pi_arctan_2.rb | Ruby script to compute Pi with arctan's formula.(v2) | 2013-03-31 23:59:04 |
calc_pi_arctan_old.rb | Ruby script to compute Pi with arctan's formula.(old ver.) | 2013-03-30 00:07:37 |
ccalc_pi_euler.rb | Ruby script to compute Pi with Euler's formula. | 2013-03-28 23:21:13 |
calc_pi_klingenstierna.rb | Ruby script to calc pi by Klingenstierna formula. | 2013-03-27 02:16:37 |
tweet_with_image.rb | Ruby script to tweet with image files. | 2013-03-18 23:31:25 |
calc_factorial.rb | Ruby script to compute factorials. | 2013-03-17 22:18:20 |
calc_napier.rb | Ruby script to compute Napier's constant. | 2013-03-17 01:45:30 |
calc_pi_machin.rb | Ruby script to compute Pi with Machin's formula. | 2013-03-16 09:25:15 |
calc_big_digits.rb | Ruby script to compute big-digit values. | 2013-03-08 02:58:06 |
interpolate_newton.rb | Ruby script to interpolate with Newton method. | 2013-03-04 22:43:57 |
measure_benchmark.rb | Ruby script to measure benchmarks. | 2013-02-22 02:58:54 |
calc_pi_spigot_2.rb | Ruby script no.2 to calc the ratio of the circumference of a circle to its diameter by spigot algorythm. | 2013-02-22 02:56:39 |
calc_pi_spigot_1.rb | Ruby script to calc the ratio of the circumference of a circle to its diameter by spigot algorythm. | 2013-02-22 02:55:53 |
prime_number.rb | Ruby script to judge a prime number. | 2013-02-22 02:52:57 |
eratosthenes.rb | Ruby script to calc eratosthenes. | 2013-02-22 02:51:39 |
prime_decomposition.rb | Ruby script to decomposit a prime number. | 2013-02-22 02:50:52 |
rndnum_lcgs.rb | Ruby script to calc uniform random numbers by LCGs method. | 2013-02-22 02:49:31 |
chi2_rndnum.rb | Ruby script to calc uniform random numbers by chi-squared distribution method. | 2013-02-22 02:47:20 |
rndnum_box_muller.rb | Ruby script to calc normal random numbers by box-muller method. | 2013-02-22 02:45:54 |
definite_integral_trapzoid.rb | Ruby script to definite integral by trapzoid method. | 2013-02-22 02:43:50 |
definite_integral_simpson.rb | Ruby script to definite integral by simpson method. | 2013-02-22 02:42:58 |
taylor_expansion.rb | Ruby script to calc taylor expansion of exp(x). | 2013-02-22 02:41:47 |
taylor_expansion_cos.rb | Ruby script to calc taylor expansion of cos. | 2013-02-22 02:40:34 |
nonlinear_equation.rb | Ruby script to calc nonlinear equation by bisection method. | 2013-02-22 02:38:56 |
nonlinear_equation_newtown.rb | Ruby script to calc nonlinear equation by newtown method. | 2013-02-22 02:35:46 |
interpolate_lagrange.rb | Ruby script to interpolate with Lagrange method. | 2013-02-22 02:16:42 |
benchmark.rb | Ruby script for benchmarks. | 2013-02-20 19:37:09 |
month_list.rb | Octopress plugin to generate a month list. | 2013-02-02 01:58:17 |
archive_generator.rb | Octopress plugin to generate monthly archive pages. | 2013-02-02 01:54:58 |
nanoc_helper_pager.rb | Ruby script to generate pager for each article. | 2013-01-23 21:28:20 |
nanoc_helper_related_articles.rb | Ruby script to generate a list of related articles. | 2013-01-21 07:30:19 |
unicorn_rails | Script to start unicorn. | 2013-01-07 20:56:04 |
unicorn.rb | Configuration of unicorn on rails application. | 2013-01-07 20:26:41 |
test_mecab.rb | Ruby script to test of mecab. | 2012-12-31 00:27:20 |
twitter_get_list_members.rb | Ruby script to get members of lists by Twitter API. | 2012-12-20 02:42:22 |
twitter_get_lists.rb | Ruby script to get twitter lists by Twitter API. | 2012-12-20 02:01:57 |