Vi Veri Veniversum Vivus Vici
Следите за развитием:

github.com/GuyFawkes/mysqldiff

@темы: mysqldiff, Perl

Vi Veri Veniversum Vivus Vici
Осторожно, быдлокод! Я не перловик все же.

  1. #!/usr/bin/perl -i
  2. use warnings;
  3. use strict;
  4.  
  5. my $fields;
  6. my $order;
  7.  
  8. $fields->{'partnumber'} = 'TEXT';
  9. $fields->{'date_add'} = 'lol';
  10. $fields->{'id'} = 'huj';
  11. $fields->{'id1c'} = 'TEXT';
  12. $fields->{'md5'} = 'TEZA';
  13.  
  14. $order->{'md5'} = 3;
  15. $order->{'id'} = 1;
  16. $order->{'date_add'} = 5;
  17. $order->{'partnumber'} = 2;
  18. $order->{'id1c'} = 4;
  19.  
  20. my @keys = sort { ($fields->{$a}=~/s*TEXTs*/is) cmp ($fields->{$b}=~/s*TEXTs*/is) || $order->{$a} cmp $order->{$b} } keys %$fields;
  21.  
  22. for my $key (@keys) {
  23. print "Key $key; Content: $fields->{$key}; Order: $order->{$key}n";
  24. }


Данный пример отсортирует те поля, в которых присутствует подстрока "TEXT", и засунет их в конец массива, а между полями обоих групп (без подстроки с подстрокой) отсортирует по порядку, указанному в хеше $order.

@темы: Perl

Vi Veri Veniversum Vivus Vici
Как часто это бесит в Git!

Заходим в нужную папку и выполняем:



  1. $ find . -type f -iname "*.css" -exec dos2unix "{}" +;
  2. dos2unix: converting file ./docblox/syntax_highlighter/tests/js/qunit.css to Unix format ...
  3. dos2unix: converting file ./docblox/syntax_highlighter/styles/shCoreDefault.css to Unix format ...
  4. dos2unix: converting file ./docblox/syntax_highlighter/styles/shCoreDjango.css to Unix format ...
  5. dos2unix: converting file ./docblox/syntax_highlighter/styles/shThemeDjango.css to Unix format ...
  6. dos2unix: converting file ./docblox/syntax_highlighter/styles/shThemeMDUltra.css to Unix format ...
  7. dos2unix: converting file ./docblox/syntax_highlighter/styles/shCoreRDark.css to Unix format ...
  8. dos2unix: converting file ./docblox/syntax_highlighter/styles/shCoreEclipse.css to Unix format ...
  9. dos2unix: converting file ./docblox/syntax_highlighter/styles/shCoreEmacs.css to Unix format ...
  10. dos2unix: converting file ./docblox/syntax_highlighter/styles/shThemeDefault.css to Unix format ...
  11. dos2unix: converting file ./docblox/syntax_highlighter/styles/shThemeFadeToGrey.css to Unix format ...
  12. dos2unix: converting file ./docblox/syntax_highlighter/styles/shThemeRDark.css to Unix format ...
  13. dos2unix: converting file ./docblox/syntax_highlighter/styles/shCoreMidnight.css to Unix format ...
  14. dos2unix: converting file ./docblox/syntax_highlighter/styles/shThemeEmacs.css to Unix format ...
  15. dos2unix: converting file ./docblox/syntax_highlighter/styles/shThemeWordpress.css to Unix format ...
  16. dos2unix: converting file ./docblox/syntax_highlighter/styles/shThemeMidnight.css to Unix format ...
  17. dos2unix: converting file ./docblox/syntax_highlighter/styles/shCoreFadeToGrey.css to Unix format ...
  18. dos2unix: converting file ./docblox/syntax_highlighter/styles/shCoreMDUltra.css to Unix format ...
  19. dos2unix: converting file ./docblox/syntax_highlighter/styles/shThemeEclipse.css to Unix format ...
  20. dos2unix: converting file ./docblox/syntax_highlighter/styles/shCore.css to Unix format ...
  21. dos2unix: converting file ./docblox/css/black-tie/jquery-ui-1.8.2.custom.css to Unix format ...
  22. dos2unix: converting file ./docblox/css/navigation.css to Unix format ...
  23. dos2unix: converting file ./docblox/css/jquery-ui.css to Unix format ...
  24. dos2unix: converting file ./docblox/css/default.css to Unix format ...
  25. dos2unix: converting file ./docblox/css/docblox/jquery-ui-1.8.16.custom.css to Unix format ...
  26. dos2unix: converting file ./docblox/css/api-content.css to Unix format ...
  27. dos2unix: converting file ./docblox/css/jquery.treeview.css to Unix format ...
  28. dos2unix: converting file ./docblox/css/sen.full.min.css to Unix format ...
  29. dos2unix: converting file ./docblox/css/theme.css to Unix format ...




