$ git commit --amend --author="Author Name <[email protected]>"
or
$ git commit --amend --reset-author
// Copyright 2016 Kranz. All rights reserved. | |
// Use of this source code is governed by a MIT-style | |
// license that can be found in the LICENSE file. | |
// | |
// Execute: | |
// | |
// $ ./go run main.go -target http://www.google.com | |
// | |
package main |
// Copyright 2016 Kranz. All rights reserved. | |
// Use of this source code is governed by a MIT-style | |
// license that can be found in the LICENSE file. | |
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"github.com/Pallinder/go-randomdata" | |
"io/ioutil" |
package main | |
import ( | |
"time" | |
"math/rand" | |
) | |
func init() { | |
rand.Seed(time.Now().UTC().UnixNano()) | |
} |
// Copyright 2016 Kranz. All rights reserved. | |
// Use of this source code is governed by a MIT-style | |
// license that can be found in the LICENSE file. | |
package main | |
import ( | |
"fmt" | |
"reflect" | |
) |
// Copyright 2016 Kranz. All rights reserved. | |
// Use of this source code is governed by a MIT-style | |
// license that can be found in the LICENSE file. | |
package main | |
import ( | |
"net/http" | |
"fmt" | |
"runtime" | |
"log" |
// Copyright 2016 rodkranz. All rights reserved. | |
// Use of this source code is governed by a MIT-style | |
// license that can be found in the LICENSE file. | |
package main | |
import ( | |
"encoding/json" | |
"errors" | |
"fmt" | |
"io/ioutil" |
# Maintainer: Ashley Whetter <(firstname) @ awhetter.co.uk> | |
# Contributor: Eothred <[email protected]> | |
pkgname=spotify | |
pkgver=1.0.45.186 | |
_anotherpkgver=.g3b5036d6 | |
pkgrel=1 | |
pkgdesc="A proprietary music streaming service" | |
arch=('x86_64' 'i686') | |
license=('custom:"Copyright (c) 2006-2010 Spotify Ltd"') |
// Copyright 2016 Kranz. All rights reserved. | |
// Use of this source code is governed by a MIT-style | |
// license that can be found in the LICENSE file. | |
package main | |
import ( | |
"fmt" | |
"net/http" | |
"os/exec" | |
"log" |
// Copyright 2017 Kranz. All rights reserved. | |
// Use of this source code is governed by a MIT-style | |
// license that can be found in the LICENSE file. | |
package main | |
import ( | |
"os/exec" | |
"log" | |
"os" | |
"time" |