Skip to content

Instantly share code, notes, and snippets.

View venugopp's full-sized avatar

Pradeep Venugopal venugopp

  • Athena Health
  • Bangalore
View GitHub Profile
@venugopp
venugopp / create_label.php
Created June 24, 2015 09:21
Creating label for GIT repositories
$access_token = "<replace-with-your-github-access-token>";
$org = "<replace-with-your-github-organization-name>";
$org_url = "https://api.github.com/repos/" . $org . "/";
$repositories = array(); // Github repositories that needs label
// Create label as you need, here is a sample.
$labels = array(
"PR: Ready to Merge" => "009800",
"PR: Needs Work" => "eb6420",
"PR: Reviewed with Comments" => "E2FF9E",
@venugopp
venugopp / edit-excel.php
Created September 30, 2022 13:09
Editing an existing spreadsheet
<?php
/**
* @file
* Edit a spreadsheet.
*
* Using the library https://github.com/PHPOffice/PhpSpreadsheet.
*/
require "../vendor/autoload.php";
@venugopp
venugopp / README.md
Created January 3, 2023 05:02 — forked from lopspower/README.md
Hexadecimal color code for transparency

Hexadecimal color code for transparency

Twitter

How to set transparency with hex value ?

For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.

Download This sample on Google Play Store