[name] asked: how does the token get into the cookie: does the frontend set it itself or does the server do it?
Frontend
Why are objects used as keys of a regular object converted to the string "[object Object]"? Does string conversion happen for other keys, like numbers 7?
What dependencies other than dependencies are there in package.json and what do they mean?
How to organize queue, rate limiting, and request handling to LLM when the model's available throughput is exceeded?
Have you explored Skills and Superpowers for AI tools?
How to ensure full synchronization of user actions when communicating via WebSocket?
Do you understand how modules should be connected?
async function fetchWithRetries(retriesCount, ...fetchArgs) { for (let retry = 0; retry <= retriesCount; retry++) { try { const response = await fetch(...fetchArgs) {
How to solve the problem with a vulnerable transitive dependency used by several libraries if updating React is not possible now?
How was your experience working at T-Bank and how did the interview go overall?
How well do you know and can you set up builds, project optimization, checks, and testing? Also, tell us about screenshot tests.
var a = { firstName: 'Bill', lastName: 'Ivanov', sayName: function() { console.log(this.firstName); }, sayLastName: () => { console.log(this.lastName); } }; a.sayName(); // var b = a.sayName; b(); // a.sayName.bind({ firstName: 'Boris' })(); // a.sayName(); // a.sayLastName(); // a.sayName.bind({ firstName: 'Boris' }).bind({ firstName: 'Tom' })(); // a.sayLastName.bind({ lastName: 'Petrov' })(); //
Why is computed used in Vue?
What is BEM and why is this methodology used?
Refactor the given React code to improve its structure and readability. The code includes a product list with search functionality, a cart count, and a sum of prices. Implement the fetchProducts function to simulate fetching products with a delay and possible error. Use React hooks such as useState, useEffect, and useCallback appropriately. Ensure the UI updates correctly when adding products to the cart and clearing the cart.
Have you configured your own Prettier and ESLint rules?
function memoize(fn, lifetime) { // TODO }
How does reactivity work in Vue 3 through Proxy, track, and trigger?
Why should you use IntersectionObserver?
How to implement a table with heavy formula calculations so that the interface does not hang and everything works smoothly?