Comprehensive multi-agent analysis of the Claude Code internal source codebase. This document covers architecture, hidden features, tools, commands, models, feature flags, and internal systems.
This guide teaches how to setup Gemini CLI sandbox on Linux without requiring root permission. Giving it Docker access is same as root access since it can bindmount anything.
Follow the official guide here, https://github.com/containers/podman/blob/main/docs/tutorials/rootless_tutorial.md.
TLDR version on ubuntu
The easiest way to make Docker Compose available on Container-Optimized OS on Google Compute Engine (GCE) on Google Cloud Platform (GCP).
This is minimal Bash script version of Community Tutorial.
Simply, download installer.sh, run it, and then reload bash by source ~/.bashrc or re-login.
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
| // TODO: remove this when you're done with your implementation. | |
| #[derive(Default)] | |
| pub struct User { | |
| name: String, | |
| age: u32, | |
| height: f32, | |
| visit_count: u32, | |
| last_blood_pressure: Option<(u32, u32)>, | |
| } |
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
| # Copyright 2023 The TensorFlow Authors. All Rights Reserved. | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, |
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
| group: COMP3278 Assignment3 | |
| Facilities = { | |
| fID:number, name:string, category:string , maxUser:number | |
| 1 , 'fac1' , 'Stationary bike', 10 | |
| 2 , 'fac2' , 'Treadmill' , 11 | |
| 3 , 'fac3' , 'Treadmill' , 12 | |
| 4 , 'fac4' , 'Treadmill' , 13 | |
| 5 , 'fac5' , 'Treadmill' , 14 | |
| 6 , 'fac6' , 'Treadmill' , 15 |
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
| from vision.ssd.vgg_ssd import create_vgg_ssd, create_vgg_ssd_predictor | |
| from vision.ssd.mobilenetv1_ssd import create_mobilenetv1_ssd, create_mobilenetv1_ssd_predictor | |
| from vision.ssd.mobilenetv1_ssd_lite import create_mobilenetv1_ssd_lite, create_mobilenetv1_ssd_lite_predictor | |
| from vision.ssd.squeezenet_ssd_lite import create_squeezenet_ssd_lite, create_squeezenet_ssd_lite_predictor | |
| from vision.ssd.mobilenet_v2_ssd_lite import create_mobilenetv2_ssd_lite, create_mobilenetv2_ssd_lite_predictor | |
| from vision.utils.misc import Timer | |
| import cv2 | |
| import sys | |
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
| version: '3.4' | |
| services: | |
| osx: | |
| container_name: docker-osx | |
| image: sickcodes/docker-osx:big-sur | |
| privileged: true | |
| environment: | |
| - DISPLAY=${DISPLAY:-:0.0} | |
| network_mode: "host" |
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
| // In the name of Allah. | |
| // We're nothing and you're everything. | |
| // Ya Ali! | |
| #include <bits/stdc++.h> | |
| using namespace std; | |
| typedef long long ll; | |
| const int maxn = 1e2 + 14, lg = 15; |
NewerOlder