Skip to content

Instantly share code, notes, and snippets.

View chibaye's full-sized avatar

chibaye chibaye

View GitHub Profile
@chibaye
chibaye / self-signed-certificate-with-custom-ca.md
Created February 21, 2024 12:32 — forked from fntlnz/self-signed-certificate-with-custom-ca.md
Self Signed Certificate with Custom Root CA

Create Root CA (Done once)

Create Root Key

Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!

openssl genrsa -des3 -out rootCA.key 4096
@chibaye
chibaye / self_signed_certs.md
Created February 21, 2024 12:31 — forked from elklein96/self_signed_certs.md
A quick guide for creating self-signed certificates using OpenSSL

Creating a Self-Signed Certificate

Prerequisites

  • You'll need to install OpenSSL to create and sign certificates.
    • Linux: sudo apt-get install openssl
    • MacOS: brew install openssl

Getting Started

@chibaye
chibaye / gist:1d78db24d6855ce106176ae57e63a62b
Created December 20, 2023 15:27 — forked from wsc/gist:1083459
Occupation list
Accountant
Auditor
Actor
Actuary
Adhesive Bonding Machine Operator
Tender
Administrative Law Judge
Administrative Services Manager
Adult Basic and Secondary Education and Literacy Teacher
Instructor
[
"Academic Librarian",
"Accountant",
"Accounting Technician",
"Actuary",
"Adult Nurse",
"Advertising Account executive",
"Advertising Account planner",
"Advertising Copywriter",
"Advice Worker",
<style name="TopSheet_DialogAnimation">
  <item name="android:windowEnterAnimation">@anim/slide_out_from_top</item>
  <item name="android:windowExitAnimation">@anim/slide_back_to_top</item>
</style>

slide_out_from_top

@chibaye
chibaye / Nework_throttling_profiles.md
Created July 10, 2023 17:33 — forked from theodorosploumis/Nework_throttling_profiles.md
Web development - Custom network throttling profiles
Profile download (kb/s) upload (kb/s) latency (ms)
Native 0 0 0
GPRS 50 20 500
56K Dial-up 50 30 120
Mobile EDGE 240 200 840
2G Regular 250 50 300
2G Good 450 150 150
3G Slow 780 330 200
@chibaye
chibaye / LearnXInYMinProtocolBuffer.proto
Created May 11, 2023 12:02 — forked from shankarshastri/LearnXInYMinProtocolBuffer.proto
Self-Explanatory Protocol Buffer Lang Guide (CheatSheet)
/*
* Self-Explanatory Protocol Buffer Lang Guide
*/
/*
* Why Protocol Buffers?
* Protocol buffers are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data – think XML, but smaller, faster, and simpler.
* You define how you want your data to be structured once, then you can use special generated source code to easily write and read your structured data to and from a variety of data streams and using a variety of languages.
* Protocol Buffers are Schema Of Messages. They are language agnostic.
@chibaye
chibaye / Animated_LikeButton
Created November 21, 2022 07:42 — forked from prinsu03/Animated_LikeButton
Animated_LikeButton Like Twitter
package com.example.prince.like_button_animation;
import android.graphics.drawable.BitmapDrawable;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.Toast;
@chibaye
chibaye / MainActivity.kt
Created November 7, 2022 14:34 — forked from Jatra/MainActivity.kt
Kotlin drag to reorder recyclerview
package uk.co.jatra.recorder
import android.os.Bundle
import android.support.v7.app.AppCompatActivity
import android.support.v7.widget.LinearLayoutManager
import android.support.v7.widget.RecyclerView
import android.support.v7.widget.helper.ItemTouchHelper
import android.support.v7.widget.helper.ItemTouchHelper.DOWN
import android.support.v7.widget.helper.ItemTouchHelper.UP
import android.view.LayoutInflater

Automate Deploy Node App in Amazon EC2 Linux

PREREQUISITES

To Login

ssh -i <private-key-file/pem> ec2-user@[ec2-hostname].amazonaws.com
  1. Install Node JS & pm2 Ref: