Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
2016-08-31T15:29:54.221Z - info: Require 3 ios devices
2016-08-31T15:29:54.222Z - info: Require 0 android devices
2016-08-31T15:29:54.249Z - info: listening on *:3000
Unit Test app is loaded

DEBUG thaliMobileNativeWrapper: Method peerAvailabilityChanged registered to native

This file has been truncated, but you can view the full file.
2016-08-31T15:20:58.818Z - info: Require 3 ios devices
2016-08-31T15:20:58.819Z - info: Require 0 android devices
2016-08-31T15:20:58.847Z - info: listening on *:3000
Unit Test app is loaded

DEBUG thaliMobileNativeWrapper: Method peerAvailabilityChanged registered to native

DEBUG thaliMobileNativeWrapper: Method discoveryAdvertisingStateUpdateNonTCP registered to native
This file has been truncated, but you can view the full file.
2016-08-31T15:17:16.958Z - info: Require 3 ios devices
2016-08-31T15:17:16.960Z - info: Require 0 android devices
2016-08-31T15:17:17.005Z - info: listening on *:3000
Unit Test app is loaded

DEBUG thaliMobileNativeWrapper: Method peerAvailabilityChanged registered to native
DEBUG thaliMobileNativeWrapper: Method discoveryAdvertisingStateUpdateNonTCP registered to native
@artemjackson
artemjackson / log1.t
Created August 31, 2016 15:33
Log from `jx ./runCoordinatedTests.js`
This file has been truncated, but you can view the full file.
2016-08-31T15:13:13.892Z - info: Require 3 ios devices
2016-08-31T15:13:13.905Z - info: Require 0 android devices
2016-08-31T15:13:13.991Z - info: listening on *:3000
Unit Test app is loaded

DEBUG thaliMobileNativeWrapper: Method peerAvailabilityChanged registered to native
DEBUG thaliMobileNativeWrapper: Method discoveryAdvertisingStateUpdateNonTCP registered to native
@artemjackson
artemjackson / init.coffee
Last active October 3, 2016 16:28
Atom's sync-settings backup
# initialization file (not found)
@artemjackson
artemjackson / inverse.m
Last active June 2, 2016 22:04
inverse polynomial in GF
(* обратный в поле полином *)
PolynomialBase = x^8 + x^4 + x^3 + x + 1;
NumericBase = 2;
InversePolynomial[p_] := Block[{result, polynomial = p, i, d, a, b},
{d, {a, b}} = PolynomialExtendedGCD[polynomial, PolynomialBase, x, Modulus -> NumericBase];
Return[PolynomialMod[a, NumericBase]];
];
@artemjackson
artemjackson / hemming.m
Last active June 2, 2016 16:23
Hemming Matrix
Needs["FiniteFields`"];
MultiplicativeGroupOfPolynomial[p_, g_, l_] :=
Block[{polynomial = p, generating = g, limit = l},
DeleteDuplicates@NestList[PolynomialMod[(generating*#), {polynomial, 2}] &, 1, limit]
];
BinaryForm[p_, d_] :=
Block[{polynomial = p, dimension = d},
Reverse@CoefficientList[polynomial, \[Alpha], dimension]
];
@artemjackson
artemjackson / lab_6.m
Created March 29, 2016 14:14
29.03.2016
clear;
% Initializing ode45 options
options = odeset('AbsTol', 1.e-9, 'RelTol', 1.e-10);
f=@(x,u)[u(2);-u(3)*u(1);0];
% values to test:
% [L1, L2] = [0.5, 0.6],
% [L1, L2] = [2.2, 2.3]
% [L1, L2] = [, ],
clear
%% Метод Эйлера %%
% Условие задачи
U = dsolve('Du = (t - u) / (t - 2*u)', 'u(0) = 1');
tau0 = 0.03;
b = 0.3;
% Функция для нахождения аналитического решения
u = @(t)eval(U);
% Функция для нахождения приближенного решения
f = @(t,u) (t - u) / (t - 2*u);
@artemjackson
artemjackson / bignumber.js.d.ts
Last active August 26, 2018 13:23
bignumber.js typescript defetion file
declare module "bignumber.js" {
export interface ISettings {
DECIMAL_PLACES?: number;
ROUNDING_MODE?: number;
EXPONENTIAL_AT?: any;
RANGE?: any;
ERRORS?: any;
}