Vi Veri Veniversum Vivus Vici
Imagine you have Nested Sets tree, and you must to order it (by moving nodes) by some value (may be date, or some number value).

  1. $a = array();
  2.  
  3. for ($i = 0; $i < 15; $i++) {
  4. $a[rand(1, 1000)] = rand(1, 50);
  5. }
  6.  
  7. print_r($a);
  8.  
  9. asort($a);
  10. $c = array_keys($a);
  11.  
  12. print_r($a);
  13.  
  14. $q = array();
  15.  
  16. foreach ($a as $key => $value) {
  17. $aKey = array_search($key, $c, true);
  18. if (isset($c[$aKey + 1])) {
  19. $bKey = $c[$aKey + 1];
  20. array_unshift($q, array($value, $key, $bKey));
  21. }
  22. }
  23.  
  24. // proof-o-concept: how array can be created
  25. $r = array($key => $value);
  26.  
  27. foreach ($q as $data) {
  28. echo vsprintf("Moved %s from index %d before %dn", $data);
  29. $r = array_replace(array($data[1] => $data[0]), $r);
  30. }
  31.  
  32. print_r($r);
  33.  
  34.  
  35.  
  36.  


@темы: PHP

Vi Veri Veniversum Vivus Vici
  1. [XDebug]
  2. zend_extension="/usr/lib/php5/20100525/xdebug.so"
  3. xdebug.remote_enable=1
  4. xdebug.remote_port="9000"
  5. xdebug.profiler_enable=1
  6. xdebug.profiler_output_dir="/tmp"
  7. xdebug.auto_trace=On
  8. xdebug.trace_output_dir="/tmp"
  9. xdebug.show_mem_delta=Off
  10. xdebug.collect_params=0
  11. xdebug.collect_return=Off
  12. xdebug.trace_format=2




Path to zend_extension must be equal to path which will be output by sudo pecl install xdebug command

@темы: PHP

Vi Veri Veniversum Vivus Vici
  1. <?php
  2.  
  3.  
  4.  
  5. function fill($keys, $value, $a = array()) {
  6. $keys = (array)$keys;
  7. $key = array_pop($keys);
  8. $v = &$a;
  9. foreach ($keys as $keyName) {
  10. $v = &$v[$keyName];
  11. }
  12. $v[$key] = $value;
  13. return $a;
  14. }
  15.  
  16. var_dump(fill(['a', 'b', 'c', 'd', 'e'], 'f', array('a' => array('b' => array('b1' => array())))));
  17. var_dump(fill(['a', 'b', 'c'], 'd', array('a' => array('a1' => 3))));
  18. var_dump(fill(['c'], 'd'));
  19. var_dump(fill('kkk', 'd'));


@темы: PHP

Vi Veri Veniversum Vivus Vici
I have code like this:



So I got this error.

Explanation: jslinterrors.com/unexpected-sync-method-a/
Solution: go to PHPStorm settings, find JSLint and check "stupidity"

@темы: JavaScript, JSLint

Vi Veri Veniversum Vivus Vici
As I see, in 4.2.1 all content of them does not recover after grid view refreshing (for example, after page navigation) - it only recovers text context of rowTpl. So I did following workaround:

  1. viewBodyExpandEventHandler: function (row, r) {
  2. if (!row.grid) {
  3. this.gridCreateRoutine(row, r.get('id'));
  4. }
  5. },
  6. viewRevreshEventHandler: function () {
  7. // Of course, in init method of my controller this.hashOfGrids = {};
  8. Ext4.Object.each(this.hashOfGrids, function(id, data) {
  9. this.createRowGrid(data.el, data.id);
  10. }, this);
  11. },
  12. gridCreateRoutine: function(row, id) {
  13. var l = 'renderdiv' + id,
  14. el = Ext.fly(layer);
  15. if (el) {
  16. el.setHTML('');
  17. Ext.create('Ext.grid.Panel', {
  18. renderTo : l,
  19. });
  20. this.hashOfGrids[id] = {
  21. el : row,
  22. id : id
  23. };
  24. }
  25. },
  26.  


@темы: ExtJS 4, JavaScript, долгая ебля с экстом, rowexpander, extjs 4.2.1

