You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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
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
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
Dionysis asked me whether I could help him with a simple python script he was working on.
He claimed he was trying to get the plain text from a ciphertext,
but he was getting a weird runtime error message.
He gave me a gist with the script
and wnated to know if I could see something he was missing.
He suggested I run the script and see the message myself.
In general, SSH tunneling creates a secure connection between a local computer and a remote machine through which services can be relayed (the important part). Because the connection is encrypted, SSH tunneling is useful for transmitting information that uses an unencrypted protocol, such as IMAP, VNC, or IRC (the not-so-important part).
A case where I found this to be a useful technique was when I had a remote machine running a web server but because of various reasons (e.g. security concerns) there was no public open port available (that I could use).
If such a port existed (e.g. 9876), I could simply access the web server from my favorite web browser just by providing the appropriate URL address (e.g. http://example.com:9876).
But fortunately enough, I had SSH access to that remote machine.
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
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
Lately I've been thinking about using my old nexus 7 (from 2012) as a second PC monitor.
I've read articles regarding android apps for this purpose as well as comments from Google Play.
Some examples can be found here
and here.
Bottom line, you have to pay and most likely you will end up struggling with (huge?) lag and/or compatibility issues.
I tried splashtop but it felt lacking in some way, it was just mirroring my main monitor and
it was free just for the first 5 minutes.
Assume the following code snippet of test.cpp. Our goal was to read integers from stdin
and map them to the order in which they first appeared in our input. Keep in mind this
is just a test and probably there are better ways to implement the intended behavior of this
cut-down version.
If we use g++ to compile our code we get the following output. This was not
the output we were expecting.