Yuri Pimenov
Yuri Pimenov
Like so: ``` Traceback (most recent call last): File "discover.py", line 18, in asyncio.run(asyncio.gather(read_and_print(aioserial_instance), aioserial_instance.write_async(b'Hello, World!\n'))) File "/Users/up/anaconda3/envs/winch/lib/python3.8/asyncio/runners.py", line 37, in run raise ValueError("a coroutine was expected, got {!r}".format(main)) ValueError:...
Код иннициализации: ``` ruby translations = {} I18n.backend = I18n::Backend::Chain.new(I18n::Backend::KeyValue.new(translations), I18n.backend) if Rails.configuration.appa[:i18n].present? then Rails.configuration.appa[:i18n].each do |locale, h| I18n.backend.store_translations(locale, h, :escape => false) end end ``` Вываливается здесь: () Users/yuri/.rvm/gems/ruby-2.1.1/bundler/gems/russian-6da1fe45cbff/lib/russian/action_view_ext/helpers/date_helper.rb...
``` class PostingAdmin(CursorPaginatorAdmin): cursor_ordering_field = '-posting_id' list_display = ( 'posting_id', ... ) ``` ``` INSTALLED_APPS = [ 'grappelli', 'backend', 'auditlog', 'etc', 'smart_selects', 'django_extensions', 'django.contrib.admin', 'admin_cursor_paginator', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles',...
Hello, For my application I want to have a way to prolong JWT token lifetime after each request. I'm aware about JWTRefreshTokenBundle but it requires a separate database model while...
Hi, I'm using decoupled Entity and security user like it's described here https://stovepipe.systems/post/decoupling-your-security-user The reason for that is that I want to keep domain separated following DDD principles. Now my...
My Post class has lastComment association: ``` /** * @var Comment * * @ORM\OneToOne(targetEntity="Comment") * @ORM\JoinColumn(name="post_comment_id", referencedColumnName="comment_id", nullable=true) */ private $lastComment; ``` I'm trying to sort posts by ps.lastComment with...
**Describe the bug** [2019-03-06 15:55:18] production.ERROR: Creating default object from empty value {"exception":"[object] (ErrorException(code: 0): Creating default object from empty value at /public_html/vendor/pragmarx/tracker/src/Data/Repositories/Session.php:101) **To Reproduce** Steps to reproduce the behavior:...
In fetch.js Handle 401, 403 and throw an Authorization error. Handle 204 because methods like DELETE do not provide any JSON output (Unexpected end of JSON input thrown). I'm using...