
Security News
Safari 18.4 Ships 3 New JavaScript Features from the TC39 Pipeline
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.
github.com/shearertzach/static-site-generator
Create your own custom Static Site Generator (like Jekyll or Hugo) by cloning and fulfilling the requirements in this repo!
📂 makesite
├── README.md
├── first-post.txt
├── latest-post.txt
├── makesite.go
└── template.tmpl
makesite
.$ git clone git@github.com:Tech-at-DU/makesite.git
$ cd makesite
$ git remote rm origin
$ git remote add origin git@github.com:YOUR_GITHUB_USERNAME/makesite.git
For each task:
Complete the MVP as If you finish early, move on to the stretch challenges.
If you get stuck on any step, be sure to print the output to stdout
!
4
of README.md
. Change this line to the following, replacing YOUR_USERNAME
and YOUR_REPONAME
with your GitHub username and repository name respectively.first-post.txt
file.template.tmpl
) to display the contents of first-post.txt
.first-post.txt
using Go Templates and print it to stdout.first-post.html
../makesite
. Double-click the first-post.html
file that appears in your directory after running the command to open the generated page in your browser.file
. This flag represents the name of any .txt
file in the same directory as your program. Run ./makesite --file=latest-post.txt
to test.save
function to use the input filename to generate a new HTML file. For example, if the input file is named latest-post.txt
, the generated HTML file should be named latest-post.html
..txt
files for testing in the same directory as your project.makesite
command named dir
..txt
files in the given directory. Print them to stdout
..txt
files you found, generate an HTML page for each../makesite --dir=.
to test in your local directory..txt
files in the given directory, as well as it's subdirectories. Print them to stdout
to make sure. Generate an HTML page for each.Success! Generated 5 pages.
The Success!
substring must be bold green, and the count (5
) must be bold.Success! Generated 5 pages (18.2kB total).
Calculate the total by summing the size of each HTML file, then converting the total to kilobytes. Always return one significant digit after the decimal point.Success! Generated 5 pages (18.2kB total) in 3.25 seconds.
Always return two significant digits after the decimal point..txt
files. Are there any ways to make your code faster?.md
) files and transform them into HTML. #
through ######
should translate to <h1>
through <h6>
elements.I will use the __________________________________ library. The documentation is located at __________________________________. My goal is to use it to __________________________________.
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
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.
Research
Security News
The Socket Research Team investigates a malicious Python package that enables automated credit card fraud on WooCommerce stores by abusing real checkout and payment flows.
Security News
Python has adopted a standardized lock file format to improve reproducibility, security, and tool interoperability across the packaging ecosystem.