Skip to content

Instantly share code, notes, and snippets.

View ahandsel's full-sized avatar
🏠
Working from home

Genji ahandsel

🏠
Working from home
View GitHub Profile

Studio Ghibli Park Notes

Tips

  • Buy tickets to the ジブリの大倉庫 for 9:00!
    • Take photos first; watch movie later
  • Arrive before 9:00!
  • It is okay to be a bit late (30 min ish)
  • ジブリの大倉庫 to Mm is 1.5 km walk

Warning

@ahandsel
ahandsel / chatgpt-prompts.md
Last active August 28, 2024 16:37
Helpful ChatGPT prompts 🤖

Note Taking

You are NotesGPT, an AI language model skilled at taking detailed, concise, and easy-to-understand notes on various subjects in bullet-point format. When provided with a "Message Thread to Summarize", use it as input, and your task is to:
1. Create advanced bullet-point notes summarizing the important parts of the reading or topic.
2. Include all essential information, such as vocabulary terms and key concepts, which should be bolded with asterisks.
3. Remove any extraneous language, focusing only on the critical aspects of the passage or topic.
4. Strictly base your notes on the provided information without adding any external information.
5. Conclude your notes with "End_of_Notes" to indicate completion.

No Server Data Visualization: Build a Bubble Cloud Project!

Thank you for attending our Kintone x Bubble Cloud workshop!

Use the following CSV file, CDN URLs, visualization.js, and PDF files for the hands-on section!

Download Links

Click here or the Download Zip button on the upper right corner for all the code, data, & slide you need for our workshop!

Getting your FREE Kintone Database

@ahandsel
ahandsel / 0_JS_Promise_Workshop.md
Last active January 29, 2021 02:40 — forked from will-yama/part1_asynchronous_processing1.js
Introduction to Promises

Kintone x Intro to JavaScript Promises Workshop

Thank you for attending our Kintone x JS Promises workshop!

Here are steps you get you started with our workshop:

Step 1 - Download the Files

Click here or the Download Zip button on the upper right corner for all the code & slides you need for our workshop!

@ahandsel
ahandsel / 1_Kintone_Workshop_REST_API_Commands.md
Last active July 31, 2020 04:33
Kintone Workshop REST API Commands
@marcosvpj
marcosvpj / vscode-remove-duplicate-lines.md
Last active July 17, 2024 19:08
How to remove duplicate lines in Visual Studio Code?

If the order of lines is not important##

Sort lines alphabetically, if they aren't already, and perform these steps:
(based on this related question: https://stackoverflow.com/q/1573361/3258851)

  1. Control+F

  2. Toggle "Replace mode"

  3. Toggle "Use Regular Expression" (the icon with the .* symbol)

@scmx
scmx / using-details-summary-github.md
Last active September 19, 2024 05:58
Using <details> <summary> expandable content on GitHub with Markdown #details #summary #markdown #gfm #html

How to use <details> <summary> expandable content on GitHub with Markdown

Firstly, what is <details> <summary>?

The HTML Details Element (<details>) creates a disclosure widget in which information is visible only when the widget is toggled into an "open" state. A summary or label can be provided using the <summary> element. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details.

Example

@zakkak
zakkak / .git-commit-template
Last active May 15, 2024 00:06 — forked from adeekshith/.git-commit-template.txt
This commit message template that helps you write great commit messages and enforce it across your team.
# [<tag>] (If applied, this commit will...) <subject> (Max 72 char)
# |<---- Preferably using up to 50 chars --->|<------------------->|
# Example:
# [feat] Implement automated commit messages
# (Optional) Explain why this change is being made
# |<---- Try To Limit Each Line to a Maximum Of 72 Characters ---->|
# (Optional) Provide links or keys to any relevant tickets, articles or other resources
# Example: Github issue #23
# Name Type 1 Type 2 Total HP Attack Defense Sp. Atk Sp. Def Speed Generation Legendary
1 Bulbasaur Grass Poison 318 45 49 49 65 65 45 1 False
2 Ivysaur Grass Poison 405 60 62 63 80 80 60 1 False
3 Venusaur Grass Poison 525 80 82 83 100 100 80 1 False
3 VenusaurMega Venusaur Grass Poison 625 80 100 123 122 120 80 1 False
4 Charmander Fire 309 39 52 43 60 50 65 1 False
5 Charmeleon Fire 405 58 64 58 80 65 80 1 False
6 Charizard Fire Flying 534 78 84 78 109 85 100 1 False
6 CharizardMega Charizard X Fire Dragon 634 78 130 111 130 85 100 1 False
6 CharizardMega Charizard Y Fire Flying 634 78 104 78 159 115 100 1 False
@ericclemmons
ericclemmons / example.md
Last active September 20, 2024 12:46
HTML5 <details> in GitHub

Using <details> in GitHub

Suppose you're opening an issue and there's a lot noisey logs that may be useful.

Rather than wrecking readability, wrap it in a <details> tag!

<details>
 Summary Goes Here