Skip to content

Instantly share code, notes, and snippets.

View nanaelie's full-sized avatar
💫
Creating something new ...

Nana Elie nanaelie

💫
Creating something new ...
View GitHub Profile
@nanaelie
nanaelie / List of API endpoints & objects
Last active September 13, 2025 16:52 — forked from yassineaboukir/List of API endpoints & objects
A list of 3203 common API endpoints and objects designed for fuzzing.
0
00
01
02
03
1
1.0
10
100
1000
@nanaelie
nanaelie / EmbeddedGist.js
Created May 26, 2025 05:01 — forked from aVolpe/EmbeddedGist.js
EmbeddedGist allows a gist to be embedded in a React application
import React, { Component } from 'react';
class EmbeddedGist extends Component {
constructor(props) {
super(props);
this.gist = props.gist;
this.file = props.file;
this.stylesheetAdded = false;
this.state = {
import mailgrab as mgb # or from mailgrab import *
# Validate the path to a file containing emails
path = mgb.validate_path("file.txt")
# Read file content
with open(path, "r") as f:
content = f.read()
# Extract emails from content
@nanaelie
nanaelie / tranchage.py
Created May 17, 2025 11:52
Tranchage
```python
a = "Hello World!"
print(a[::-1])
"""
!dlroW olleH
"""
```
def great(name: str) -> str:
return f"Hello {name}!"