Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am tariq1890 on github.
  • I am tariq1890 (https://keybase.io/tariq1890) on keybase.
  • I have a public key ASDVgph9_f9uMcfQCh28ch71Bq_mOtZhQbpdFj5o1swV9wo

To claim this, I am signing this object:

@tariq1890
tariq1890 / kubernetes.md
Last active September 11, 2022 19:24 — forked from carlessanagustin/kubernetes.md
Kubernetes tutorial steps

1. Create cluster

Cluster up and running

minikube version
minikube start
kubectl version
@tariq1890
tariq1890 / lgrad.go
Created August 27, 2017 01:14
Create a Linear Gradient with SVGO
package main
import (
"bufio"
"github.com/ajstarks/svgo"
"os"
)
func main() {
width := 1920
@tariq1890
tariq1890 / MovieController.java
Last active February 17, 2016 06:16
Vamsi Gist
class MovieController {
@RequestMapping(value = "/", method = RequestMethod.GET)
public String searchMovie(ModelMap model) {
String movieName=""
model.addAttribute("movieName", "");
return "search";
}