This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Technical and architectural audit of a system. This is an evolving documentation vault, not a codebase.
| // | |
| // ContentView.swift | |
| // TinderCardsDemo | |
| // | |
| // Created by David Rozmajzl on 11/28/23. | |
| // | |
| import SwiftUI | |
| struct ContentView: View { |
| // | |
| // DebounceStatePropertyWrapperDemoNative.swift | |
| // | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy | |
| // of this software and associated documentation files (the "Software"), to deal | |
| // in the Software without restriction, including without limitation the rights | |
| // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | |
| // of the Software, and to permit persons to whom the Software is furnished to do so, | |
| // subject to the following conditions: | |
| // |
| /* ******************************************************************************************* | |
| * TAILWIND.CSS | |
| * DOCUMENTATION: https://tailwindcss.com/ | |
| * ******************************************************************************************* */ | |
| /* | |
| * Available breakpoints | |
| * -------------------- | |
| * sm: min-width: 640px; | |
| * md: min-width: 768px; |
UPDATE (March 2020, thanks @ic): I don't know the exact AMI version but yum install docker now works on the latest Amazon Linux 2. The instructions below may still be relevant depending on the vintage AMI you are using.
Amazon changed the install in Linux 2. One no-longer using 'yum' See: https://aws.amazon.com/amazon-linux-2/release-notes/
sudo amazon-linux-extras install docker
sudo service docker startIf you haven’t worked with JavaScript in the last few years, these three points should give you enough knowledge to feel comfortable reading the React documentation:
let and const statements. For the purposes of the React documentation, you can consider them equivalent to var.class keyword to define JavaScript classes. There are two things worth remembering about them. Firstly, unlike with objects, you don't need to put commas between class method definitions. Secondly, unlike many other languages with classes, in JavaScript the value of this in a method [depends on how it is called](https://developer.mozilla.org/en-US/docs/Web/Jav| #!/bin/bash | |
| today=`date "+%Y%m%d"` | |
| echo $today | |
| # Modify the config values here | |
| BUCKET= | |
| ES_DOMAIN= | |
| ES_INDEX= | |
| ES_DUMP_PREFIX= | |
| export AWS_ACCESS_KEY_ID= |
| hdmi_group=2 | |
| hdmi_mode=87 | |
| hdmi_cvt=2560 1440 60 3 0 0 1 | |
| max_framebuffer_width=2560 | |
| max_framebuffer_height=1440 | |
| hdmi_pixel_freq_limit=400000000 |
| vi /etc/environment | |
| add these lines... | |
| LANG=en_US.utf-8 | |
| LC_ALL=en_US.utf-8 |
| FROM python:3 | |
| WORKDIR /usr/src/app | |
| # Copy over the drivers | |
| # MySQL ODBC Ansi | |
| COPY drivers/mysql-connector-odbc-5.3.9-linux-ubuntu16.04-x86-64bit.tar.gz . | |
| # Oracle 11.2 | |
| COPY drivers/oracle-instantclient11.2-basic-11.2.0.4.0-1.x86_64.rpm . | |
| COPY drivers/oracle-instantclient11.2-odbc-11.2.0.4.0-1.x86_64.rpm . |