Skip to content

Instantly share code, notes, and snippets.

View airsoull's full-sized avatar

Cristian Sepúlveda airsoull

View GitHub Profile
@skyfishjy
skyfishjy / CursorRecyclerViewAdapter.java
Last active March 18, 2025 21:07
CursorRecyclerViewAdapter
/*
* Copyright (C) 2014 [email protected]
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
@JeOam
JeOam / PyCharm.md
Last active August 22, 2022 18:31
PyCharm Tips
Keyboard Shortcuts Descption
Cmd-/ Comment/uncomment
Cmd + Alt + L Reformat code
Cmd-F Find text
Cmd-Shift-F Find text in files
Cmd-Plus Expand code block
Cmd-Minus Collapse code block
Cmd-B Goto declaration of current variable
Cmd-U Goto superclass
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active May 9, 2025 03:04
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@Klerith
Klerith / typescriptreact.json
Created March 4, 2021 15:03
StyleSheet snippet
{
// Place your snippets for typescriptreact here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
// "Print to console": {
// "prefix": "log",
// "body": [
// "console.log('$1');",