Compile and Execute Programs Online| Online IDE:
'via Blog this'
Monday, January 27, 2014
Saturday, January 18, 2014
Memory workout mind database
Построена в виде деррева
Элементы в виде таблиц
Организация в виде json вложенная структура
Целесообразно делать на MongoDB
Можно начать на Amazon
Добавление элемента в базу
Eltments.[]
id
name
value
image
Groups {number, letter, word, image, person, product etc }
Set
Element {Element1, Element:{[Element2 Element2], Element5}}
Например:
Выбрать всех Person и Food
Сгенерировать случайные комбинации Person to Food, Person to [Foor], Person to Peson, Person to [Food, Phones, Images, words]
GetElementById, By name, group.
Test Group Knoledge
Mapping
Map numbers to images by name
Map lettes to images by name
Map Cards to images by name
Map days, english letters by name
Map words to images by name
Map numbers to image by mapping set
Mapping set
Id Elemtn1_id Element2_id
Create Mapping UI
Generate random Mapping
Memory test:
Create/Load mapping
Learn Mapping. Mode: Matrix, List,
Test : Matrix, List, Show hint, show element1, show element2, show hing-previous el, next el
Search element:
Bulk load of elements from
Элементы в виде таблиц
Организация в виде json вложенная структура
Целесообразно делать на MongoDB
Можно начать на Amazon
Добавление элемента в базу
Eltments.[]
id
name
value
image
Groups {number, letter, word, image, person, product etc }
Set
Element {Element1, Element:{[Element2 Element2], Element5}}
Например:
Выбрать всех Person и Food
Сгенерировать случайные комбинации Person to Food, Person to [Foor], Person to Peson, Person to [Food, Phones, Images, words]
GetElementById, By name, group.
Test Group Knoledge
Mapping
Map numbers to images by name
Map lettes to images by name
Map Cards to images by name
Map days, english letters by name
Map words to images by name
Map numbers to image by mapping set
Mapping set
Id Elemtn1_id Element2_id
Create Mapping UI
Generate random Mapping
Memory test:
Create/Load mapping
Learn Mapping. Mode: Matrix, List,
Test : Matrix, List, Show hint, show element1, show element2, show hing-previous el, next el
Search element:
Bulk load of elements from
Setup amazon web sertvices account
They have php python node.js ruby .net etc
Sunday, January 12, 2014
MIT online course / Introduction to Computer Science and Programming | Electrical Engineering and Computer Science | MIT OpenCourseWare
Friday, January 10, 2014
JSON response from server
{'success':'Success: data was modified!', {'data': {'prop1':'val1' .....}}}
{'error':'Error. Failed!', {'data': {'prop1':'val1' .....}}}
{'error':'Error. Failed!', {'data': {'prop1':'val1' .....}}}
Thursday, January 9, 2014
javascript class declaration
var A = new function(){
this.i = '1';
this.s = 'hello'
this.foo = function () {};
};
A.prototype.foo_2 = function () {};
var a = new A();
a.foo();
a.foo_2();
//singelton
var a = {
i: '1',
s: 'hello',
foo: function(){};
};
this.i = '1';
this.s = 'hello'
this.foo = function () {};
};
A.prototype.foo_2 = function () {};
var a = new A();
a.foo();
a.foo_2();
//singelton
var a = {
i: '1',
s: 'hello',
foo: function(){};
};
git
git diff origin/develop = git diff a b
a - origin/develop b- current branch
git stash save "name"
git stash apply/pop stash@{0}
git checkout origin/develop <file name>
git add --all select what to commit
git checkout file - exclude from commit
a - origin/develop b- current branch
git stash save "name"
git stash apply/pop stash@{0}
git checkout origin/develop <file name>
git add --all select what to commit
git checkout file - exclude from commit
method notation
actionDescription: getMessage getURL setData onButtonClick
use simple get set when its possible
use simple get set when its possible
Subscribe to:
Posts (Atom)