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:
#!/bin/bash | |
# Run this script if you want to install essential k8s productivity tools. | |
# This script has been tested on both macOS and Linux | |
# | |
# Please ensure you have done the following before executing this script | |
# i) Make the script executable: chmod +x <script-name>.sh | |
# ii) Run the script as root. sudo sh <script-name>.sh OR sudo ./<script-name>.sh | |
# | |
# Suggestions for improvements are always welcome! |
I hereby claim:
To claim this, I am signing this object:
package main | |
import ( | |
"bufio" | |
"github.com/ajstarks/svgo" | |
"os" | |
) | |
func main() { | |
width := 1920 |
class MovieController { | |
@RequestMapping(value = "/", method = RequestMethod.GET) | |
public String searchMovie(ModelMap model) { | |
String movieName="" | |
model.addAttribute("movieName", ""); | |
return "search"; | |
} | |