Run two Claude Code accounts simultaneously on macOS without re-authenticating by using separate configuration directories.
- Create Separate Config Directories
mkdir ~/.claude-account1 mkdir ~/.claude-account2
A list of links containing cool references, resources and things related to books about Computer Science and related.
| import React from 'react'; | |
| import WebView from 'react-native-webview'; | |
| export type RGBA = `rgba(${number}, ${number}, ${number}, ${number})`; | |
| export interface BlurContainerProps { | |
| backgroundColor: RGBA; | |
| blurRadius: number; | |
| } |
Some questions about frontend development that might be in your next job interview. The questions were formulated by @mauvieira, a super senior fullstack developer
What are the strategies we can use to optimize the performance of web applications?
What are Web Vitals (LCP, FID, CLS)? And how are they applied in the real world?
| (async () => { | |
| function sleep(ms) { | |
| return new Promise((resolve) => setTimeout(resolve, ms)); | |
| } | |
| const acceptButtons = document.querySelectorAll('[aria-label*="Accept"]'); | |
| for (const acceptButton of acceptButtons) { | |
| acceptButton.click() | |
| await sleep(2000); |
| .fadeinDown { | |
| -webkit-animation: fadeInDown 500ms ease-in-out; /* Chrome, Safari, Opera */ | |
| animation: fadeInDown 500ms ease-in-out; | |
| } | |
| /* Chrome, Safari, Opera */ | |
| @-webkit-keyframes fadeInDown { | |
| 0% { |