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
| // | |
| // Lensy.swift | |
| // Lensy | |
| // | |
| // Created by Safx Developer on 2016/02/12. | |
| // Copyright © 2016 Safx Developers. All rights reserved. | |
| // | |
| // MARK: - Lenses protocols |
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 * as React from 'react'; | |
| import { BrowserRouter as Router, Link, Redirect, Route, RouteComponentProps, withRouter } from 'react-router-dom'; | |
| const UserAuthContext = React.createContext({ | |
| authenticated: false, | |
| setAuthenticated: (_:boolean) => {} | |
| }); | |
| const AuthExample = () => ( | |
| <Router> |
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
| use std::any::Any; | |
| use std::cell::{Cell, RefCell}; | |
| use std::collections::{HashMap, HashSet}; | |
| use std::marker::PhantomData; | |
| use web_sys::{console, window}; | |
| use wasm_bindgen::prelude::{Closure, JsCast}; | |
| #[derive(Default)] | |
| struct Runtime { | |
| signal_values: RefCell<Vec<Box<RefCell<dyn Any>>>>, |
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
| #!/bin/bash | |
| # Claude Session Selector - Interactive session selection and restore | |
| set -euo pipefail | |
| # Get the project directory for current path | |
| PROJECT_DIR="$HOME/.claude/projects" | |
| CURRENT_DIR=$(pwd) | |
| PROJECT_PATH=$(echo "$CURRENT_DIR" | sed -Ee 's/[_\/]/-/g') | |
| SESSION_DIR="$PROJECT_DIR/$PROJECT_PATH" |
OlderNewer