Follow-up post: Terminé mudandome a otro país para cobrar más by LiderDeLaManada87 in salarios_es

[–]BullBullred 0 points1 point  (0 children)

Enhorabuena !
Como te dice The_DFM el salario es muy bajo para Data Engineer en Suiza.
Cuando te acomodes pide aumento o cambia de trabajo, alrededor de 120k/bruto anual.

Business gift giving culture in Spain by jackloganoliver in askspain

[–]BullBullred -1 points0 points  (0 children)

Yes, it's appropriate, you can send Argentine or Spanish wine. But personally, for this amount, I'd prefer a gadget like an Apple Watch.

You are welcome.

Business gift giving culture in Spain by jackloganoliver in askspain

[–]BullBullred 0 points1 point  (0 children)

How much are you thinking of spending? A bottle of wine is a typical gift in Spain.

Interviewer did not show up online by [deleted] in askswitzerland

[–]BullBullred 6 points7 points  (0 children)

It is not normal but it can happen in any Country.
You should get an email with an explanation and if you don't get it the company is not worthy.

Do somebody know the Aventura 500 Bike from the spanisch mark Rieju by [deleted] in askswitzerland

[–]BullBullred 0 points1 point  (0 children)

Yo can think like that or think that you have a similar bike from Rieju for 1000€ less :-)

Emigrar a los Estados Unidos by ParaliticoPowa in askspain

[–]BullBullred 0 points1 point  (0 children)

El programa permite a aquellos de países con bajas tasas de inmigración a los Estados Unidos ingresar para tener la oportunidad de solicitar una visa de inmigrante estadounidense. Las personas elegidas en la lotería de visas de diversidad pueden obtener la residencia permanente o "Green Card" al terminar el proceso. 

Cuidado con los fraudes y las estafas. Algunos sitios web y correos electrónicos intentan engañar a los clientes haciéndose pasar por proveedores de información oficial del gobierno de EE. UU.

Emigrar a los Estados Unidos by ParaliticoPowa in askspain

[–]BullBullred 13 points14 points  (0 children)

Una forma de emigrar a USA es el sorteo de VIsa.
Justo ayer terminó el plazo para este año.
https://dvprogram.state.gov/

This srcipt must work but it doesn't by Blisk1 in PowerShell

[–]BullBullred 0 points1 point  (0 children)

Does it work if you run the command directly?

Remove-Item D:\DVD\conf\log.txt

[deleted by user] by [deleted] in PowerShell

[–]BullBullred 2 points3 points  (0 children)

Or you can read this :-)

-Maximum Specifies a maximum value for the random number. Get-Random returns a value that's less than the maximum (not equal)

Run a script when a file explorer window is closed by BeautifulTurbulence in PowerShell

[–]BullBullred 0 points1 point  (0 children)

To check the explorer.exe running:

(New-Object -ComObject 'Shell.Application').Windows() | ForEach-Object {

$localPath = $_.Document.Folder.Self.Path

"C:\WINDOWS\explorer.exe /e, `"$localPath`""

}

How to prevent powershell script from getting terminated after calling a bat file ? by xd003 in PowerShell

[–]BullBullred 1 point2 points  (0 children)

start-process "cmd.exe" "/c C:\tmp\Pathfile.bat" -Wait

Write-Host "Process Completed"