See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope>
is optional
Hi, I’m Leo. My mother has beaten the odds against pancreatic cancer for 12 years thanks to an experimental treatment. But if I can’t raise enough for her next cycle, she’ll be permanently removed from the clinical trial—and the cancer will come back. Please help me keep her alive. Every donation or share matters. | |
Today, I'm reaching out with a heartfelt plea: I need your help to save my mother's life. | |
In 2013, after returning from the Festival of Lamps, my father and I found my mother, Jamuna, unresponsive—barely breathing and cold to the touch. We rushed her to the hospital through pouring rain, desperate to keep her alive. There, we received the devastating diagnosis: pancreatic cancer. Doctors gave her six months to live, eighteen at most. They told us to prepare our goodbyes. | |
But we refused to accept that fate. | |
Through the kindness of friends in the medical field, my mother was accepted into a cutting-edge clinical trial—an experimental treatment tailored to her biology. It wasn't a cure, but it offe |
{ | |
"$schema": "https://playground.wordpress.net/blueprint-schema.json", | |
"landingPage": "/wp-admin/post-new.php?post_type=page", | |
"plugins": [ | |
"https://github-proxy.com/proxy/?repo=jonathanbossenger/wp-to-md-exporter" | |
], | |
"steps": [ | |
{ | |
"step": "installPlugin", | |
"pluginData": { |
[ | |
{ | |
"Project Type": [ | |
"customize", | |
"design_and_develop", | |
"fix", | |
"install", | |
"consultation" | |
], | |
"Project Subject": [ |
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
There are certain files created by particular editors, IDEs, operating systems, etc., that do not belong in a repository. But adding system-specific files to the repo's `.gitignore` is considered a poor practice. This file should only exclude files and directories that are a part of the package that should not be versioned (such as the `node_modules` directory) as well as files that are generated (and regenerated) as artifacts of a build process. | |
All other files should be in your own global gitignore file. Create a file called `.gitignore` in your home directory and add anything you want to ignore. You then need to tell git where your global gitignore file is. | |
#### Mac | |
git config --global core.excludesfile ~/.gitignore | |
#### Windows | |
git config --global core.excludesfile %USERPROFILE%\.gitignore |
require 'slack-ruby-client' # first, make sure you do: gem install slack-ruby-client | |
require 'date' | |
# Add your Slack API token here | |
token = [YOUR TOKEN HERE] | |
Slack.configure do |config| | |
config.token = token | |
end |
*~ | |
.DS_Store | |
.svn | |
.cvs | |
*.bak | |
*.swp | |
Thumbs.db | |
# wordpress specific | |
wp-config.php |