The Hackingfordevs blog and its content is owned and maintaned by Tomi Jerenko. The blog posts are licensed under CC BY 4.0 license. The code in the blog posts is licensed under MIT License.

Citing Articles

When you use my work in a written piece of work, for example bachelor’s thesis, master’s thesis, scientific article or others, please cite as shown in the example (you can also use other citing styles):


Cyber security is something that keeps the bad guys away [1]. Without it we're doomed ...

[1] Jerenko, Tomi. “What Is Cyber Security?” Hackingfordevs, 22 Mar. 2021, hackingfordevs.com/What-is-cyber-security.

Using Code

When you use my code in your software, please include MIT License as a comment, as shown in the following main.go example:

/*
    MIT License

    Copyright (c) 2021 Tomi Jerenko tomijerenko.com

    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    furnished to do so, subject to the following conditions:

    The above copyright notice and this permission notice shall be included in all
    copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    SOFTWARE.
*/

func IsSecure(security bool) bool {
    if cyber := true; cyber && security {
        return true
    }
    return false
}

func main() {
    security := true
    fmt.Printf("Is cyber security secure? %t\n", isSecure(security))
}

...

Attribution

The Hackingfordevs blog runs thanks to these open-source projects:

  • Jekyll static site generator, made by Tom Preston-Werner and Jekyll contributors. MIT License.

  • Minima template for Jekyll, made by Parker Moore and the minima contributors. MIT License.

  • Jekyll-seo-tag seo optimization plugin for Jekyll, made by Ben Balter and the jekyll-seo-tag contributors MIT License.