Вместо .css, конечно, можно поставить любую маску. Ну и да, утилиту dos2unix надо вначале поставить.



По мотивам forrst.com/posts/Find_DOS_CRLF_files_and_conver...

@темы: Git

10:00

svn diff

Vi Veri Veniversum Vivus Vici
Почему-то у многих возникает вопрос, как просмотреть, чем отличается файл, который пришел после svn up.



@темы: SVN

Vi Veri Veniversum Vivus Vici
Если внезапно понадобилось это сделать именно в конструкторе, то делаем так:



config - параметр функции constructor, в конце не забываем делать this.callParents(arguments);

Но все же правильно сделать это в initComponent.

17:05 

Доступ к записи ограничен

Vi Veri Veniversum Vivus Vici
Закрытая запись, не предназначенная для публичного просмотра

Vi Veri Veniversum Vivus Vici
Для этого пришлось разобраться с новой системой обращения к частям грида и воспользоваться непосредственно манипуляциями с DOM:

  1. Ext.create('Ext.data.Store', {
  2. storeId:'employeeStore',
  3. fields:['firstname', 'lastname', 'senority', 'dep', 'hired'],
  4. data:[
  5. {firstname:"Michael", lastname:"Scott"},
  6. {firstname:"Dwight", lastname:"Schrute"},
  7. {firstname:"Jim", lastname:"Halpert"},
  8. {firstname:"Kevin", lastname:"Malone"},
  9. {firstname:"Angela", lastname:"Martin"}
  10. ]
  11. });
  12.  
  13. var toggleIcons = function(grid, rowIndex, colIndex, firstAction) {
  14. var actions = { indexes: {show : 0, hide : 1}, acts: ['show', 'hide'] };
  15. var rec = grid.getStore().getAt(rowIndex);
  16. var col = grid.getHeaderCt().getHeaderAtIndex(colIndex);
  17. var el = grid.getCell(rec, col).child('div');
  18. var index = actions.indexes[firstAction];
  19. var a = actions.acts;
  20. el.child('img')[a[index]]().next('img')[a[1 - index]]();
  21. }
  22.  
  23. Ext.create('Ext.grid.Panel', {
  24. title: 'Action Column Demo',
  25. store: Ext.data.StoreManager.lookup('employeeStore'),
  26. columns: [
  27. {text: 'First Name', dataIndex:'firstname'},
  28. {text: 'Last Name', dataIndex:'lastname'},
  29. {
  30. xtype:'actioncolumn',
  31. width:50,
  32. items: [{
  33. icon: 'extjs/examples/shared/icons/fam/cog_edit.png', // Use a URL in the icon config
  34. tooltip: 'Edit',
  35. handler: function(grid, rowIndex, colIndex) {
  36. toggleIcons(grid, rowIndex, colIndex, 'hide');
  37. }
  38. },{
  39. icon: 'extjs/examples/restful/images/delete.png',
  40. tooltip: 'Delete',
  41. hidden: true,
  42. handler: function(grid, rowIndex, colIndex) {
  43. toggleIcons(grid, rowIndex, colIndex, 'show');
  44. }
  45. }]
  46. }
  47. ],
  48. width: 250,
  49. renderTo: Ext.getBody()
  50. });
  51.  


Это немного измененный пример из документации самого экста, куда я добавил свою функцию. Для полной визуальной корректности стоит задать для второй иконки класс iconCls, в котором для нее будет прописано что-то с visibility: hidden (именно так по умолчанию отрабатывает hide). Ну и да, чтобы не повторять аргументы в вызове toggleIcons, можно не описывать их в хендлере, делать [].slice.call(arguments, 0), добавлять в конец параметр действия и вызывать toggleIcons.apply(this, args);

