Reddit has imposed paid API limits and that compelled developers to shutodwn their clients.
But There is a way you can Keep using your favourite reddit Client.
This file contains hidden or 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
<# | |
.SYNOPSIS | |
Configure Internet Explorer SecurityZone Settings. | |
.DESCRIPTION | |
Note: Configration is not applied immediately, Need to restart related services to apply zone settings. | |
.LINK | |
http://support.microsoft.com/kb/184456/en-us |
This file contains hidden or 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
$is_64bit = [IntPtr]::size -eq 8 | |
$ssh_install_dir = "$env:ProgramFiles\OpenSSH" | |
$ssh_installer = "$env:TEMP\setupssh-6.4p1-1.exe" | |
$ssh_download_url = "http://www.mls-software.com/files/setupssh-6.4p1-1.exe" | |
if ($is_64bit) { | |
$ssh_installer = "$env:TEMP\setupssh-6.4p1-1(x64).exe" | |
$ssh_download_url = "http://www.mls-software.com/files/setupssh-6.4p1-1(x64).exe" | |
} |