Skip to content

Instantly share code, notes, and snippets.

View git-pi-e's full-sized avatar
πŸ’»
Crypting

Piyush Mohite git-pi-e

πŸ’»
Crypting
View GitHub Profile
@julyfun
julyfun / .clang-format
Created July 30, 2024 07:03
rust-like clang format (rustfmt)
AccessModifierOffset: -4
AlignAfterOpenBracket: BlockIndent
AlignConsecutiveMacros: false
AlignConsecutiveAssignments: false
AlignConsecutiveDeclarations: false
AlignEscapedNewlines: DontAlign
AlignOperands: false
AlignTrailingComments: false
AllowAllArgumentsOnNextLine: false
AllowAllConstructorInitializersOnNextLine: false
@Xavionstar
Xavionstar / Regex_Reduced_to_Relatable_Rhetoric.md
Last active March 26, 2023 07:13
Regex Reduced to Relatable Rhetoric

Regex Tutorial

This tutorial will explain the use of regex, how to implement it, and the proper syntaxes.

Summary

This is an example of regex that will call out anything matching an email format. Anything with the "[email protected]" format.

/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/
@YodaEmbedding
YodaEmbedding / .clang-format
Last active April 27, 2025 20:19
.clang-format for Rust style (rustfmt)
AccessModifierOffset: -2
AlignAfterOpenBracket: BlockIndent # New in v14. For earlier clang-format versions, use AlwaysBreak instead.
AlignConsecutiveMacros: false
AlignConsecutiveAssignments: false
AlignConsecutiveDeclarations: false
AlignEscapedNewlines: DontAlign
AlignOperands: false
AlignTrailingComments: false
AllowAllArgumentsOnNextLine: false
AllowAllConstructorInitializersOnNextLine: false
@nicolasdao
nicolasdao / terminal_emojis.md
Last active April 24, 2025 21:12
Terminal emojis. Keywords: terminal console symbol emoji emoticon icon
Emoji Name Text example
πŸš€ Rocket You're up
πŸ“¦ Package Installing additional dependencies...
βš“ Hook Running completion hooks...
πŸ“„ Document Generating README.md...
πŸŽ‰ Party Successfully created project hello-vue.
πŸ‘‰ Next Get started with the following commands:
βœ” Tick Task completed
✨ Magic Assembling project...
@MarcDiethelm
MarcDiethelm / Contributing.md
Last active September 13, 2024 15:58
How to contribute to a project on Github

This text now lives at https://github.com/MarcDiethelm/contributing/blob/master/README.md. I turned it into a Github repo so you can, you know, contribute to it by making pull requests.


Contributing

If you want to contribute to a project and make it better, your help is very welcome. Contributing is also a great way to learn more about social coding on Github, new technologies and and their ecosystems and how to make constructive, helpful bug reports, feature requests and the noblest of all contributions: a good, clean pull request.