Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
github.com/fblecha/fuel
Fuel is a static website creator -- it takes in markdown files and produces a static html site you can host from github pages, Amazon S3, or any web host. Several tools already support this, notably Jekyl and Hugo.
Fuel also has the ability to take in JSON-enhanced markdown (I should totally trademark that) and:
Given a normal markdown file or (as in the example below) a JSON-enahanced markdown file:
{
"breed": "Labrador Retriever"
"colors": [
"black",
"yellow",
"chocolate"
"]
}
\~~~
# Breed: Labrador Retriever
The Labrador Retriever, also known as simply Labrador or Lab, is one of several
kinds of retrievers, a type of [gun dog](https://en.wikipedia.org/wiki/Gun_dog).
Labradors are athletic, playful, and the most popular breed of dog by registered
ownership in Australia, Canada, New Zealand,[4] the United Kingdom,[5] and
the United States (since 1991).[6]
[via Wikipedia](https://en.wikipedia.org/wiki/Labrador_Retriever)
fuel will convert it into a HTML file.
Type the following commands into your Terminal.
$ brew install go
$ go get github.com/fblecha/fuel
$ cd $GOPATH/src/github.com/fblecha/fuel
This will install fuel into your $GOPATH/bin directory.
$ go install
Fuel is a command-line application, so you'll run it via a terminal window.
If you want to create a blog devoted to dogs, then you would do the following steps:
# to create a new blog
$ fuel my_new_dog_blog
$ cd my_new_dog_blog
# create some markdown files under my_new_dog_blog/content
# create some layout.html files under my_new_dog_blog/views
# optionally put any css/images/etc you need under my_new_dog_blog/style
$ fuel run
# load my_new_dog_blog/public in a web server
Fuel does the following:
Insert
see the Todo file
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.