Vi Veri Veniversum Vivus Vici
  1. var a = [
  2. ['a', 'b', 'c'],
  3. ['e', 'f'],
  4. ['g', 'h', 'i', 'j'],
  5. ['k']
  6. ];
  7.  
  8. var f = function (data, i) {
  9. var result = [],
  10. tmp,
  11. j, k,
  12. variants;
  13. // start from 0 index of data at function launch if index wasn't passed
  14. i = i || 0;
  15. // in case i is greater then array bound, just return empty array
  16. if (i < data.length) {
  17. for (j = 0; j < data[i].length; j++) {
  18. variants = f(data, i + 1);
  19. // if there aren't variants, just create array of one element which is empty array itself
  20. if (!variants.length) {
  21. variants = [
  22. []
  23. ];
  24. }
  25. for (k = 0; k < variants.length; k++) {
  26. // concat variants and current iterable element
  27. tmp = [data[i][j]].concat(variants[k]);
  28. result.push(tmp);
  29. }
  30. }
  31. }
  32. return result;
  33. }
  34.  
  35. console.log(f(a));


@темы: JavaScript, algorithms, combinatoric

Vi Veri Veniversum Vivus Vici


@темы: SVN

Vi Veri Veniversum Vivus Vici
С помощью этой статьи поправил:
www.thinkplexx.com/learn/howto/security/ssl/rem...

tl;dr

  1. openssl rsa -in ~/.ssh/id_rsa -out ~/.ssh/id_rsa_new
  2. cp ~/.ssh/id_rsa ~/.ssh/id_rsa.backup
  3. rm ~/.ssh/id_rsa
  4. cp ~/.ssh/id_rsa_new ~/.ssh/id_rsa
  5. chmod 400 ~/.ssh/id_rsa


@темы: SSH, Linux, OpenSSL

