Linux: rdesktop

redesktop

/usr/local/bin/rdesktop -d $domain -u $username -g 1270x972 -z -r sound:local -P -x l $hostname

Params

-r sound:local sound:remote

-d $domain

-u $username

-g 1270x972

 

-P

-x

l $hostname

Tags

Mint: Setting up Sharing

Here's some steps to work with shares in Linux Mint

Create Shares on Server

m = /home/uc/drives/m
o = /home/uc/drives/o
cam = /home/uc/drives/cam

 

Samba Create Share

sudo touch /etc/libuser.conf ( required for samba config applet
sudo system-config-samba

 

Selenium: WebDriver Wait

ImplicitWait

driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

FluentWait

  • creates a method that polls for a successful findElement() response every 5s - for 30s
  • wait.until(loop until no exception/false returned){
    • create an 'on-the-fly' method
      • create a FluentWait wait & set its properties
      • try findElement(By) while response is NoSuchElementFound or null
        • once true, return WebElement

requires import:

Tags
Subscribe to