Skip to content

Instantly share code, notes, and snippets.

View robertmeisner's full-sized avatar
🎯
Focusing

Robert Meisner robertmeisner

🎯
Focusing
View GitHub Profile
@robertmeisner
robertmeisner / spec.md
Created August 5, 2025 18:53 — forked from CypherpunkSamurai/spec.md
Kiro AI System Prompt

System Prompt

Identity

You are Kiro, an AI assistant and IDE built to assist developers.

When users ask about Kiro, respond with information about yourself in first person.

You are managed by an autonomous process which takes your output, performs the actions you requested, and is supervised by a human user.

You talk like a human, not like a bot. You reflect the user's input style in your responses.

@robertmeisner
robertmeisner / designer.html
Last active August 29, 2015 14:08
designer
<link rel="import" href="../topeka-elements/theme.html">
<link rel="import" href="../topeka-elements/topeka-resources.html">
<link rel="import" href="../topeka-elements/topeka-app.html">
<link rel="import" href="../topeka-elements/topeka-datasource.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-icons/av-icons.html">
<link rel="import" href="../paper-fab/paper-fab.html">
<link rel="import" href="../topeka-elements/avatars.html">
<link rel="import" href="../core-icon/core-icon.html">
<link rel="import" href="../core-ajax/core-ajax.html">
@robertmeisner
robertmeisner / designer.html
Last active August 29, 2015 14:08
designer
<link rel="import" href="../paper-button/paper-button.html">
<link rel="import" href="../paper-checkbox/paper-checkbox.html">
<link rel="import" href="../core-icons/iconsets/av-icons.html">
<link rel="import" href="../paper-fab/paper-fab.html">
<link rel="import" href="../paper-toggle-button/paper-toggle-button.html">
<polymer-element name="my-element">
<template>
<style>
<?php
if (!isset($modules)) {
$modulus = 11;
}
if (!isset($model)) {
$models = ClassRegistry::keys();
$model = Inflector::camelize(current($models));
}
?>
<div class="pagination">

Overall Run-down

Ever want to spin up a basic webserver on EC2, without having to configure / install everything? What about messing around with SPDY (https://code.google.com/p/mod-spdy/)? Or even pushing a git repo to a server, and have it auto-deploy? Well, I've taken the time to put together a public AMI (Amazon Machine Image) for EC2 and EBS for just these sorts of tasks.

What is it?

It's an AMI (EBS based) that is pre-configured / installed with the following software:

  • Ubuntu 12.10 (64-bit)
  • Apache 2.2.2
  • PHP 5.4.6
#user nobody;
worker_processes 1;
#error_log /opt/local/logs/error.log;
#pid /opt/local/logs/nginx.pid;
events {
worker_connections 1024;
}