You are setting up this repository for agentic coding with Claude Code.
First, check what's already configured in this repo:
ls -la CLAUDE.md .cursorrules 2>/dev/null| /* eslint-disable no-unused-vars, no-var */ | |
| var config = { | |
| // Connection | |
| // | |
| hosts: { | |
| // XMPP domain. | |
| domain: 'apeunit.test', |
Taught by Noah Coad, Senior IoT Architect at AWS
at the Dallas Makerspace on 2019-05-24 and 2019-06-27
Amazon Web Services (AWS) provides essential building blocks to creating your own applications. Like code in the cloud (AWS Lambda), image recognition detection (AWS Rekognize), database (AWS DynamoDB), file storage (S3), etc. Through this course you'll get started on combining 6 of these AWS services together to build a cloud app that you can submit an image to, store it, detect elements in the image, store those in a database, and manage it all through a REST API. We'll be using a Python framework for AWS called AWS Chalice, which makes coding, connecting, testing, and deploying these compon
A Pen by Jonathan Silva on CodePen.
| var processRSS = function(_feedURL, _tableView) { | |
| // create table view data object | |
| var data = []; | |
| Ti.API.info(" "+_feedURL); | |
| var xhr = Ti.Network.createHTTPClient(); | |
| xhr.open("GET",_feedURL.replace(/\"/g,"")); | |
| xhr.setRequestHeader('Accept', 'application/json'); | |
| xhr.onerror = function(e) { |
| <!doctype html> | |
| <!-- | |
| WARNING! | |
| You probably shouldn't use this technique since images never show up | |
| if the script isn't loaded for one reason or another. Some reasons: | |
| - The content is viewed using a RSS reader | |
| - The content is viewed with a read-it-later service | |
| - The user has a flaky connection (hotel wifi, Dutch train, etc) | |
| --> |
| var win = Titanium.UI.currentWindow; | |
| win.backgroundImage = 'images/bg.png'; | |
| //database | |
| var db = Titanium.Database.open('todolist'); | |
| db.execute('CREATE TABLE IF NOT EXISTS TODOLIST (ID INTEGER, TITLE TEXT, DETAIL TEXT, CREATEDATE DATETIME)'); | |
| var rows = db.execute('select * from todolist'); | |
| var data = []; | |
| var cnt = 0; |
| /** | |
| * Class name: database.js | |
| * Author: Codeboxed | |
| * URL: http://www.codeboxed.com | |
| * Date: June 6, 2011 | |
| * Platform: Titanium | |
| */ | |
| var Database = function(dbPath, dbName, table, tableFields){ |
| /** | |
| * We're going to create an infinite scrollable list. In this case, we're going to show a date. When you swipe left, | |
| * you'll see yesterday. Then the day before yesterday, and so on. Swiping right shows you tomorrow, and so on. | |
| */ | |
| var win = Ti.UI.createWindow({ backgroundColor: '#fff' }); | |
| var isAndroid = Ti.Platform.osname === 'android'; | |
| /** | |
| * Track where we are in the infinite scrollable views, and define how large of a step goes between each view. | |
| */ | |
| var currentDate = new Date(), msIntervalBetweenViews = 1000/*ms*/ * 60/*s*/ * 60/*m*/ * 24/*h*/; |