Skip to content

Instantly share code, notes, and snippets.

View sleon-fmi's full-sized avatar

Sergio Leon sleon-fmi

  • Ferris Marketing, Inc.
  • Miami, FL
View GitHub Profile
@ServerlessBot
ServerlessBot / IAMCredentials.json
Last active December 20, 2023 16:50
Minimum credential set for Serverless Framework
{
"Statement": [
{
"Action": [
"apigateway:*",
"cloudformation:CancelUpdateStack",
"cloudformation:ContinueUpdateRollback",
"cloudformation:CreateChangeSet",
"cloudformation:CreateStack",
"cloudformation:CreateUploadBucket",
@Anrimian
Anrimian / BroadcastDisposable.java
Created October 9, 2017 11:59
Simple RxJava2 wrapper for Android BroadcastReceiver
class BroadcastDisposable implements Disposable {
private BroadcastReceiver receiver;
private Context ctx;
private boolean isDisposed = false;
BroadcastDisposable(@NonNull BroadcastReceiver receiver, @NonNull Context ctx) {
this.receiver = receiver;
this.ctx = ctx;
@dupuy
dupuy / README.rst
Last active June 25, 2024 15:05
Common markup for Markdown and reStructuredText

Markdown and reStructuredText

GitHub supports several lightweight markup languages for documentation; the most popular ones (generally, not just at GitHub) are Markdown and reStructuredText. Markdown is sometimes considered easier to use, and is often preferred when the purpose is simply to generate HTML. On the other hand, reStructuredText is more extensible and powerful, with native support (not just embedded HTML) for tables, as well as things like automatic generation of tables of contents.