Skip to content

Instantly share code, notes, and snippets.

View sandarkin's full-sized avatar

Roman Sandarkin sandarkin

View GitHub Profile
@sandarkin
sandarkin / xiv.css
Created September 15, 2025 01:20
XIV assets
li:has(svg[class*=fa-bahai]) {
display: none !important;
}
This file has been truncated, but you can view the full file.
<?xml version="1.0" encoding="utf-8"?><!DOCTYPE yml_catalog SYSTEM "shops.dtd"><yml_catalog date="2024-08-28T10:23:09+03:00"><shop><name>Лазурит</name><company>ТД "Лазурит"</company><url>https://lazurit.com</url><platform>BSM/Yandex/Market</platform><version>2.3.4</version><currencies><currency id="RUR" rate="1"/></currencies><categories><category id="852">Детская мебель</category><category id="854">Мебель для спальни</category><category id="855" parentId="854">Комплекты для спальни</category><category id="635">Кровати и матрасы</category><category id="648" parentId="635">Кровати</category><category id="651" parentId="635">Односпальные кровати</category><category id="653" parentId="635">Матрасы</category><category id="656" parentId="635">Наматрасники и топперы</category><category id="770">Текстиль</category><category id="1900" parentId="770">Одеяла</category><category id="1899" parentId="770">Подушки</category><category id="829" parentId="770">Чехлы для матрасов</category><category id="1901" parentId="770">Де
public String registerUser(UserRegistrationFormBean userRegistrationFormBean,
RequestContext requestContext,
ExternalContext externalContext) {
try {
Locale userLocale = requestContext.getExternalContext().getLocale();
this.userService.createNewUser(userRegistrationFormBean, userLocale, Constants.SYSTEM_USER_ID);
String emailAddress = userRegistrationFormBean.getChooseEmailAddressFormBean().getEmailAddress();
String password = userRegistrationFormBean.getChoosePasswordFormBean().getPassword();
doAutoLogin(emailAddress, password, (HttpServletRequest) externalContext.getNativeRequest());