Found 0 nodes roughly between 2023-01-02 and 2012-01-20 (searched 26.04% of DB).
where any text contains all of "create", "repo"
####
How to upload files using HTML to website?
Welcome to GFG
How to upload files using HTML to website?
####
####
File Upload
GeeksForGeeks
####
use CGI;
$query = new CGI;
$filename = $query->param('file-to-upload');
my ($bytes, $buffer);
open (IMAGE, ">image.gif");
while ($byte = read($filename, $buffer, 1024)) {
print FILE $buffer;
Quote:
}
close (IMAGE);
print "Content-type: text/html\n\n";
print "Done Uploading Image";
exit;
####
fritz@laptop:~/Documents/gitlab1$ ll
total 52
drwxrwxr-x 4 fritz fritz 4096 Jan 1 21:24 ./
drwxr-xr-x 10 fritz fritz 4096 Jan 1 21:24 ../
-rwxr-xr-x 1 fritz fritz 1156 Dec 24 22:43 1.2.solstice.pl*
...
drwxr-xr-x 2 fritz fritz 4096 Dec 15 21:44 conf_files/
drwxrwxr-x 8 fritz fritz 4096 Dec 25 11:07 .git/
-rw-rw-r-- 1 fritz fritz 14 Dec 19 13:58 README.md
fritz@laptop:~/Documents/gitlab1$ git remote -v
origin git@gitlab.com:tallharry66@yahoo.com/trans.git (fetch)
origin git@gitlab.com:tallharry66@yahoo.com/trans.git (push)
fritz@laptop:~/Documents/gitlab1$ git add *.pl
fritz@laptop:~/Documents/gitlab1$ git push -u origin master
ssh: Could not resolve hostname gitlab.com: Name or service not known
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
fritz@laptop:~/Documents/gitlab1$
####
fritz@laptop:~/Documents/gitlab1$ ssh -T git@gitlab.com
Welcome to GitLab, @tallharry66!
fritz@laptop:~/Documents/gitlab1$
####
-T Disable pseudo-terminal allocation.