This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[1654,"Сомнительно, но окей.","","Doubtful, but okay.","",0,"2025-05-18T15:12:23.336",""], | |
[1653,"Сколько лет твоей дочери сейчас? Наверное, она уже в школе.","","How old is your daughter now? She must be in school already.","",9,"2025-05-17T10:25:09.249",""], | |
[1652,"Когда ты сможешь вернуть книгу, которую я дал(а) тебе в прошлом месяце?","","When can you return the book that I lent you last month?","",9,"2025-05-17T10:25:09.249",""], | |
[1651,"Где находится ближайший банкомат? Мне нужно снять наличные.","","Where is the nearest ATM? I need to withdraw some cash.","",9,"2025-05-17T10:25:09.249",""], | |
[1650,"Почему ты плачешь? Кто-то сказал тебе что-то обидное?","","Why are you crying? Did someone say something hurtful to you?","",9,"2025-05-17T10:25:09.249",""], | |
[1649,"Твой отец дома? Мне срочно нужно с ним поговорить.","","Is your father at home? I need to speak with him urgently.","",9,"2025-05-17T10:25:09.249",""], | |
[1648,"Нам заказать пиццу или приготовить что-нибудь дома сегодня вечером?","","Should we order |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[1467,"Использование семантического HTML помогает **сохранить** доступность.","","Using semantic HTML helps **preserve** accessibility.","",1,"2025-03-08T22:48:10.896",""], | |
[1466,"localStorage API можно использовать **для сохранения** пользовательских настроек даже после закрытия браузера.","","The localStorage API can be used **to preserve** user preferences even after the browser is closed.","",3,"2025-03-07T09:42:36.362",""], | |
[1465,"**Чтобы сохранить** состояние UI во время навигации, рассмотрите использование клиентской маршрутизации.","","**To preserve** the state of the UI during navigation, consider using client-side routing.","",3,"2025-03-09T06:40:44.001",""], | |
[1464,"Все остальное выглядит как **пустая трата времени**.","","Everything else seems like a **waste of time**.","",3,"2025-03-09T15:15:22.672",""], | |
[1463,"Так не пойдет.","","It won't do.","",3,"2025-03-03T14:48:24.251",""]] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[1514,"Я, скорее, буду игнорировать тебя, чем Гарри.","","I'd rather ignore you than Harry.","",0,"2025-04-28T10:18:16.994",""], | |
[1513,"У нее есть... **выдающиеся** достоинства.","","She has... **prominent** assets.","Assets (букв. \"активы\") – часто эвфемизм для груди/фигуры.",0,"2025-04-09T22:17:23.062",""], | |
[1512,"Тейлор Свифт — **известная** певица. Альберт Эйнштейн — **выдающийся** ученый.","","Taylor Swift is a **famous** singer. \nAlbert Einstein is a **prominent** scientist.","**Famous** = известный многим (может быть «звезда» или просто популярная личность).\n**Prominent** = уважаемый, влиятельный в своей области (даже если его не знает каждый).",1,"2025-04-09T16:06:13.711",""], | |
[1511,"Как бы это **выразить** деликатнее?","","How can I **put** this delicately?\nHow can I express...","Исторически \"put\" развил абстрактные значения, связанные с \"помещением\" идеи в слова.\nЕсли \"put\" используется с словами, мыслями, объяснениями → значит, \"выразить\".\nЕсли с предметами → скорее всего, \"класть/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import isEqual from 'lodash.isequal'; | |
type AnyObj = Record<string, any>; | |
type UnionToIntersection<U> = (U extends any ? (k: U) => void : never) extends (k: infer I) => void | |
? I | |
: never; | |
export const mergeObjectsRecursively = <T extends AnyObj, U extends AnyObj[]>( | |
...objects: [T, ...U] | |
): T & UnionToIntersection<U[number]> => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const arr =[ | |
[1, 2, 3, 4, 5, 6, 7, 8, 9, ], | |
[10, 20, 30, 40, 50, 60, 70, 80, 90, ], | |
[11, 12, 13, 14, 15, 16, 17, 18, 19, ], | |
[21, 22, 23, 24, 25, 26, 27, 28, 29, ], | |
[31, 32, 33, 34, 35, 36, 37, 38, 39, ], | |
]; | |
const getMatrixFragment = ( | |
matrix = [[]], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
// Custom snippets definitions | |
"snippets": { | |
"html": { | |
"filters": "html, bem", | |
"snippets": { | |
"blq": "<blockquote>${1:}</blockquote>", | |
} | |
}, | |
"pug": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --global user.name "Name" # имя | |
git config --global user.email "[email protected]" # мыло (акк. на Github) | |
git config --global color.ui true # цвет ВКЛ. | |
# Только для Windows: | |
git config --global core.autocrlf true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"destination": "clipboard", | |
"bem_nesting": true, | |
"indentation": " ", | |
"empty_line_before_nested_selector": true | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set background=dark |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set bell-style none |
NewerOlder