Skip to content

Instantly share code, notes, and snippets.

View tejzpr's full-sized avatar

Tejus tejzpr

View GitHub Profile
@tejzpr
tejzpr / ddwrite.sh
Last active April 6, 2024 17:51
Write a Bootable ISO to USB in Linux using dd
sudo dd bs=4M if=~/Downloads/Fedora-KDE-Live-x86_64-28-1.1.iso of=/dev/sdb status=progress conv=fdatasync
#Get Usb drive name by issuing the following command
#fdisk -l
#http://www.webupd8.org/2014/04/prevent-your-laptop-from-overheating.html
@tejzpr
tejzpr / gist:0e13d4e6eb6fa03015ad4ba272d74ca9
Last active April 27, 2023 01:35
Servicenow: oAuth Password grant authentication
(function execute(inputs, outputs) {
var provider = new sn_cc.StandardCredentialsProvider();
var credential = provider.getCredentialByID("credential_id");
var user = credential.getAttribute("user_name");
var pass = credential.getAttribute("password");
var oAuthClient = new sn_auth.GlideOAuthClient();
var params ={grant_type:"password", username:user, password:pass};
var json = new global.JSON();
var extraParams = json.encode(params);
@tejzpr
tejzpr / server.go
Created July 18, 2022 22:51 — forked from xcsrz/server.go
A golang web server on a randomly (os) chosen port.
package main
import (
"fmt"
"github.com/skratchdot/open-golang/open"
"net"
"net/http"
)
func main() {
@tejzpr
tejzpr / strstr.js
Created February 5, 2018 21:22
Javascript strstr
String.prototype.strstr = function(needle) {
const haystack = this;
if(!needle) return [0];
if(!haystack || needle.length > haystack.length) return [-1];
let i,j;
let positions = [];
for(i=0;i<haystack.length;i++) {
let index = i;
j=0;
@tejzpr
tejzpr / strstr.go
Created April 1, 2021 22:07
strstr in go
package main
import (
"fmt"
"strings"
)
func main() {
fmt.Println(strstr("Hello how how are you", "How"))
}

Keybase proof

I hereby claim:

  • I am tejzpr on github.
  • I am tejzpr (https://keybase.io/tejzpr) on keybase.
  • I have a public key ASAyqS7BrrmWS1qGZCUd1x--BNCoMgP8QHORWMe0RH6sNwo

To claim this, I am signing this object:

@tejzpr
tejzpr / LICENSE
Last active March 6, 2021 04:10
This license applies to all my Public Gists unless another License is specifically applied in source code of that particular Gist.
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
@tejzpr
tejzpr / fhvhash.go
Created March 1, 2021 18:00
FNV Hash - Go
package main
import "fmt"
func fnvHash32(key string) uint32 {
hash := uint32(2156825496)
const prime32 = uint32(16777619)
for i := 0; i < len(key); i++ {
hash *= prime32
hash ^= uint32(key[i])
//Fastest way to copy a Collection in MongoDB
db.getCollection('OriginalCollection').aggregate([ { $out: "ClonedCollection" } ]);
  1. Re-Order Lauchpad APPS
defaults write com.apple.dock ResetLaunchPad -bool true; killall Dock