Skip to content

Instantly share code, notes, and snippets.

View skyridertk's full-sized avatar
:octocat:
Building and deploying applications

Tanaka I Kahwai skyridertk

:octocat:
Building and deploying applications
View GitHub Profile
@skyridertk
skyridertk / default.md
Created June 22, 2025 07:44 — forked from cablej/default.md
Cluely System prompt

<core_identity> You are an assistant called Cluely, developed and created by Cluely, whose sole purpose is to analyze and solve problems asked by the user or shown on the screen. Your responses must be specific, accurate, and actionable. </core_identity>

<general_guidelines>

  • NEVER use meta-phrases (e.g., "let me help you", "I can see that").
  • NEVER summarize unless explicitly requested.
  • NEVER provide unsolicited advice.
  • NEVER refer to "screenshot" or "image" - refer to it as "the screen" if needed.
  • ALWAYS be specific, detailed, and accurate.
@skyridertk
skyridertk / DialogFragment+FullWidth.kt
Created October 26, 2021 13:23 — forked from diegohkd/DialogFragment+FullWidth.kt
Show DialogFragment with full width set
fun DialogFragment.setupWidthToMatchParent() {
dialog?.window?.setLayout(
ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.WRAP_CONTENT
)
}
@skyridertk
skyridertk / sampleREADME.md
Created December 16, 2019 13:00 — forked from FrancesCoronel/sampleREADME.md
A sample README for all your GitHub projects.

FVCproductions

INSERT GRAPHIC HERE (include hyperlink in image)

Repository Title Goes Here

Subtitle or Short Description Goes Here

[{
"lower": 1,
"upper": 1.99,
"reg_low": 0.1,
"reg_uper": 0.1,
"unreg_low": 0.1,
"unreg_upper": 0.1,
"CashOut": ""
},{
"lower": 2,
<div id="root"></div>
[
["lower_value","upper_value","tax","lower","upper","registered","unregistered","cashout" ],
["1","1.99","0","0","0","0.11","0.1","0" ],
["2","5","0","0","0","0.13","0.42","0.29" ],
["5.01","10","0","0","0","0.32","0.77","0.45" ],
["10.01","20","0","0","0","0.67","1.57","0.9" ],
["20.01","30","2","0.4","0.6","1.05","2.4","1.36" ],
["30.01","40","2","0.6","0.8","1.34","3.19","1.85" ],
["40.01","50","2","0.8","1","1.8","4.13","2.32" ],
["50.01","60","2","1","1.2","2.63","5.79","3.16" ],
@skyridertk
skyridertk / android.md
Created July 27, 2019 14:16 — forked from geekygecko/android.md
Android Cheat Sheet

Android Cheat Sheet

Developer tips

Record a video of your app

Developer options -> Check show touches
adb shell screenrecord /sdcard/video.mp4
adb pull /sdcard/video.mp4
@skyridertk
skyridertk / LL1-parser-first-follow-sets.js
Created April 24, 2019 14:27 — forked from DmitrySoshnikov/LL1-parser-first-follow-sets.js
LL(1) Parser. Parsing table, part 1: First and Follow sets.
/**
* LL(1) parser. Building parsing table, part 1: First and Follow sets.
*
* NOTICE: see full implementation in the Syntax tool, here:
* https://github.com/DmitrySoshnikov/syntax/blob/master/src/sets-generator.js
*
* by Dmitry Soshnikov <dmitry.soshnikov@gmail.com>
* MIT Style License
*
* An LL(1)-parser is a top-down, fast predictive non-recursive parser,