File: Download Winscp para macfugu mac scp for mac filezilla scp mac winscp for mac 2016 sftp for mac scp client for mac cyberduck scp filezilla for mac 2 May 2017 Transmit is an FTP client for Mac OS X and Mac OS Classic (which is unsupported). It runs on any operating system with Java support (Mac OS X, Windows, Linux, *BSD "Dual pane file manager and SFTP/FTP client for Mac OS X ForkLift is designed to be the fastest, most powerful file 25 Oct 2013 I was looking for a usable alternative for my beloved WinSCP on Mac OSX and found an awesome tool called "Cyberduck". It offers: FTP (File Descubre la mejor alternativa a WinSCP en Softonic. Compara y descarga mas de 13 programas como WinSCP: FileZilla, Cyberduck, Transmit y mas. As we all know Apple software is the best woldwide
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
#!/bin/bash | |
guid=`hostname|cut -f2 -d-|cut -f1 -d.` | |
yum -y install bind bind-utils | |
systemctl enable named | |
systemctl stop named | |
### firewalld was being a bit problematic | |
### Since we turn it off later anyway, I've skipped this step. | |
#firewall-cmd --permanent --zone=public --add-service=dns |
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
<VirtualHost *:80> | |
ServerAdmin {USER}@cslavoie.com | |
ServerName {DOMAIN} | |
ServerAlias www.{DOMAIN} | |
ServerAlias {USER}.localhost | |
ServerAlias {USER}.static.cslavoie.com | |
DocumentRoot {DOC_ROOT} | |
<Directory {DOC_ROOT}> |
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
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> /* set the CSS */ | |
.node circle { | |
fill: #fff; | |
stroke: steelblue; | |
stroke-width: 3px; | |
} |
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
. .\NewXMLDocument.ps1 | |
$rdp_domainname = "MicrosoftAccount" | |
$rdp_username = "fred" | |
$ssh_username = "fred" | |
$vnc_username = "fred" | |
$rdp_password = "changeme!" | |
$ssh_password = "changeme!" | |
$vnc_password = "changeme!" |
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
$remoteAddr = bash.exe -c "ifconfig eth0 | grep 'inet '" | |
$found = $remoteAddr -match '\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}'; | |
if( $found ){ | |
$remoteAddr = $matches[0]; | |
echo $remoteAddr; | |
} else{ | |
echo "The Script Exited, the ip address of WSL 2 cannot be found"; | |
exit; | |
} |
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
conv_brackets_uscore() { | |
echo $1 | sed -E 's/[][{}()]/_/g' | |
return 0 | |
} | |
conv_path_win_linux() { | |
local _path | |
local _del_trailing_slash_path |
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
#!/usr/bin/env bash | |
# | |
# Usage: dev_signed_cert.sh HOSTNAME | |
# | |
# Creates a CA cert and then generates an SSL certificate signed by that CA for the | |
# given hostname. | |
# | |
# After running this, add the generated dev_cert_ca.cert.pem to the trusted root | |
# authorities in your browser / client system. | |
# |
Prevent creation of vmmem files in VMware (Windows)
VMWare creates .vmem
files to back the guest RAM. On the host this causes disk thrashing especially during powering on and off the guest.
Add the following lines to the .vmx
file to prevent creation of .vmem
files. This will reduce disk IO and VM performance will improve especially on non-SSD disks.
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
#!/usr/bin/env python | |
import socket | |
import binascii | |
import sys | |
def main(): | |
MCAST_GRP = sys.argv[1] | |
MCAST_PORT = int(sys.argv[2]) |