echo "# ter" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/devded/ter.git
git push -u origin main
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async function check(url){ | |
let cors = "https://cors-anywhere.herokuapp.com/"; //This API enables cross-origin requests to anywhere. | |
let checkUrl= cors+url; //Merge cors and checking website url to avoid the cross-origin requests error | |
let response = await fetch(checkUrl); //JavaScript can send network requests to the server | |
if (response.ok) { | |
alert("Website Support On Your Network"); // if HTTP-status is 200-299 | |
} else { | |
alert("Website Not Support On Your Network"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Copy From TextFIeld</title> | |
</head> | |
<body> | |
<input id="name" type="text" /> | |
<button id="copy">Copy</button> | |
</body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Note: I don't know where does this thread belongs. If I'm on the incorrect section, move it to the correct one. | |
Many people are literally just selling this method and I feel like sharing this out so that you don't have to pay because the seller just don't do a minute of work to get you the drive. | |
So moving straight towards the method: | |
Step I: | |
Go to this link: https://td.fastio.me/ (mirrors to be left at the last) | |
Step II: | |
Type your desired drive's name at the first field and your Gmail on the bottom field. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Chrome, Safari, Edge, Opera */ | |
input::-webkit-outer-spin-button, | |
input::-webkit-inner-spin-button { | |
-webkit-appearance: none; | |
margin: 0; | |
} | |
/* Firefox */ | |
input[type=number] { | |
-moz-appearance: textfield; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git init Initialize a local Git repository | |
git clone ssh://[email protected]/[username]/[repository-name].git Create a local copy of a remote repository | |
git status Check status | |
git add [file-name.txt] Add a file to the staging area | |
git add -A Add all new and changed files to the staging area | |
git commit -m "[commit message]" Commit changes | |
git rm -r [file-name.txt] Remove a file (or folder) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Mail Template | |
https://github.com/leemunroe/responsive-html-email-template/blob/master/email.html | |
2. Convert CSS to Inline CSS | |
https://templates.mailchimp.com/resources/inline-css/ | |
3. Remove <html> <head> & </body> tag | |
4. Convert to one line | |
https://www.textfixer.com/html/compress-html-compression.php |
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
OlderNewer