Skip to content

Instantly share code, notes, and snippets.

View AnanthaRajuC's full-sized avatar
💻
Learning

Anantha Raju C AnanthaRajuC

💻
Learning
View GitHub Profile
@AnanthaRajuC
AnanthaRajuC / gitflow-breakdown.md
Created November 6, 2019 09:44 — forked from JamesMGreene/gitflow-breakdown.md
A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
  git commit --allow-empty -m "Initial commit"
  git checkout -b develop master

Connect to the remote repository

@AnanthaRajuC
AnanthaRajuC / truth-table.csv
Created January 22, 2020 11:24 — forked from PurpleBooth/truth-table.csv
Three process project
Develop QA Release On Time
T T T T
T T F F
T F T F
T F F F
F T T F
F T F F
F F T F
F F F F
@AnanthaRajuC
AnanthaRajuC / truth-table.csv
Created January 22, 2020 11:24 — forked from PurpleBooth/truth-table.csv
Three process project plus WIP
Develop Current Task QA Current Task QA Older Task Release Current Task Release Older Task Release Even Older Task On Time
T T T T T T T
T T T T T F F
T T T T F T F
T T T T F F F
T T T F T T F
T T T F T F F
T T T F F T F
T T T F F F F
T T F T T T F
aardvark
aardwolf
Aaronite
abaction
abaculus
abaissed
abampere
Abarambo
abasedly
abatable
@AnanthaRajuC
AnanthaRajuC / Password.java
Created May 24, 2020 05:30 — forked from craSH/Password.java
A simple example Java class to safely generate and verify bcrypt password hashes for use in authentication systems.
/**
* Author: Ian Gallagher <igallagher@securityinnovation.com>
*
* This code utilizes jBCrypt, which you need installed to use.
* jBCrypt: http://www.mindrot.org/projects/jBCrypt/
*/
public class Password {
// Define the BCrypt workload to use when generating password hashes. 10-31 is a valid value.
private static int workload = 12;
@AnanthaRajuC
AnanthaRajuC / license-badges.md
Created July 25, 2020 06:00 — forked from lukas-h/license-badges.md
Markdown License Badges for your Project

Markdown License badges

Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.

Notes

  • The badges do not fully replace the license informations for your projects, they are only emblems for the README, that the user can see the License at first glance.  

Translations: (No guarantee that the translations are up-to-date)

@AnanthaRajuC
AnanthaRajuC / bootstrap-all-elements.html
Created July 25, 2020 15:18 — forked from letanure/bootstrap-all-elements.html
List of all bootstrap components
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Bootstrap all elements</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
@AnanthaRajuC
AnanthaRajuC / gist:c6b270d2461dcd214e67963ca6106e16
Created August 9, 2020 05:44 — forked from digitaljhelms/gist:4287848
Git/GitHub branching standards & conventions

Branching

Quick Legend

Description, Instructions, Notes
Instance Branch
@AnanthaRajuC
AnanthaRajuC / rbac1
Created September 6, 2020 12:44 — forked from CUXIDUMDUM/rbac1
rbac1
-- http://www.ac-web.org/forums/showthread.php?176819-How-to-RBAC
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `rbac_account_groups`
-- ----------------------------
DROP TABLE IF EXISTS `rbac_account_groups`;
CREATE TABLE `rbac_account_groups` (
`accountId` int(10) unsigned NOT NULL COMMENT 'Account id',