Self-introduction: (Serge Matveenko)

2020-09-18 Thread Serge Matveenko
Hello, All! I would like to join the QA team. My main interests are in validating releases and testing around Fedora Silverblue along with anything related to containerization. I'm really interested in testing upcoming Parental Control features as well. About me:) I'm 39. I'm located in

[issue40616] Add `asyncio.BufferQueue`

2020-09-14 Thread Serge Matveenko
Change by Serge Matveenko : -- stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue40616> ___ ___ Python-bugs-list

[issue33953] The DEFAULT_ENTROPY variable used to store the current default random bytes value should be documented for `secrets` module

2020-09-14 Thread Serge Matveenko
Change by Serge Matveenko : -- stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue33953> ___ ___ Python-bugs-list

[issue38701] datetime.timedelta string representation is ambiguous

2020-09-14 Thread Serge Matveenko
Change by Serge Matveenko : -- stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue38701> ___ ___ Python-bugs-list

[issue33953] The DEFAULT_ENTROPY variable used to store the current default random bytes value should be documented for `secrets` module

2020-05-14 Thread Serge Matveenko
Change by Serge Matveenko : -- versions: +Python 3.6 ___ Python tracker <https://bugs.python.org/issue33953> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33953] The DEFAULT_ENTROPY variable used to store the current default random bytes value should be documented for `secrets` module

2020-05-14 Thread Serge Matveenko
Change by Serge Matveenko : -- versions: +Python 3.9 ___ Python tracker <https://bugs.python.org/issue33953> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38701] datetime.timedelta string representation is ambiguous

2020-05-14 Thread Serge Matveenko
Serge Matveenko added the comment: I would be happy to submit a PR if there would be an agreement on the format. -- ___ Python tracker <https://bugs.python.org/issue38

[issue40616] Add `asyncio.BufferQueue`

2020-05-13 Thread Serge Matveenko
New submission from Serge Matveenko : It looks handy to be able to leverage `collections.deque` ability to be sized it `asyncio.Queue`. This could provide the ability to implement backpressure in the queue or just use it as a buffer in messaging systems. The implementation provided

[issue38701] datetime.timedelta string representation is ambiguous