@темы: ExtJS 4, JavaScript

Vi Veri Veniversum Vivus Vici
Обновив в пятницу федору с 15-й версии, я, придя на работу в понедельник, не ждал беды. Дело в том, что я разрабатываю форк mysqldiff'а (github.com/GuyFawkes/mysqldiff), и, внеся очередные изменения, решил выполнить ./perl_install.sh

На что оно ответило мне вот в такой форме:



Я попробовал все:


(ебаный downgrade не может в зависимости), но смог откатиться только до 5.14.1 с 5.14.2, поскольку более ранних перлов для 16-й федоры не существует в принципе.
Попробовал пляски с переустановкой перла, удалением и инсталлом Module::Build, но все было напрасно.

И тут, спасибо Косте, его осенило:



Команда выполнилась без ошибок.



Ну, затем в /etc/profile.d создал файлик с этой командой, установил mysql, потертый к хуям во время реинсталлов перла (сколько же всего он тянет, даже nginx удалил) и все заработало.

@темы: Fedora 16, Perl_Gthr_key_ptr, Perl

Vi Veri Veniversum Vivus Vici
Vi Veri Veniversum Vivus Vici
Неплохая заметка на эту тему: chodex.ru/tag/git-submodule/

@темы: Git, Git submodule

Vi Veri Veniversum Vivus Vici
22:21

:-(

Vi Veri Veniversum Vivus Vici
Все эти годы, что я случайно закрывал вкладки с заполненными формами/несохраненными пассажами текста/etc., я мог нажать Ctrl+Shift+T

Vi Veri Veniversum Vivus Vici
Секс с прелоадом. Нашли вот что: www.sencha.com/forum/showthread.php?149782-Tree...

Алсо, у нас не заработал "массив массивов", сделали просто return Ext.data.reader.Json.prototype.getResponseData.apply(this, arguments).root;

@темы: ExtJS 4

Vi Veri Veniversum Vivus Vici
Форк на гитхабе: github.com/GuyFawkes/mysqldiff

@темы: MySQL

Vi Veri Veniversum Vivus Vici
Vi Veri Veniversum Vivus Vici
И отличный кодер: blog.sigfpe.com/

Vi Veri Veniversum Vivus Vici
Нечто вроде такого запроса:

SELECT table_name, column_name, referenced_table_name, referenced_column_name, constraint_name FROM `information_schema`.`KEY_COLUMN_USAGE`
where table_schema='schematest' and (referenced_table_name = 'sotm_product' or table_name = 'sotm_product') and referenced_table_name is not null;

Выполняются такие запросы очень медленно:


mysql> explain SELECT table_name, column_name, referenced_table_name, referenced_column_name, constraint_name FROM `information_schema`.`KEY_COLUMN_USAGE`
where table_schema='schematest' and (referenced_table_name = 'sotm_product' or table_name = 'sotm_product') and referenced_table_name is not null;
+----+-------------+------------------+------+---------------+--------------+---------+------+------+--------------------------------------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+------------------+------+---------------+--------------+---------+------+------+--------------------------------------------------+
| 1 | SIMPLE | KEY_COLUMN_USAGE | ALL | NULL | TABLE_SCHEMA | NULL | NULL | NULL | Using where; Open_full_table; Scanned 1 database |
+----+-------------+------------------+------+---------------+--------------+---------+------+------+--------------------------------------------------+
1 row in set (0.04 sec)


@темы: MySQL

Vi Veri Veniversum Vivus Vici
SET foreign_key_checks = 0;

@темы: MySQL

Vi Veri Veniversum Vivus Vici
Возникла такая ошибка, когда создаете таблицу? Смотрим:


Как же так? Ответ в этом посте: thenoyes.com/littlenoise/?p=81

Если вкратце, то имя связи по вторичному ключу, которое вы задавали ручками, уже существует.

@темы: MySQL

Vi Veri Veniversum Vivus Vici
Пришлось пободаться - не работали. Затем в параметрах звука отключил "Internal Audio" на вкладке "Оборудование" (для этого нужно выделить и выбрать профиль - Off), а для наушников установил профиль Analog Stereo Output + Analog Mono Input

@темы: Fedora Core