Sponsored Content
The Lounge What is on Your Mind? Vintage!!! Jimmy Page/Jeff Beck/Eric Clapton-Stairway to Heaven Post 303042846 by Neo on Wednesday 8th of January 2020 11:19:33 AM
Old 01-08-2020
Vintage!!! Jimmy Page/Jeff Beck/Eric Clapton-Stairway to Heaven

You must watch this music video.

Jimmy Page/Jeff Beck/Eric Clapton-Stairway to Heaven

Code:
https://youtu.be/wKlEVtA_TGQ

Long before there was surveillance capitalism, Google, FB and dystopian social media, there was Jimmy Page!

This is how it all "used to be" before mankind was reduced to ones and zeros .....


Vintage!!! Jimmy Page/Jeff Beck/Eric Clapton-Stairway to Heaven-jimmy_pagejpg


Don't miss this! It is "must watch and listen"... .trust me.
This User Gave Thanks to Neo For This Post:
 

5 More Discussions You Might Find Interesting

1. What is on Your Mind?

Jimmy Neutron

For those people wondering who Jimmy Neutron is, he is a boy genius. Jimmy Neutron is also one of the only 3-D cartoon shows on the television. It originally started out as small, two-minute shorts on Nickelodeon. They were pretty old, about ten-years-old. Most of them were about invention... (0 Replies)
Discussion started by: Danny_10
0 Replies

2. Filesystems, Disks and Memory

How to mount and read vintage scsi HDD

I started on another thread and full story can be seen here: https://www.unix.com/security/91428-how-reset-root-password-old-unix-system-v.html But my situation turned to land on this thread now. I have old scsi HDD out of the UHC UNIX System V Rel. 4.0 Version 3.6 box. And need to read... (1 Reply)
Discussion started by: 82026
1 Replies

3. UNIX Desktop Questions & Answers

Vintage unix

Hi, this my be a weird request but I'm wondering if it's possible to instill a vintage unix (like early 1980's) onto a laptop or desktop. If so how I would I go about downloading and installing? I'm mainly wanting to do this as an little porject and some funsies for me. Thanks. (11 Replies)
Discussion started by: dado00
11 Replies

4. What is on Your Mind?

Anyone Running Vintage UNIXen?

Like SunOS, AT&T Unix or anything else of that era... anything running MGR as a graphics subsystem? I'd enjoy hearing from people that may have used MGR back in the day. I have something of a collection of 32bit Suns sun4c, sun4m, sun4d etc..nothing bigger than an 8 way 85Mhz SS1000E though. The... (0 Replies)
Discussion started by: cb88
0 Replies

5. UNIX for Advanced & Expert Users

Extended vs vintage

I am having issues with the MOS (my oracle support) page. I downloaded the new critical patch and oct patchset. for solaris 10 64. However, I noticed that that the Entitlement class read vintage instead of extended in which we bought the service. can anyone tell me the difference? it is safe... (0 Replies)
Discussion started by: goya
0 Replies
CURLOPT_DEFAULT_PROTOCOL(3)				     curl_easy_setopt options				       CURLOPT_DEFAULT_PROTOCOL(3)

NAME
CURLOPT_DEFAULT_PROTOCOL - default protocol to use if the URL is missing a scheme name SYNOPSIS
#include <curl/curl.h> CURLcode curl_easy_setopt(CURL *handle, CURLOPT_DEFAULT_PROTOCOL, char *protocol); DESCRIPTION
This option tells libcurl to use protocol if the URL is missing a scheme name. Use one of these protocol (scheme) names: dict, file, ftp, ftps, gopher, http, https, imap, imaps, ldap, ldaps, pop3, pop3s, rtsp, scp, sftp, smb, smbs, smtp, smtps, telnet, tftp An unknown or unsupported protocol causes error CURLE_UNSUPPORTED_PROTOCOL when libcurl parses a schemeless URL. Parsing happens when curl_easy_perform(3) or curl_multi_perform(3) is called. The protocols supported by libcurl will vary depending on how it was built. Use curl_version_info(3) if you need a list of protocol names supported by the build of libcurl that you are using. This option does not change the default proxy protocol (http). Without this option libcurl would make a guess based on the host, see CURLOPT_URL(3) for details. The application does not have to keep the string around after setting this option. DEFAULT
NULL (make a guess based on the host) PROTOCOLS
All EXAMPLE
curl = curl_easy_init(); if(curl) { /* set a URL without a scheme */ curl_easy_setopt(curl, CURLOPT_URL, "example.com"); /* set the default protocol (scheme) for schemeless URLs */ curl_easy_setopt(curl, CURLOPT_DEFAULT_PROTOCOL, "https"); /* Perform the request */ curl_easy_perform(curl); } AVAILABILITY
Added in 7.45.0 RETURN VALUE
CURLE_OK if the option is supported. CURLE_OUT_OF_MEMORY if there was insufficient heap space. CURLE_UNKNOWN_OPTION if the option is not supported. SEE ALSO
CURLOPT_URL(3), libcurl 7.54.0 December 21, 2016 CURLOPT_DEFAULT_PROTOCOL(3)
All times are GMT -4. The time now is 10:47 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy