Skip to content

Instantly share code, notes, and snippets.

View savioxavier's full-sized avatar
Back in action

Skyascii savioxavier

Back in action
View GitHub Profile

Neofetch's Privacy Policy

Transparency

The bot is fully opensource and its source code can be viewed on its GitHub for free. Users may report an issue if they feel something is out of place and needs to be fixed, or if the bot needs something to be added. Like every other opensource project, Neofetch grows by having more and more people contributing better code and constantly improving the project.

The bot does not collect any personal details about you it only stores your unique Discord ID (eg: 614053918867062784) on a MongoDB database. Your Discord ID is an 18 or 19 digit number that's assigned by Discord on account creation and is permanently tied to your account. The only use for this ID is to uniquely identify each Neofetch user and customize their Neofetch configuration (eg: the custom prompts and ascii distros).

To elaborate, these are the only data stored in the MongoDB Atlas database:

  • Your unique Discord ID

Neofetch's Terms of Service

If any user/guild is found to be abusing the Neofetch bot, strict action shall be taken and the user/guild in question shall be reported to Discord, and if possible, the bot removed from the guild or made inaccessible for the user.

Transparency

The bot is fully opensource and its source code can be viewed on its GitHub for free. Users may report an issue if they feel something is out of place and needs to be fixed, or if the bot needs something to be added. Like every other opensource project, Neofetch grows by having more and more people contributing better code and constantly improving the project.

The bot does not collect any personal details about you it only stores your unique Discord ID (eg: 614053918867062784) on a MongoDB database. Your Discord ID is an 18 or 19 digit number that's assigned by Discord on account creation and is permanently tied to your account. T

@savioxavier
savioxavier / esm-package.md
Created October 25, 2022 09:39 — forked from sindresorhus/esm-package.md
Pure ESM package

Pure ESM package

The package that linked you here is now pure ESM. It cannot be require()'d from CommonJS.

This means you have the following choices:

  1. Use ESM yourself. (preferred)
    Use import foo from 'foo' instead of const foo = require('foo') to import the package. You also need to put "type": "module" in your package.json and more. Follow the below guide.
  2. If the package is used in an async context, you could use await import(…) from CommonJS instead of require(…).
  3. Stay on the existing version of the package until you can move to ESM.
#!/usr/bin/env bash
# A custom Linux compatible neofetch/rxfetch script created by Skyascii (https://github.com/savioxavier)
# This is a modified version of the script found in https://github.com/mayTermux/rxfetch-termux
# Based on the original rxfetch script: https://github.com/Mangeshrex/rxfetch
# Additional thanks to mayTermux and Mangeshrex for the inspiration
magenta="\033[1;35m"
green="\033[1;32m"
white="\033[1;37m"
/*
Program to find the password of a saved Wi-Fi network on your device
Compatible with Windows, Mac, and Linux
Developed by Skyascii (github.com/savioxavier)
How to use:
0. Make sure you have Go installed
1. Open a terminal (eg: cmd, PowerShell, bash, zsh etc)
2. Run the program using go run getnetworkpassword.go
3. The password will be printed to the terminal, if it exists and is saved on your device
Not exactly good code, but it works fine for me. You're welcome to improve it.
@savioxavier
savioxavier / get_network_password.py
Created January 6, 2022 16:39
A short script to obtain saved Wi-Fi passwords using Python
"""
Program to find the password of a saved Wi-Fi network on your device
Compatible with Windows, Mac, and Linux
Developed by Skyascii (github.com/savioxavier)
How to use:
0. Make sure you have Python 3 installed
1. Open a terminal (eg: cmd, PowerShell, bash, zsh etc)
2. Run the program using python get_network_password.py (python3 get_network_password.py on Linux)