Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
This is a Jekyll theme for creating a simple and customizable resume. This could be used to digitally present your resume online and have it be accessible to anyone who is interested in it.
bundle exec jekyll serve
.The resume loads data from the _data
files. In this folder, you will find .yml files. This is where you will be adding entries to display on your resume.
All entries for each section begin with a -
. Each line then follows a key:value
format. Please see the existing .yml files for examples.
Section layouts can be found in the _includes
folder. Unless you know what you are doing, you usually do not want to modify these files.
Typically, a section layout will look something like this.
<div class="resume-content">
{% if site.data.awards.size > 0 %}
<h2>Awards</h2>
<hr>
{% for award in site.data.awards %}
<div class="entry">
<h4 class="title">{{ award.title }}</h4>
<h4 class="date">{{ award.time }}</h4>
<ul>
<li>{{ award.description }}</li>
</ul>
</div>
{% endfor %}
{% endif %}
</div>
If you need a resume section which has not been created yet. Follow these steps.
.yml
file for your data in the _data
folder..html
file in the _includes
folder.layouts
.You can edit the CSS in theme.css.
FAQs
Unknown package
We found that plain_resume demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.