Vi Veri Veniversum Vivus Vici
The main idea is have some div where nested grid will be rendered

  1. Ext4.define('Company', {
  2. extend: 'Ext4.data.Model',
  3. fields: [
  4. {name: 'id', type: 'int' },
  5. {name: 'company', type: 'string'},
  6. {name: 'price', type: 'float'},
  7. {name: 'change', type: 'float'},
  8. {name: 'pctChange', type: 'float'},
  9. {name: 'lastChange', type: 'date', dateFormat: 'n/j h:ia'},
  10. {name: 'industry'},
  11. {name: 'desc'}
  12. ]
  13. });
  14.  
  15. // Array data for the grids
  16. Ext4.grid.dummyData = [
  17. ['3m Co',71.72,0.02,0.03,'9/1 12:00am', 'Manufacturing'],
  18. ['Alcoa Inc',29.01,0.42,1.47,'9/1 12:00am', 'Manufacturing'],
  19. ['Altria Group Inc',83.81,0.28,0.34,'9/1 12:00am', 'Manufacturing'],
  20. ['American Express Company',52.55,0.01,0.02,'9/1 12:00am', 'Finance'],
  21. ['American International Group, Inc.',64.13,0.31,0.49,'9/1 12:00am', 'Services'],
  22. ['AT&T Inc.',31.61,-0.48,-1.54,'9/1 12:00am', 'Services'],
  23. ['Boeing Co.',75.43,0.53,0.71,'9/1 12:00am', 'Manufacturing'],
  24. ['Caterpillar Inc.',67.27,0.92,1.39,'9/1 12:00am', 'Services'],
  25. ['Citigroup, Inc.',49.37,0.02,0.04,'9/1 12:00am', 'Finance'],
  26. ['E.I. du Pont de Nemours and Company',40.48,0.51,1.28,'9/1 12:00am', 'Manufacturing'],
  27. ['Exxon Mobil Corp',68.1,-0.43,-0.64,'9/1 12:00am', 'Manufacturing'],
  28. ['General Electric Company',34.14,-0.08,-0.23,'9/1 12:00am', 'Manufacturing'],
  29. ['General Motors Corporation',30.27,1.09,3.74,'9/1 12:00am', 'Automotive'],
  30. ['Hewlett-Packard Co.',36.53,-0.03,-0.08,'9/1 12:00am', 'Computer'],
  31. ['Honeywell Intl Inc',38.77,0.05,0.13,'9/1 12:00am', 'Manufacturing'],
  32. ['Intel Corporation',19.88,0.31,1.58,'9/1 12:00am', 'Computer'],
  33. ['International Business Machines',81.41,0.44,0.54,'9/1 12:00am', 'Computer'],
  34. ['Johnson & Johnson',64.72,0.06,0.09,'9/1 12:00am', 'Medical'],
  35. ['JP Morgan & Chase & Co',45.73,0.07,0.15,'9/1 12:00am', 'Finance'],
  36. ["McDonald's Corporation",36.76,0.86,2.40,'9/1 12:00am', 'Food'],
  37. ['Merck & Co., Inc.',40.96,0.41,1.01,'9/1 12:00am', 'Medical'],
  38. ['Microsoft Corporation',25.84,0.14,0.54,'9/1 12:00am', 'Computer'],
  39. ['Pfizer Inc',27.96,0.4,1.45,'9/1 12:00am', 'Services', 'Medical'],
  40. ['The Coca-Cola Company',45.07,0.26,0.58,'9/1 12:00am', 'Food'],
  41. ['The Home Depot, Inc.',34.64,0.35,1.02,'9/1 12:00am', 'Retail'],
  42. ['The Procter & Gamble Company',61.91,0.01,0.02,'9/1 12:00am', 'Manufacturing'],
  43. ['United Technologies Corporation',63.26,0.55,0.88,'9/1 12:00am', 'Computer'],
  44. ['Verizon Communications',35.57,0.39,1.11,'9/1 12:00am', 'Services'],
  45. ['Wal-Mart Stores, Inc.',45.45,0.73,1.63,'9/1 12:00am', 'Retail'],
  46. ['Walt Disney Company (The) (Holding Company)',29.89,0.24,0.81,'9/1 12:00am', 'Services']
  47. ];
  48.  
  49. // add in some dummy descriptions
  50. for(var i = 0; i < Ext4.grid.dummyData.length; i++) {
  51. Ext4.grid.dummyData[i].unshift(i);
  52. Ext4.grid.dummyData[i].push('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed metus nibh, sodales a, porta at, vulputate eget, dui. Pellentesque ut nisl. ');
  53. }
  54.  
  55. var getLocalStore = function(rand) {
  56. var data = Ext4.grid.dummyData,
  57. len = Math.round(Math.random() * 10) + 3, i = 0;
  58. if (rand) {
  59. data = [];
  60. for (; i < len; i++) {
  61. data.push([
  62. i + 1,
  63. 'Company ' + (Math.round(Math.random() * 1000) + 1),
  64. (Math.random() * 100 + 1).toFixed(2)
  65. ]);
  66. }
  67. }
  68. return Ext4.create('Ext4.data.ArrayStore', {
  69. model: 'Company',
  70. data: data
  71. });
  72. };
  73.  
  74.  
  75. var grid1 = Ext4.create('Ext4.grid.Panel', {
  76. store: getLocalStore(),
  77. viewConfig: {
  78. listeners: {
  79. expandbody: function(row, record, rowBody) {
  80. console.log(arguments);
  81. if (!row.grid) {
  82. console.log('create grid for ' + record.get('id'));
  83. var sg = Ext4.create('Ext4.grid.Panel', {
  84. forceFit: true,
  85. store: getLocalStore(true),
  86. columns: [
  87. {text: "Company", dataIndex: 'company'},
  88. {text: "Price", dataIndex: 'price'}
  89. ],
  90. renderTo: 'sg-' + record.get('id') ,
  91. params:{
  92. id:record.get('id')
  93. }
  94. });
  95. row.grid = sg;
  96. }
  97. }
  98. }
  99. },
  100. columns: [
  101. {text: "Company", flex: 1, dataIndex: 'company'},
  102. {text: "Price", renderer: Ext4.util.Format.usMoney, dataIndex: 'price'},
  103. {text: "Change", dataIndex: 'change'},
  104. {text: "% Change", dataIndex: 'pctChange'},
  105. {text: "Last Updated", renderer: Ext4.util.Format.dateRenderer('m/d/Y'), dataIndex: 'lastChange'}
  106. ],
  107. width: 600,
  108. height: 300,
  109. plugins: [{
  110. ptype: 'rowexpander',
  111. rowBodyTpl : [
  112. '<p><b>Company:</b> {company}</p>',
  113. '<p><b>Summary:</b> {desc}</p>',
  114. '<div id="sg-{id}"></div>'
  115. ]
  116. }],
  117. margin: '0 0 20 0',
  118. });
  119.  
  120. var w = new Ext4.window.Window({
  121. title: 'test',
  122. items: [grid1]
  123. });
  124. w.show();
  125.  
  126.  
  127.  


