I hereby claim:
- I am sharat on github.
- I am sarat (https://keybase.io/sarat) on keybase.
- I have a public key ASCpGYABrDuEUseVITGhBcuQttuLgnVIUdMBtI1yIRQF7Qo
To claim this, I am signing this object:
# Filters the runs based on the status such as failure, cancelled etc., | |
# Filter its `databaseId` with JSON fields, extract the value using `jq` then pipe it to delete | |
gh run list --status=failure --json databaseId --jq '.[] | .databaseId' | xargs -I {} gh run delete {} |
echo "Upgrading Brew Packages" | |
brew upgrade | |
brew cleanup | |
echo "Upgrading Global NPM Packages" | |
npm upgrade -g | |
echo "Upgrading Gems installed" | |
gem update | |
gem cleanup |
I hereby claim:
To claim this, I am signing this object:
# Change 80 to your desired port. | |
# Use Sudo as appropriate | |
sudo lsof -i :80 |
extension TimeInterval { | |
func stringFormatted() -> String { | |
let interval = Int(self) | |
let seconds = interval % 60 | |
let minutes = (interval / 60) % 60 | |
let hours = (interval / (60*60)) % 60 | |
return String(format: "%02d:%02d:%02d", hours, minutes, seconds) | |
} | |
} |
extension UITextField { | |
func useUnderline() -> Void { | |
let border = CALayer() | |
let borderWidth = CGFloat(2.0) // Border Width | |
border.borderColor = UIColor.red.cgColor | |
border.frame = CGRect(origin: CGPoint(x: 0,y :self.frame.size.height - borderWidth), size: CGSize(width: self.frame.size.width, height: self.frame.size.height)) | |
border.borderWidth = borderWidth | |
self.layer.addSublayer(border) | |
self.layer.masksToBounds = true | |
} |
require('dotenv').config() | |
var kue = require('kue'); | |
console.info('Creating Queue with redis', process.env.REDISCLOUD_URL); | |
var queue = kue.createQueue({ | |
redis: process.env.REDISCLOUD_URL | |
}) | |
console.log('moving forward with kue') |
# The symptoms. When you do this, you keep on getting new and deleted branches all the time | |
git remote update | |
git pull | |
# Symptom 2 (for obvious reasons). | |
git branch -a --merged # Check the merged branches | |
git push origin --delete [branch name] # this complains remote doesn't exist | |
# The remedy |
import json | |
import logging | |
import os | |
import socket | |
import ssl | |
import struct | |
import sys | |
import time | |
import uuid |