2019-11-05 Thread Serge Matveenko
New submission from Serge Matveenko : Negative `timedelta` string representation is ambiguous. ``` >>> from datetime import datetime, timedelta >>> d2 = datetime.now() >>> d1 = d2 - timedelta(days=42, seconds=5) >>> str(d2 - d1) '42 days, 0:00:05' >>

[Python-ideas] Re: Comparison operator support (>= and <=) for type

2019-06-14 Thread Serge Matveenko
On Fri, Jun 14, 2019 at 12:39 PM Steven D'Aprano wrote: > and no simple way to talk about *strict* subclass and superclass > relationships without a verbose compound test: > > assert issubclass(parent, child) and child != parent Well, why not go further then and make the following thing to be a

Re: [Python-ideas] A plea for people to please remember to assume good faith

2019-05-16 Thread Serge Matveenko
On Thu, May 16, 2019 at 10:41 AM Steven D'Aprano wrote: > - try to assume the author of emails is writing in good faith I have a piece of advice I often give to teams. When you catch yourself in a conversation on a thought like "how can I convince an opponent that I'm right" try first to think

Re: [Python-ideas] shutil.symlink to allow non-race replacement of existing link targets

2019-05-14 Thread Serge Matveenko
On Tue, May 14, 2019 at 4:34 AM Steven D'Aprano wrote: > You "see ... no obvious difference" between two functions that live in > completely different modules? > > > > The bottom line is that it is completely normal and not uncommon for > functions to be distinguished by the namespace they are

Re: [Python-ideas] shutil.symlink to allow non-race replacement of existing link targets

2019-05-14 Thread Serge Matveenko
On Tue, May 14, 2019 at 6:19 AM Steven D'Aprano wrote: > The problem is a lack of a symlink function that safely overwrites an > existing file or symlink. We're just bike-shedding over its spelling > and where it lives: > > - modify os.symlink and give it a "force" parameter > - add a new

Re: [Python-ideas] shutil.symlink to allow non-race replacement of existing link targets

2019-05-13 Thread Serge Matveenko
On Mon, May 13, 2019 at 9:24 PM Anders Hovmöller wrote: > > On 13 May 2019, at 19:38, Steven D'Aprano wrote: > >> On Mon, May 13, 2019 at 12:31:08PM +0200, Anders Hovmöller wrote: > >> An optional "overwrite_if_exists=False" flag seems much nicer. > > > > Aside from the argument name being too

Re: [Python-ideas] Path conversion for f-strings

2019-05-13 Thread Serge Matveenko
On Mon, May 13, 2019 at 4:44 AM Batuhan Taskaya wrote: > > Like repr and string the file system path is used alot and something like > path!p might be handy. > > >>> class MyClass: > ... def __fspath__(self): > ... return "/home/batuhan" > ... > >>> assert f"{mc!p}" ==

Re: [Python-ideas] A proper way to bring real interfaces to Python

2019-05-08 Thread Serge Matveenko
On Wed, May 8, 2019 at 12:37 PM Chris Angelico wrote: > When you come to write it up, I hope you can go into some detail about > what you mean by "a third main object". Currently, the hierarchy is > reentrant at the apex ("object" is an instance of "type", and "type" > is a subclass of "object");

Re: [Python-ideas] A proper way to bring real interfaces to Python

2019-05-08 Thread Serge Matveenko
On Tue, May 7, 2019 at 2:45 AM Steven D'Aprano wrote: > > On Sun, May 05, 2019 at 04:23:58AM +0300, Serge Matveenko wrote: > > > So, I would like to propose adding a third main object called > > `interface` in addition to `object` and `type` and to use it to define

Re: [Python-ideas] Running average and stdev in the statistics module?

2019-05-06 Thread Serge Matveenko
On Sun, May 5, 2019 at 1:08 PM Luca Baldini wrote: > > Hi here, > I wonder if the idea of adding to the statistics module a class to > calculate the running statistics (average and standard deviation) of a > generic input data stream has ever come up in the past. > > The basic idea is to do the

Re: [Python-ideas] More alternate constructors for builtin type

2019-05-06 Thread Serge Matveenko
On Mon, May 6, 2019 at 7:48 PM Antoine Pitrou wrote: > > On Mon, 6 May 2019 19:39:39 +0300 > Serge Matveenko wrote: > > With all respect, I disagree. There are ways to evolve Python such as > > deprecation policies which proven to be effective. There are ways to > &g

Re: [Python-ideas] More alternate constructors for builtin type

2019-05-06 Thread Serge Matveenko
On Mon, May 6, 2019 at 7:29 PM Guido van Rossum wrote: > > On Mon, May 6, 2019 at 11:14 AM Serhiy Storchaka wrote: >> I do not propose to change the current behavior. I propose to add new >> named constructors. In most cases default constructors can be used, but >> in cases when we use type

Re: [Python-ideas] A proper way to bring real interfaces to Python

2019-05-06 Thread Serge Matveenko
On Mon, May 6, 2019 at 5:33 PM Ivan Levkivskyi wrote: > > On Mon, 6 May 2019 at 03:23, Serge Matveenko wrote: >> >> On Sun, May 5, 2019 at 8:23 PM Stephen J. Turnbull >> wrote: >> > >> > Serge Matveenko writes: >> > >> > >

Re: [Python-ideas] A proper way to bring real interfaces to Python

2019-05-04 Thread Serge Matveenko
On Sun, May 5, 2019 at 6:42 AM Steven D'Aprano wrote: > It isn't that I *oppose* moving the checks to class-creation time > instead of instantiation time, but I'd like to hear more about why it is > a problem. This doesn't look like moving checks from one place to another for me. It is basically

Re: [Python-ideas] A proper way to bring real interfaces to Python

2019-05-04 Thread Serge Matveenko
> Another one is that ABCs aren't interfaces at all as they all to have > actual implementations being encapsulated in them. This causes > misunderstandings of the code and strange behaviors like in > `collection.abc` module for instance where there is a lot of > implementation and some methods

Re: [Python-ideas] A proper way to bring real interfaces to Python

2019-05-04 Thread Serge Matveenko
On Sun, May 5, 2019 at 6:42 AM Steven D'Aprano wrote: > > On Sun, May 05, 2019 at 04:23:58AM +0300, Serge Matveenko wrote: > > So, I would like to propose adding a third main object called > > `interface` in addition to `object` and `type` and to use it to define >

Re: [Python-ideas] A proper way to bring real interfaces to Python

2019-05-04 Thread Serge Matveenko
On Sun, May 5, 2019 at 6:40 AM Ryan Gonzalez wrote: > > Worth maybe noting that this could play interestingly with PEP 484? You're right. It already plays along with type hints in different ways. At the moment it requires an exact match of implementation method signatures with the interface

[Python-ideas] A proper way to bring real interfaces to Python

2019-05-04 Thread Serge Matveenko
Hi, all! I believe, almost everybody is familiar with the `abc` package. The problem is that the ABC class is not a separate thing from `object`. So, using ABCs often results in complicated inheritance designs and even in the infamous metaclass conflict. Another problem is that ABC performs

[issue33953] The DEFAULT_ENTROPY variable used to store the current default random bytes value should be documented for `secrets` module

2018-06-25 Thread Serge Matveenko
New submission from Serge Matveenko : There is the corresponding section on the topic here https://github.com/python/cpython/blob/3.6/Doc/library/secrets.rst#how-many-bytes-should-tokens-use The current value of 32 bytes is mentioned there correctly. Unfortunately, there is no way to know

Re: [EuroPython] EuroPython organizers contact

2017-03-04 Thread Serge Matveenko
Hello Marc-Andre! Thank you for the answer (both of them). Definitely you're busy at the moment:) I know how these things behave. Thanks and keep up the good work! сб, 4 мар. 2017 г., 13:50 M.-A. Lemburg <m...@europython.eu>: > On 04.03.2017 09:50, Serge Matveenko wrote: > >

[Bug-tar] exclude-vcs-ignores bug

2016-12-07 Thread Serge Matveenko
s expected for `--exclude-vcs-ignores` to mimic VCS' ignore logic. Thank you and keep up the good work! -- Serge Matveenko mailto: se...@matveenko.ru github: https://github.com/lig/ aboutme: https://about.me/lig1

[issue25315] OrderedDict mangled private attribute is inaccessible

2015-10-07 Thread Serge Matveenko
Serge Matveenko added the comment: Sorry for reopening. I completely agree with the point that is it not necessary for Python and C implementations to duplicate each other. But then the Python OrderedDict implementation should be dropped from the library source. The code that is there now

[issue25315] OrderedDict mangled private attribute is inaccessible

2015-10-05 Thread Serge Matveenko
Serge Matveenko added the comment: Ok, then the OrderedDict is useless for any advanced hacking like altering the order in which __setitem__ stores items. It is just useless Python code and so much appliances missed for this class:( Thank you all for these completely helpful answers

[issue25315] OrderedDict mangled private attribute is inaccessible

2015-10-05 Thread Serge Matveenko
Serge Matveenko added the comment: Zach, ok I got your point. But there is Python implementation in the library still which does not conform the one done in C. Such a behavior is tremendously confusing. If there is both Python and C implementation in the library they must conform each other

[issue25315] OrderedDict mangled private attribute is inaccessible

2015-10-05 Thread Serge Matveenko
Serge Matveenko added the comment: If Python source does conform the one in C, it will be completely fine and understandable to have such a change and to rely on it in using version checks or whatever. -- ___ Python tracker <rep...@bugs.python.

[issue25315] OrderedDict mangled private attribute is inaccessible

2015-10-04 Thread Serge Matveenko (lig)
New submission from Serge Matveenko (lig): Consider this code in Python 3.5.0: Python 3.5.0 (default, Sep 26 2015, 14:59:25) [GCC 5.1.1 20150618 (Red Hat 5.1.1-4)] on linux Type "help", "copyright", "credits" or "license" for more information. >>&

Re: Re[2]: skype в ubuntu

2014-11-26 Thread Serge Matveenko
А у скайпа тем временем рамки окна так и не появилось, как я понимаю... -- Serge Matveenko 26 нояб. 2014 г. 19:34 пользователь Dmitry Agafonov agafonovdmi...@gmail.com написал: Может вы еще не знаете про 2 буфера обмена и вставку средней кнопкой мышки?/irony PS: Это всё настолько древние

Re: [git-users] Undoable reset hard

2014-03-16 Thread Serge Matveenko
to the Google Groups Git for human beings group. To unsubscribe from this group and stop receiving emails from it, send an email to git-users+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout. -- Serge Matveenko mailto: se...@matveenko.ru github: http

Re: Смена HDD на SSD на ноутбуке - перенос системы

2014-02-13 Thread Serge Matveenko
сделано до нас. Контейнер - очень правильно. Я в свое время именно для этой задачи купил за углом что-то типа http://www.ulmart.ru/goods/179736 А дальше берем live флэшку с http://clonezilla.org/ и тыкаем в менюшки;) -- Serge Matveenko mailto: se...@matveenko.ru github: http://lnkfy.com/1

Re: Ubuntu 13.04 - *buntu 13.10

2013-10-04 Thread Serge Matveenko
2013/10/4 Alex Kahirin kahirin1...@gmail.com: Ничего себе.. А еще можно сделать yum --help вы представляете! Откроете много нового. Я же для школоты писал. Вы серьезно думаете, что я найду что-то новое в yum --help после прочтения man yum?:) -- Serge Matveenko mailto: se...@matveenko.ru

Re: OWA под Linux

2013-06-24 Thread Serge Matveenko
подписей есть. Подтверждаю. Evolution-EWS великолепен. Постоянно пользуюсь рабочей почтой через него. Использует XML-интерфейс OWA. Работает гораздо бодрее и удобнее, чем их вебинтерфейс. -- Serge Matveenko mailto: se...@matveenko.ru github: http://lnkfy.com/1 linkedin: http://lnkfy.com/S

[Bug 1175534] [NEW] package python3.3-minimal 3.3.1-1ubuntu5 failed to install/upgrade: подпроцесс установлен сценарий post-installation возвратил код ошибки 1

2013-05-02 Thread Serge Matveenko
Public bug reported: Files /usr/lib/python3.3/sre_compile.py /usr/lib/python3.3/sre_constants.py /usr/lib/python3.3/sre_parse.py all three have this line from _sre import MAXREPEAT but it fails with ImportError somehow on upgrading from 12.10 to 13.04 workaround is to remove

Re: [git-users] Re: License and costs

2013-03-06 Thread Serge Matveenko
successfully used a lot. Let git be one of such a tool for you. -- Serge Matveenko mailto: se...@matveenko.ru github: http://lnkfy.com/1 linkedin: http://lnkfy.com/S -- You received this message because you are subscribed to the Google Groups Git for human beings group. To unsubscribe from

Re: [git-users] how to create a new empty branch

2013-03-01 Thread Serge Matveenko
right after creating the orphan branch by running git rm -rf . from the top level of the working tree. Afterwards you will be ready to prepare your new files, repopulating the working tree, by copying them from elsewhere, extracting a tarball, etc. -- Serge Matveenko mailto: se...@matveenko.ru

Re: [git-users] e-git

2013-01-25 Thread Serge Matveenko
://wiki.eclipse.org/EGit/User_Guide#Possible_merge_results -- Serge Matveenko mailto: se...@matveenko.ru github: http://lnkfy.com/1 linkedin: http://lnkfy.com/S

Re: [git-users] Re: [Ubuntu 12.04 LTS] [git version 1.7.9.5] how to update to 1.8.1.1?

2013-01-21 Thread Serge Matveenko
(1.8.0.3 for now) and https://launchpad.net/~git-core/+archive/candidate for rc (1.8.1 already) -- Serge Matveenko mailto: se...@matveenko.ru github: http://lnkfy.com/1 linkedin: http://lnkfy.com/S --

Re: [git-users] Re: securing data in a non-local repository

2012-12-12 Thread Serge Matveenko
server. You may be interested in using gitolite https://github.com/sitaramc/gitolite to host your repositories in house. The setup is easy and you will get many features that github has. -- Serge Matveenko mailto: se...@matveenko.ru github: http://lnkfy.com/1 linkedin: http://lnkfy.com/S --

Re: Чем порезать .flac на отдельные треки

2012-11-08 Thread Serge Matveenko
/или Ex Falso. А еще Thunar умеет переименовывать звуковые файлы по ID3 тегам из них. Я режу своим скриптом обычно, основанным на shnsplit, а потом все прогоняю через Picard, чтобы получить нормальные теги из MusicBrainz. -- Serge Matveenko mailto: se...@matveenko.ru github: http://lnkfy.com/1

Re: от unity кто-нить в восторге?

2012-10-31 Thread Serge Matveenko
приходит понимание кто, что и сколько жрет. -- Serge Matveenko mailto: se...@matveenko.ru github: http://lnkfy.com/1 linkedin: http://lnkfy.com/S -- ubuntu-ru mailing list ubuntu-ru@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru

Re: от unity кто-нить в восторге?

2012-10-19 Thread Serge Matveenko
2012/10/19 Алексей Кочевский kochev...@email.ua: 3. Установить Мате, которая будет как Гном 2, но в которой не будет хватать чего-то (даже оформление его будет тёплое, ламповое уныло-серое). Установить его можно по инструкции приведённой ниже: Есть еще Cinnamon. Оно не унылое. -- Serge

Re: от unity кто-нить в восторге?

2012-10-12 Thread Serge Matveenko
2012/10/12 Dmitry Agafonov agafonovdmi...@gmail.com: Мышь прекрасно работала и в консоли :) И великолепно работает до сих пор. У меня на всех машинах стоит `gpm`. Не знаю вообще как без него жить в консоли. Копипаст средней кнопкой решает. -- Serge Matveenko mailto: se...@matveenko.ru github

Re: от unity кто-нить в восторге?

2012-10-11 Thread Serge Matveenko
2012/10/12 Александр Барканов samson...@gmail.com: от последних разработок я не в восторге Будьте конкретнее, пожалуйста. А то так получается, что вот от всего этого вы не в восторге http://sourceforge.net/directory/os:linux/freshness:recently-updated/ -- Serge Matveenko mailto: se

Re: от unity кто-нить в восторге?

2012-10-09 Thread Serge Matveenko
. Если не знаете английского, напишите в эту рассылку текст бага, сообщество обязательно поможет вам перевести его на английский и потом объяснить ответы разработчиков. Тогда, возможно, к вам прислушаются, если ваша критика будет конструктивной. -- Serge Matveenko mailto: se...@matveenko.ru github

Re: от unity кто-нить в восторге?

2012-10-09 Thread Serge Matveenko
убунты. -- Serge Matveenko mailto: se...@matveenko.ru github: http://lnkfy.com/1 linkedin: http://lnkfy.com/S -- ubuntu-ru mailing list ubuntu-ru@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru

Re: Дайджест списка рассылки ubuntu-ru; том 97, выпуск 4

2012-10-08 Thread Serge Matveenko
2012/10/8 Sasha a...@ukr.net: Отправлено с устройства Samsung аминь -- Serge Matveenko mailto: se...@matveenko.ru github: http://lnkfy.com/1 linkedin: http://lnkfy.com/S -- ubuntu-ru mailing list ubuntu-ru@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru

Re: от unity кто-нить в восторге?

2012-10-07 Thread Serge Matveenko
просто возникло желание устроить поминки по трупу, да? -- Serge Matveenko mailto: se...@matveenko.ru github: http://lnkfy.com/1 linkedin: http://lnkfy.com/S -- ubuntu-ru mailing list ubuntu-ru@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru

Помогите переводчикам!

2012-10-05 Thread Serge Matveenko
Помогите переводчикам! Они на перепутье. Как вам лучше видится перевод More Suggestions при выводе дополнительных поисковых запросов, в том числе из онлайн? Не привязывайтесь к различным линзам - нужен единый подход к ним. Голосование: http://vk.com/wall-33241_226238 -- Serge Matveenko mailto

Re: Samsung scx 340x

2012-09-19 Thread Serge Matveenko
трахать мозги ни себе, ни людям. -- Serge Matveenko se...@matveenko.ru http://www.ohloh.net/accounts/lig http://ru.linkedin.com/in/sergematveenko -- ubuntu-ru mailing list ubuntu-ru@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru

Re: [git-users] Include empty folders

2012-09-10 Thread Serge Matveenko
maybe in a future version ? You may put .gitignore in such a directory containing: * !.gitignore It will add .gitignore and will never add anything under this dir. -- Serge Matveenko se...@matveenko.ru http://www.ohloh.net/accounts/lig http://ru.linkedin.com/in/sergematveenko -- You received

Re: Ubuntu загружается через раз

2012-08-24 Thread Serge Matveenko
2012/8/23 -=Devil_InSide=- devil_ins...@mail.ru: линуксы требовательней к памяти. и там, где виндус всего лишь тормозит, линукс бывает работает плохо. ну, это - по наблюдениям. удалите KDE:) -- Serge Matveenko se...@matveenko.ru http://www.ohloh.net/accounts/lig http://ru.linkedin.com

Re: не работает двойная загрузка Win8/Ubuntu 12.04

2012-08-15 Thread Serge Matveenko
2012/8/15 Oleg V. Mikheev st.d...@gmail.com: Хотел поменять диск для медиафайлов на более емкий. Заодно решил переустановить обе ОС. Отдайте один диск под систему Ubuntu/W8/grub, а остальные подключайте в ubuntu с помощью lvm, если винду можно этих дисков лишить. -- Serge Matveenko se

Re: Quanta+

2012-08-09 Thread Serge Matveenko
://alien.slackbook.org/blog/kde-4-8-0-arrives/ With KDE 4.7.2, I added Quanta Plus, which disappeared from KDE4 because that migrated from Qt3 to Qt4. It is now being worked on again, but no longer as a standalone application - instead it is available as a plugin to the Kdevelop Platform. -- Serge Matveenko

Re: ufw+KTorrent

2012-08-01 Thread Serge Matveenko
2012/8/1 -=Devil_InSide=- devil_ins...@mail.ru: для торрента нужен один входящий порт открытый. его выбрать в торренте и открыть в файрволле. и пробросить на роутере -- Serge Matveenko se...@matveenko.ru http://www.ohloh.net/accounts/lig http://ru.linkedin.com/in/sergematveenko -- ubuntu-ru

Re: ufw+KTorrent

2012-08-01 Thread Serge Matveenko
, позволяют вам к ним подключиться и тогда скачивают с вас. Т.е. ваш KTorrent сам подключается к нуждающимся, узнавая о них у трекера. -- Serge Matveenko se...@matveenko.ru http://www.ohloh.net/accounts/lig http://ru.linkedin.com/in/sergematveenko -- ubuntu-ru mailing list ubuntu-ru@lists.ubuntu.com https

Re: [git-users] dropbox git

2012-07-30 Thread Serge Matveenko
that will also work as expected. Thus the only safe that is easy enough is to never use Dropbox to store git repositories. Use github, your own hosted repo (e.g. use gitolite to admin it), or just use bare repo stored somewhere on remotely accessed machine via regular ssh. -- Serge Matveenko se

Re: [git-users] dropbox git

2012-07-30 Thread Serge Matveenko
practice to include your username in the name of such temporary branch, e.g. owen-tmp, if you are not the only person who uses that repo. But it completely depends on the your branch naming convention. -- Serge Matveenko se...@matveenko.ru http://www.ohloh.net/accounts/lig http://ru.linkedin.com

Re: aptitude: updates

2012-07-25 Thread Serge Matveenko
2012/7/24 Aleck Müller ale...@lavabit.com: On Вторник 24 июля 2012 13:01:29 Serge Matveenko wrote: видимо вы решили использовать основной сервер и для обновлений безопасности, чем ввели aptitude в заблуждение. попробуйте заменить текст http://archive.ubuntu.com/ubuntu precise-security на

Re: aptitude: updates

2012-07-24 Thread Serge Matveenko
://archive.ubuntu.com/ubuntu precise-security на http://security.ubuntu.com/ubuntu precise-security -- Serge Matveenko se...@matveenko.ru http://www.ohloh.net/accounts/lig http://ru.linkedin.com/in/sergematveenko -- ubuntu-ru mailing list ubuntu-ru@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu

Re: aptitude: updates

2012-07-23 Thread Serge Matveenko
ru.archive.ubuntu.com precise-security main restricted universe multiverse, то aptitude, скорее всего, не поймет что является обновлением безопасности, а что нет. -- Serge Matveenko se...@matveenko.ru http://www.ohloh.net/accounts/lig http://ru.linkedin.com/in/sergematveenko -- ubuntu-ru mailing

Re: [git-users] New user gets lost driving the Git Bash

2012-07-23 Thread Serge Matveenko
-- Serge Matveenko se...@matveenko.ru http://www.ohloh.net/accounts/lig http://ru.linkedin.com/in/sergematveenko -- You received this message because you are subscribed to the Google Groups Git for human beings group. To post to this group, send email to git-users@googlegroups.com

Re: [git-users] Re: git checkout . overwrites all my changes

2012-07-12 Thread Serge Matveenko
On Thu, Jul 12, 2012 at 6:32 PM, Thomas Ferris Nicolaisen tfn...@gmail.com wrote: In essence, checkout is the equivalent of what some other systems call revert, and you have to get used to treating it with respect (as with any git command). IMHO, it looks more like switch usually. -- Serge

Re: Про ДропБокс

2012-06-29 Thread Serge Matveenko
выполнены, главное чтобы dropbox не был запущен в этот момент) 5. установить дропбокс с офсайта А какой у вас Mint? Какая архитектура? Вообще, у меня на Mint Liza и на Ubuntu Precise (разные версии, ага) сейчас везде работает из коробки и нормально обновляется. -- Serge Matveenko se

[Bug 1019253] [NEW] Default lighttpd.conf index-file.names value error

2012-06-29 Thread Serge Matveenko
Public bug reported: Default lighttpd.conf file contains typo error in the index-file.name value causing default index file not to display. It is now index-file.names= ( index.php, index.html, index.htm, default.htm,

[Bug 1019253] Re: Default lighttpd.conf index-file.names value error

2012-06-29 Thread Serge Matveenko
Also I've noticed that this is true for Debian Squeeze too. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1019253 Title: Default lighttpd.conf index-file.names value error To manage notifications

Предлагаю задачи в моих открытых проектах для желающих

2012-06-28 Thread Serge Matveenko
уже пойдет причесывание кода и отрезание лишнего. https://github.com/lig/paste3 -- Serge Matveenko se...@matveenko.ru http://www.ohloh.net/accounts/lig http://ru.linkedin.com/in/sergematveenko -- ubuntu-ru mailing list ubuntu-ru@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu

Re: Учебный курс по Linux-серверам

2012-06-27 Thread Serge Matveenko
действительно хотите улучшить ваш курс, выложите его исходники на вики, в git или, хотя бы, в гуглдокс, под лицензией Creative Commons Attribution-ShareAlike. -- Serge Matveenko se...@matveenko.ru http://www.ohloh.net/accounts/lig http://ru.linkedin.com/in/sergematveenko -- ubuntu-ru mailing list

Re: [git-users] HEAD is not pointing to a branch

2012-06-27 Thread Serge Matveenko
into it. -- Serge Matveenko se...@matveenko.ru http://www.ohloh.net/accounts/lig http://ru.linkedin.com/in/sergematveenko -- You received this message because you are subscribed to the Google Groups Git for human beings group. To post to this group, send email to git-users@googlegroups.com

Re: [git-users] Question about commit size

2012-06-20 Thread Serge Matveenko
On Wed, Jun 20, 2012 at 11:43 AM, paymaster baekseon...@gmail.com wrote: How can I know commit size? What is size? A number of lines affected? Raw patch size in bytes? Compressed patch size in bytes? Mount of data transferred via push maybe? -- Serge Matveenko se...@matveenko.ru http

Re: backup для сервера

2012-06-07 Thread Serge Matveenko
у кого что-то чем он уже пользуется. и чего там искать? https://help.ubuntu.com/community/BackupYourSystem#Backup_Utilities -- Serge Matveenko se...@matveenko.ru http://www.ohloh.net/accounts/lig http://ru.linkedin.com/in/sergematveenko -- ubuntu-ru mailing list ubuntu-ru@lists.ubuntu.com

Re: Шрифты в Skype. xubuntu 12.04

2012-06-04 Thread Serge Matveenko
2012/6/4 alve a...@ukrpost.net: Попробовал qtconfig-qt3, но результата нет. Остаётся ощущение, что в системе не хватает каких-то пакетов.  Будем искать... А как skype ставили? по идеи, skype-static эти настройки могут не помогать -- Serge Matveenko se...@matveenko.ru http://www.ohloh.net

Re: [git-users] Using Git in a web development environment (specifically with Coda 2 and a web server)

2012-05-28 Thread Serge Matveenko
/ There are infinite number of the possible git workflow schemes you are free to implement. -- Serge Matveenko se...@matveenko.ru http://www.ohloh.net/accounts/lig http://ru.linkedin.com/in/sergematveenko -- You received this message because you are subscribed to the Google Groups Git for human beings group

Re: Русская раскладка в гостевом сеансе

2012-05-25 Thread Serge Matveenko
2012/5/25 Dmitry Agafonov agafonovdmi...@gmail.com: Языки работают, раскладки нет. Вспоминаю тред в плюсике, где ты меня уверял, что оно работает, а я утверждал, что этого, во первых, не может быть, а, во вторых, оно не работает;) -- Serge Matveenko se...@matveenko.ru http://www.ohloh.net

Re: Инициализация мониторов

2012-05-23 Thread Serge Matveenko
гибридный режим сна, т.е. сразу и в память и на диск. Работает изумительно. Если питание не вылкючали, то просыпается мгновенно, если выключали, то немного дольше (ssd рулит). http://superuser.com/a/427593/128127 -- Serge Matveenko se...@matveenko.ru http://www.ohloh.net/accounts/lig http

Re: Инициализация мониторов

2012-05-23 Thread Serge Matveenko
монитором sudo service gdm stop # возможно у вас lightdm, тогда его вместо gdm sudo X -configure Оно напишет вам xorg.conf, его надо скопировать в /etc/X11/xorg.conf Должно после этого использовать сохраненные настройки и не определять монитор автоматом. -- Serge Matveenko se

Re: [git-users] git pull asks for commit comment

2012-05-22 Thread Serge Matveenko
GIT_MERGE_AUTOEDIT environment variable to no. Consult http://git-scm.com/docs/git-pull and http://git-scm.com/docs/git-merge P.S.: It is better to do write some messages on merging though. -- Serge Matveenko se...@matveenko.ru http://www.ohloh.net/accounts/lig http://ru.linkedin.com/in/sergematveenko

Re: PS определил как ноубук

2012-05-11 Thread Serge Matveenko
2012/5/11 Alex Emergy alex.eme...@gmail.com: PS: телепаты? PlayStation ?:) -- Serge Matveenko se...@matveenko.ru http://www.ohloh.net/accounts/lig http://ru.linkedin.com/in/sergematveenko -- ubuntu-ru mailing list ubuntu-ru@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu

Re: 12.04 distupgrade: мыльный хинтинг кириллических глифов в приложениях qt в среде Gnome

2012-05-10 Thread Serge Matveenko
2012/5/4 Oleg A. Anisimov yoda.jedy.kni...@gmail.com Смешно то, что в Скайпе у меня нет проблем. А мыло у меня в Кутиме. Отдельных настроек для него в конфиге нет. Опять же -- только кириллические глифы мылят. А вы его откуда ставили? Он случайно ни со своей статической qt собран? -- Serge

[Bug 996174] [NEW] Unable to use USB devices

2012-05-07 Thread Serge Matveenko
Public bug reported: After some time of using laptop it starts to report to logs connect- debounce failed for every USB port. All devices are not functional. Rebooting does not help. Linux 3.2.0-24-generic-pae #37-Ubuntu SMP i686 i686 i386 GNU/Linux Clean install two days ago fully upgraded

[Bug 996174] AcpiTables.txt

2012-05-07 Thread Serge Matveenko
apport information ** Attachment added: AcpiTables.txt https://bugs.launchpad.net/bugs/996174/+attachment/3135731/+files/AcpiTables.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/996174

[Bug 996174] AplayDevices.txt

2012-05-07 Thread Serge Matveenko
apport information ** Attachment added: AplayDevices.txt https://bugs.launchpad.net/bugs/996174/+attachment/3135733/+files/AplayDevices.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/996174

[Bug 996174] AlsaDevices.txt

2012-05-07 Thread Serge Matveenko
apport information ** Attachment added: AlsaDevices.txt https://bugs.launchpad.net/bugs/996174/+attachment/3135732/+files/AlsaDevices.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/996174

[Bug 996174] BootDmesg.txt

2012-05-07 Thread Serge Matveenko
apport information ** Attachment added: BootDmesg.txt https://bugs.launchpad.net/bugs/996174/+attachment/3135734/+files/BootDmesg.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/996174 Title:

[Bug 996174] Card0.Amixer.values.txt

2012-05-07 Thread Serge Matveenko
apport information ** Attachment added: Card0.Amixer.values.txt https://bugs.launchpad.net/bugs/996174/+attachment/3135735/+files/Card0.Amixer.values.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 996174] Card0.Codecs.codec.0.txt

2012-05-07 Thread Serge Matveenko
apport information ** Attachment added: Card0.Codecs.codec.0.txt https://bugs.launchpad.net/bugs/996174/+attachment/3135736/+files/Card0.Codecs.codec.0.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 996174] Card0.Codecs.codec.1.txt

2012-05-07 Thread Serge Matveenko
apport information ** Attachment added: Card0.Codecs.codec.1.txt https://bugs.launchpad.net/bugs/996174/+attachment/3135737/+files/Card0.Codecs.codec.1.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 996174] Card0.Codecs.codec.2.txt

2012-05-07 Thread Serge Matveenko
apport information ** Attachment added: Card0.Codecs.codec.2.txt https://bugs.launchpad.net/bugs/996174/+attachment/3135738/+files/Card0.Codecs.codec.2.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 996174] CurrentDmesg.txt

2012-05-07 Thread Serge Matveenko
apport information ** Attachment added: CurrentDmesg.txt https://bugs.launchpad.net/bugs/996174/+attachment/3135739/+files/CurrentDmesg.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/996174

[Bug 996174] IwConfig.txt

2012-05-07 Thread Serge Matveenko
apport information ** Attachment added: IwConfig.txt https://bugs.launchpad.net/bugs/996174/+attachment/3135740/+files/IwConfig.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/996174 Title:

[Bug 996174] Lspci.txt

2012-05-07 Thread Serge Matveenko
apport information ** Attachment added: Lspci.txt https://bugs.launchpad.net/bugs/996174/+attachment/3135741/+files/Lspci.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/996174 Title: Unable

[Bug 996174] Lsusb.txt

2012-05-07 Thread Serge Matveenko
apport information ** Attachment added: Lsusb.txt https://bugs.launchpad.net/bugs/996174/+attachment/3135742/+files/Lsusb.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/996174 Title: Unable

[Bug 996174] PciMultimedia.txt

2012-05-07 Thread Serge Matveenko
apport information ** Attachment added: PciMultimedia.txt https://bugs.launchpad.net/bugs/996174/+attachment/3135743/+files/PciMultimedia.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/996174

[Bug 996174] ProcCpuinfo.txt

2012-05-07 Thread Serge Matveenko
apport information ** Attachment added: ProcCpuinfo.txt https://bugs.launchpad.net/bugs/996174/+attachment/3135744/+files/ProcCpuinfo.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/996174

  1   2   3   4   5   6   7   8   9   10   >