@темы: ExtJS 4

Vi Veri Veniversum Vivus Vici
curl -s www.kernel.org | grep -m 1 -o 'www.kernel.org/pub/linux/kernel/[^\"]*' > /tmp/last_kernel.txt && wget -v -d -i /tmp/last_kernel.txt && rm /tmp/last_kernel.txt

@темы: bash

Vi Veri Veniversum Vivus Vici
Пусть требуется распределить некую сумму по частям в массиве, притом каждая часть в массиве должна достаточно сильно отличаться от другой.
В примере части отличаются в 1,5 раза от предыдущей, помноженного на индекс элемента (без такого умножения разница межу соседями будет значительно меньшей)
Первая функция считает вес первого элемента, а вторая - проверяет корректность подсчетов

  1. function t(arr) {
  2. var d = 1,
  3. x = 1,
  4. i = 1,
  5. len = arr.length;
  6. for (; i < len; i++) {
  7. x *= 1.5;
  8. d += x * i;
  9. }
  10. d = len / d;
  11. return d;
  12. }
  13.  
  14. function test(d, arr, s) {
  15. var i = 0,
  16. x = 0,
  17. k,
  18. len = arr.length,
  19. w = s / arr.length,
  20. wp = 0;
  21. console.log('w = ' + w);
  22. for (; i < len; i++) {
  23. if (!i) {
  24. k = d;
  25. }
  26. else {
  27. k = i * Math.pow(1.5, i) * d;
  28. }
  29. console.log('k = ' + k);
  30. console.log('chunk for ' + i + ' is ' + k * w);
  31. wp += k * w;
  32. x += k;
  33. console.log('x = ' + x);
  34. }
  35. console.log('wp = ' + wp);
  36. return x;
  37. }
  38.  
  39. var sum = 6,
  40. a = [0, 1, 2],
  41. delta = t(a);
  42. console.log(delta);
  43. console.log(test(delta, a, sum));


@темы: JavaScript

