Skip to content

Instantly share code, notes, and snippets.

View rushtehrani's full-sized avatar

Rush Tehrani rushtehrani

View GitHub Profile
arguments:
parameters:
- name: source
value: https://github.com/onepanelio/detr.git
displayName: Model source code
type: hidden
visibility: private
- name: cvat-annotation-path
value: annotation-dump/sample_dataset
@rushtehrani
rushtehrani / firefox.desktop
Last active July 10, 2018 08:02
Running an App on Ubuntu in Kiosk Mode
# /usr/share/xsessions/firefox.desktop
[Desktop Entry]
Name=Firefox (No effects)
Comment=This session only opens Firefox
Exec=/usr/bin/firefox
Icon=
Type=Application

Keybase proof

I hereby claim:

  • I am rushtehrani on github.
  • I am rush (https://keybase.io/rush) on keybase.
  • I have a public key whose fingerprint is 952A C8B4 2B92 BFF2 E929 E69F FB46 1D14 0237 A1C2

To claim this, I am signing this object:

@rushtehrani
rushtehrani / main.go
Last active August 20, 2016 18:42
Sample Kubernetes API with Go SDK
// go get -u k8s.io/kubernetes/pkg/api
// go get -u k8s.io/kubernetes/pkg/client/unversioned
package main
import (
"fmt"
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/client/restclient"
@rushtehrani
rushtehrani / main.go
Last active August 14, 2016 22:27
Sample Kubernetes API Call
package main
import (
"encoding/json"
"fmt"
"net/http"
"k8s.io/kubernetes/pkg/api"
)