I love crafting new stuff and make things happen.
My interested fields includes:
- Web / GUI / Graphics
- ML / DL
# Copyright (c) 2017 Cary Kempston | |
# 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: | |
# The above copyright notice and this permission notice shall be included in all |
Understand the Task: Grasp the main objective, goals, requirements, constraints, and expected output. | |
- Minimal Changes: If an existing prompt is provided, improve it only if it's simple. For complex prompts, enhance clarity and add missing elements without altering the original structure. | |
- Reasoning Before Conclusions: Encourage reasoning steps before any conclusions are reached. ATTENTION! If the user provides examples where the reasoning happens afterward, REVERSE the order! NEVER START EXAMPLES WITH CONCLUSIONS! | |
- Reasoning Order: Call out reasoning portions of the prompt and conclusion parts (specific fields by name). For each, determine the ORDER in which this is done, and whether it needs to be reversed. | |
- Conclusion, classifications, or results should ALWAYS appear last. | |
- Examples: Include high-quality examples if helpful, using placeholders [in brackets] for complex elements. | |
- What kinds of examples may need to be included, how many, and whether they are complex enough to benefit from p |
# poc of string interpolation in bash / github action | |
- name: print env variables to job output | |
run: for v in `cat env` ; do echo "::set-env name=${v%%=*}::${v##*=}" ; done | |
- name: use (maybe ) in shell command | |
run: docker push myrepo/myapp:${TAG_REF#refs/tags/} | |
env: | |
TAG_REF: ${{ github.ref }} |
module Converter | |
class BaseConverter | |
def initialize input_file, **options | |
@input_file = input_file | |
@options = options | |
end | |
def write output_file, force: false | |
if output_file.exist? && !force | |
puts " NOT overwriting #{output_file}. remove dest file and rerun or specify 'force' flag" |
#cloud-config | |
# Set the hostname for this machine (takes precedence over hostname assigned by DHCP lease). | |
hostname: myhost | |
# Authorize SSH keys for the `rancher` sudoer user | |
ssh_authorized_keys: | |
- ssh-rsa AAA...ZZZ example1@rancher | |
// TYPE_ROOT/next-mui-helper/index.d.ts | |
declare module 'next-mui-helper/nextjs/makeNextDocument' { | |
import { Theme } from "@material-ui/core"; | |
const makeNextDocument: (muiTheme?: Theme) => React.Component; | |
export = makeNextDocument; | |
} |
{ | |
// silly way to prevent next.js clearing screen | |
// see https://github.com/zeit/next.js/blob/41eaa9cf5ade8f233439a80f7e846ccb00ef3f18/packages/next/build/output/store.ts#L24-L25 | |
const readline = require('readline'); | |
readline.cursorTo = readline.clearScreenDown = () => {}; | |
} |