Vi Veri Veniversum Vivus Vici
For example, we have some table for categories:

  1. CREATE TABLE `p1` (
  2. `id` int(11) NOT NULL AUTO_INCREMENT,
  3. `title` varchar(20) DEFAULT NULL,
  4. PRIMARY KEY (`id`)
  5. ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
We have some categories:

  1. mysql> select * from p1;
  2. +----+-------+
  3. | id | title |
  4. +----+-------+
  5. | 1 | cat1 |
  6. | 2 | cat2 |
  7. | 3 | cat3 |
  8. | 4 | cat4 |
  9. +----+-------+
  10. 4 rows in set (0.00 sec)
Then, we have table for properties:

  1. CREATE TABLE `p2` (
  2. `id` int(11) NOT NULL AUTO_INCREMENT,
  3. `title` varchar(20) DEFAULT NULL,
  4. `cat_id` int(11) NOT NULL,
  5. PRIMARY KEY (`id`)
  6. ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;

There are list of properties:

  1. mysql> select * from p2;
  2. +----+--------+--------+
  3. | id | title | cat_id |
  4. +----+--------+--------+
  5. | 1 | prop11 | 1 |
  6. | 2 | prop12 | 1 |
  7. | 3 | prop21 | 2 |
  8. | 4 | prop22 | 2 |
  9. | 5 | prop23 | 2 |
  10. | 6 | prop31 | 3 |
  11. | 7 | prop32 | 3 |
  12. | 8 | prop33 | 3 |
  13. | 9 | prop41 | 4 |
  14. +----+--------+--------+
  15. 9 rows in set (0.00 sec)

Next, we need to have list of properties values, which may be contained in "groups":

  1. CREATE TABLE `p3` (
  2. `gid` int(11) NOT NULL,
  3. `prop_id` int(11) NOT NULL,
  4. `value` varchar(20) DEFAULT NULL,
  5. PRIMARY KEY (`gid`,`prop_id`)
  6. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;

with the following content:

  1. mysql> select * from p3;
  2. +-----+---------+------------+
  3. | gid | prop_id | value |
  4. +-----+---------+------------+
  5. | 1 | 1 | prop 1 |
  6. | 1 | 2 | prop 2 |
  7. | 1 | 4 | diff value |
  8. | 1 | 5 | same value |
  9. | 1 | 6 | prop 6 |
  10. | 2 | 1 | prop 1 |
  11. | 2 | 2 | prop 2 |
  12. | 2 | 3 | prop 3 |
  13. | 2 | 4 | prop 4 |
  14. | 2 | 5 | same value |
  15. | 2 | 7 | prop 7 |
  16. +-----+---------+------------+
  17. 11 rows in set (0.00 sec)

For example, I want to know, which values of second group are missed or have different value in the first group. And properties in this dataset must be included in categories 1 and 2.


  1. mysql> select *,
  2. (select b.prop_id
  3. from p3 as b
  4. where gid = 1
  5. and a.prop_id = b.prop_id
  6. ) as is_exists
  7. from p3 as a
  8. join p2
  9. on p2.id = a.prop_id
  10. where gid = 2
  11. and cat_id in (1, 2)
  12. and (prop_id, value) not in
  13. (select prop_id, value
  14. from p3
  15. where gid = 1
  16. and prop_id = a.prop_id
  17. );
  18. +-----+---------+--------+----+--------+--------+-----------+
  19. | gid | prop_id | value | id | title | cat_id | is_exists |
  20. +-----+---------+--------+----+--------+--------+-----------+
  21. | 2 | 3 | prop 3 | 3 | prop21 | 2 | NULL |
  22. | 2 | 4 | prop 4 | 4 | prop22 | 2 | 4 |
  23. +-----+---------+--------+----+--------+--------+-----------+
  24. 2 rows in set (0.00 sec)


@темы: MySQL

Vi Veri Veniversum Vivus Vici
  1. var w = new Ext.Window({
  2. layout: 'border',
  3. title: 'test',
  4. width: 500,
  5. height: 400,
  6. items: [
  7. { html: '1', title: 'left', width: 200, region: 'west' },
  8. { html: '1', title: 'center', region: 'center' }
  9. ]
  10. });
  11. w.show();
  12. setTimeout(function() {
  13. var p = w.layout.west.panel;
  14. console.log(p);
  15. p.setWidth(400);
  16. w.doLayout();
  17. console.log('test finished');
  18. }, 1000);


@темы: ExtJS 2

Vi Veri Veniversum Vivus Vici
We need to implement overflowHandler for toolbar layout, which will add second toolbar and wraps components from first toolbar to second when them cannot be displayed because there isn't enough width of toolbar's container.
First, we need to override Ext.panel.Panel:
  1. Ext4.override(Ext4.panel.Panel, {
  2. bridgeToolbars : function () {
  3. var toolbar;
  4. this.callParent(arguments);
  5. if (this.tbar2) {
  6. if (Ext4.isArray(this.tbar2)) {
  7. toolbar = {
  8. xtype : 'toolbar',
  9. items : this.tbar2
  10. };
  11. }
  12. else if (!toolbar.xtype) {
  13. toolbar.xtype = 'toolbar';
  14. }
  15. toolbar.dock = 'top';
  16. toolbar.isTbar2 = true;
  17. this.dockedItems = this.dockedItems.concat(toolbar);
  18. this.tbar2 = null;
  19. }
  20. },
  21. onRender : function () {
  22. this.callParent(arguments);
  23. var topBars = this.getDockedItems('toolbar[dock="top"]'),
  24. i,
  25. len;
  26. for (i = 0, len = topBars.length; i < len; i++) {
  27. if (topBars[i].isTbar2) {
  28. this.tbar2 = topBars[i];
  29. break;
  30. }
  31. }
  32. },
  33. /**
  34.   * Creates, if not exists, and returns toolbar at passed position
  35.   * @param {Ext.panel.Panel} panel
  36.   * @param {String} position
  37.   * @return {Ext.toolbar.Toolbar}
  38.   */
  39. getDynamicTBar : function (position) {
  40. var panel = this,
  41. params,
  42. tb;
  43. position = position || 'top';
  44. if (position === 'tbar2') {
  45. tb = panel.tbar2;
  46. params = {
  47. dock : 'top',
  48. isTbar2 : true,
  49. layout : {
  50. overflowHandler : 'Scroller'
  51. }
  52. };
  53. }
  54. else {
  55. tb = panel.getDockedItems('toolbar[dock="' + position + '"]');
  56. params = {dock : position};
  57. if (tb.length > 0) {
  58. tb = tb[0];
  59. }
  60. }
  61. if (!tb) {
  62. tb = Ext4.create('Ext4.toolbar.Toolbar', params);
  63. panel.addDocked(tb);
  64. if (position === 'tbar2') {
  65. panel.tbar2 = tb;
  66. }
  67. }
  68. return tb;
  69. }
  70. });


@темы: ExtJS 4, JavaScript

Vi Veri Veniversum Vivus Vici
Next, we need to create class Ext4.layout.container.boxOverflow.TBar2 (it has so long name because ExtJS searches handleOverflow (which is instance of String) in hardcoded Ext4.layout.container.boxOverflow namespace).

читать дальше

@темы: ExtJS 4, JavaScript

Vi Veri Veniversum Vivus Vici
This example shows how to share property between class instances and use static methods. We need to use 'for' loop instead of Array.prototype.concat because in case we'll use 'concat' method, we'll assign static array to instance of class, not to prototype of class constructor. So, we need to loop over an array and use 'push' method.

  1. function MyObject(title){
  2. this.title = title;
  3. this.test = function() {
  4. console.log('test from ' + this.title);
  5. console.log(this.staticItemsMember.join(' - '));
  6. }
  7. }
  8.  
  9.  
  10. MyObject.prototype = {
  11. staticItemsMember : [1, 2, 3],
  12. addItems : function(items) {
  13. var title = this.title || 'was called from constructor method',
  14. i = 0, l;
  15. console.log('add items in function of class instance (' + title + ')');
  16. if (!(items instanceof Array)) {
  17. items = [items];
  18. }
  19. for (l = items.length; i < l; i++) {
  20. this.staticItemsMember.push(items[i]);
  21. }
  22. }
  23. }
  24.  
  25.  
  26.  
  27. MyObject.addItems = function(items) {
  28. console.log('add items in function of class constructor');
  29. this.prototype.addItems(items);
  30. }
  31.  
  32.  
  33. var o = new MyObject('o');
  34. o.test();
  35. MyObject.addItems([5, 6]);
  36. o.test();
  37. o.addItems([8, 9, 10]);
  38. o.test();
  39. MyObject.addItems(11);
  40. o.test();
  41. var m = new MyObject('m');
  42. m.test();
  43. m.addItems([12, 13]);
  44. o.test();
  45. m.test();
  46. MyObject.addItems([14, 15, 16, 17]);
  47. m.test();
  48. o.test();
  49. o.addItems([18, 19, 20]);
  50. m.test();
  51. o.test();


This will output in browser's console text like:
  1.  
  2.  
  3. >>> function MyObject(title){ this.title = title...); o.addItems([18, 19, 20]); m.test(); o.test();
  4.  
  5. test from o
  6.  
  7. 1 - 2 - 3
  8.  
  9. add items in function of class constructor
  10.  
  11. add items in function of class instance (was called from constructor method)
  12.  
  13. test from o
  14.  
  15. 1 - 2 - 3 - 5 - 6
  16.  
  17. add items in function of class instance (o)
  18.  
  19. test from o
  20.  
  21. 1 - 2 - 3 - 5 - 6 - 8 - 9 - 10
  22.  
  23. add items in function of class constructor
  24.  
  25. add items in function of class instance (was called from constructor method)
  26.  
  27. test from o
  28.  
  29. 1 - 2 - 3 - 5 - 6 - 8 - 9 - 10 - 11
  30.  
  31. test from m
  32.  
  33. 1 - 2 - 3 - 5 - 6 - 8 - 9 - 10 - 11
  34.  
  35. add items in function of class instance (m)
  36.  
  37. test from o
  38.  
  39. 1 - 2 - 3 - 5 - 6 - 8 - 9 - 10 - 11 - 12 - 13
  40.  
  41. test from m
  42.  
  43. 1 - 2 - 3 - 5 - 6 - 8 - 9 - 10 - 11 - 12 - 13
  44.  
  45. add items in function of class constructor
  46.  
  47. add items in function of class instance (was called from constructor method)
  48.  
  49. test from m
  50.  
  51. 1 - 2 - 3 - 5 - 6 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17
  52.  
  53. test from o
  54.  
  55. 1 - 2 - 3 - 5 - 6 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17
  56.  
  57. add items in function of class instance (o)
  58.  
  59. test from m
  60.  
  61. 1 - 2 - 3 - 5 - 6 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - 18 - 19 - 20
  62.  
  63. test from o
  64.  
  65. 1 - 2 - 3 - 5 - 6 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - 18 - 19 - 20


@темы: JavaScript

Vi Veri Veniversum Vivus Vici
For example, you can to test your code in PHP >= 5.4
sandbox.onlinephpfunctions.com/

@темы: PHP

Vi Veri Veniversum Vivus Vici
  1. #
  2. # The MySQL database server configuration file.
  3. #
  4. # You can copy this to one of:
  5. # - "/etc/mysql/my.cnf" to set global options,
  6. # - "~/.my.cnf" to set user-specific options.
  7. #
  8. # One can use all long options that the program supports.
  9. # Run program with --help to get a list of available options and with
  10. # --print-defaults to see which it would actually understand and use.
  11. #
  12. # For explanations see
  13.  
  14. # This will be passed to all mysql clients
  15. # It has been reported that passwords should be enclosed with ticks/quotes
  16. # escpecially if they contain "#" chars...
  17. # Remember to edit /etc/mysql/debian.cnf when changing the socket location.
  18. [client]
  19. port = 3306
  20. socket = /var/run/mysqld/mysqld.sock
  21.  
  22. # Here is entries for some specific programs
  23. # The following values assume you have at least 32M ram
  24.  
  25. # This was formally known as [safe_mysqld]. Both versions are currently parsed.
  26. [mysqld_safe]
  27. socket = /var/run/mysqld/mysqld.sock
  28. nice = 0
  29.  
  30. [mysqld]
  31. #
  32. # * Basic Settings
  33. #
  34. user = mysql
  35. pid-file = /var/run/mysqld/mysqld.pid
  36. socket = /var/run/mysqld/mysqld.sock
  37. port = 3306
  38. basedir = /usr
  39. datadir = /home/mysql
  40. tmpdir = /tmp
  41. lc-messages-dir = /usr/share/mysql
  42. skip-external-locking
  43. #
  44. # Instead of skip-networking the default is now to listen only on
  45. # localhost which is more compatible and is not less secure.
  46. bind-address = 127.0.0.1
  47. #
  48. # * Fine Tuning
  49. #
  50. key_buffer = 32M
  51. max_allowed_packet = 32M
  52. thread_stack = 192K
  53. thread_cache_size = 16
  54. # This replaces the startup sсript and checks MyISAM tables if needed
  55. # the first time they are touched
  56. myisam-recover = BACKUP
  57. max_connections = 64
  58. table_cache = 1000
  59. #thread_concurrency = 10
  60. #
  61. # * Query Cache Configuration
  62. #
  63. query_cache_limit = 16M
  64. query_cache_size = 64M
  65. #
  66. # * Logging and Replication
  67. #
  68. # Both location gets rotated by the cronjob.
  69. # Be aware that this log type is a performance killer.
  70. # As of 5.1 you can enable the log at runtime!
  71. #general_log_file = /var/log/mysql/mysql.log
  72. #general_log = 1
  73. #
  74. # Error logging goes to syslog due to /etc/mysql/conf.d/mysqld_safe_syslog.cnf.
  75. #
  76. # Here you can see queries with especially long duration
  77. log_slow_queries = /var/log/mysql/mysql-slow.log
  78. long_query_time = 0
  79. slow_query_log = 1
  80. #log-queries-not-using-indexes
  81. #
  82. # The following can be used as easy to replay backup logs or for replication.
  83. # note: if you are setting up a replication slave, see README.Debian about
  84. # other settings you may need to change.
  85. #server-id = 1
  86. #log_bin = /var/log/mysql/mysql-bin.log
  87. expire_logs_days = 10
  88. max_binlog_size = 100M
  89. #binlog_do_db = include_database_name
  90. #binlog_ignore_db = include_database_name
  91. #
  92. # * InnoDB
  93. #
  94. # InnoDB is enabled by default with a 10MB datafile in /var/lib/mysql/.
  95. # Read the manual for more InnoDB related options. There are many!
  96. #
  97. # * Security Features
  98. #
  99. # Read the manual, too, if you want chroot!
  100. # chroot = /var/lib/mysql/
  101. #
  102. # For generating SSL certificates I recommend the OpenSSL GUI "tinyca".
  103. #
  104. # ssl-ca=/etc/mysql/cacert.pem
  105. # ssl-cert=/etc/mysql/server-cert.pem
  106. # ssl-key=/etc/mysql/server-key.pem
  107.  
  108.  
  109. innodb_buffer_pool_size = 256M
  110. innodb_additional_mem_pool_size = 16M
  111. innodb_log_file_size = 128M
  112. innodb_log_buffer_size = 8M
  113. innodb_flush_log_at_trx_commit = 2
  114. innodb_thread_concurrency = 8
  115. innodb_flush_method = O_DIRECT
  116.  
  117. innodb_checksums = 0
  118. innodb_file_format_check = 0
  119. innodb_stats_on_metadata=0
  120.  
  121. [mysqldump]
  122. quick
  123. quote-names
  124. max_allowed_packet = 16M
  125.  
  126. [mysql]
  127. #no-auto-rehash # faster start of mysql but no tab completition
  128.  
  129. [isamchk]
  130. key_buffer = 16M
  131.  
  132. #
  133. # * IMPORTANT: Additional settings that can override those from this file!
  134. # The files must end with '.cnf', otherwise they'll be ignored.
  135. #
  136. !includedir /etc/mysql/conf.d/
  137.  


@темы: MySQL

Vi Veri Veniversum Vivus Vici
I've created mixin to dynamically add 'use strict' literal to the start of functions in classes.
First, we need to create cache of keys which contains in second parameter of Ext.define:
  1. (function () {
  2. var old = Ext4.define,
  3. del = [
  4. 'extend', 'mixins', 'statics', 'strictMethods',
  5. 'constructor', 'init', 'notStrictMethods', 'initComponent'
  6. ],
  7. res;
  8. // save keys in cache and delete potentially unsafe keys
  9. window.StrictCache = {};
  10. Ext4.define = function (name, data) {
  11. res = Ext4.Object.getKeys(data);
  12. if (data.statics) {
  13. if (Ext4.isArray(data.statics.notStrictMethods)) {
  14. del = Ext4.Array.merge(del, data.statics.notStrictMethods);
  15. }
  16. res = Ext4.Array.merge(res, Ext4.Object.getKeys(data.statics));
  17. }
  18. res = Ext4.Array.unique(res);
  19. if (Ext4.isArray(data.notStrictMethods)) {
  20. del = Ext4.Array.merge(del, data.notStrictMethods);
  21. }
  22. Ext4.each(del, function (toDelete) {
  23. Ext4.Array.remove(res, toDelete);
  24. });
  25. StrictCache[name] = res;
  26. return old.apply(this, arguments);
  27. };
  28. })();

Next, we must to write mixin:
  1. /**
  2.  * @class Lib.StrictMixin
  3.  * Mixin class for 'use strict'
  4.  * @author guyfawkes
  5.  * @docauthor guyfawkes
  6.  */
  7. Ext4.define('Lib.StrictMixin', {
  8. onClassMixedIn : function (mixedClass) {
  9. var fn;
  10. // mixedClass can be both class prototype or constructor (in this case we need to get function from its prototype)
  11. // please note we don't break loop when strictMethods were found: it must be both in 'statics' and non-static of ExtJS 4's class
  12. Ext4.each([mixedClass, mixedClass.prototype], function (obj, index) {
  13. fn = function(method) {
  14. if (Ext4.isFunction(obj[method])) {
  15. console && console.info(
  16. Ext4.String.format(
  17. '{0} found in {1} of {2}',
  18. method, (index ? 'constructor prototype' : 'prototype'), obj.$className
  19. )
  20. );
  21. obj[method] = new Function("'use strict';nreturn " + obj[method].toString())();
  22. }
  23. };
  24. // if we need to loop over all methods, get keys from cache (or we'll get functions from parent classes and got an error
  25. if (Ext4.isString(obj.strictMethods) && (obj.strictMethods === 'ALL') && Ext4.isString(obj.$className)) {
  26. Ext4.each(StrictCache[obj.$className], fn);
  27. }
  28. else {
  29. // if strictMethods is an array, loop over it
  30. if (Ext4.isArray(obj.strictMethods)) {
  31. Ext4.each(obj.strictMethods, fn);
  32. }
  33. }
  34. });
  35. }
  36. });


@темы: ExtJS 4, JavaScript, use strict

Vi Veri Veniversum Vivus Vici
  1. var x = Ext.getCmp('ext-comp-1404').el;
  2. x.first().createChild({tag: 'span', html: ' (test message)'});


@темы: JavaScript, ExtJS