Skip to content

Instantly share code, notes, and snippets.

View leogopal's full-sized avatar
🔥
Working on a better, free-er web.

Leo Gopal leogopal

🔥
Working on a better, free-er web.
View GitHub Profile
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
{
"$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": {

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

[
{
"Project Type": [
"customize",
"design_and_develop",
"fix",
"install",
"consultation"
],
"Project Subject": [

Contributor Covenant Code of Conduct

Our Pledge

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.

@leogopal
leogopal / how-i-work-template.md
Created March 19, 2020 21:19 — forked from jazzsequence/how-i-work-template.md
Template for How I Like to Work posts

How I work

This is my own interpretation of how I like to work, feedback welcome! Especially if my own view of how I think I like to work doesn't match your experience of how it seems I like to work!

When I work

@leogopal
leogopal / .gitignore
Created February 22, 2020 07:36
Global .gitignore
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
@leogopal
leogopal / reactions.rb
Created February 19, 2020 23:42 — forked from daybreaker/reactions.rb
Ruby script to check slack reaction counts
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
@leogopal
leogopal / .gitignore
Created February 12, 2020 22:34
WPEngine Recommended .gitignore No WP.
*~
.DS_Store
.svn
.cvs
*.bak
*.swp
Thumbs.db
# wordpress specific
wp-config.php