- Lavoreremo su un'unico progetto? - Assolutamente no, il numero e il tipo di progetti non sono decisi da nessuno a priori.
- Come si decidono i progetti su cui si lavorerà nel corso della giornata? - All'inizio della giornata chi vuole ha a disposizione 3 minuti di tempo per presentare una propria idea/progetto sul quale lavorare durante la giornata. Alla fine delle presentazioni si fanno i gruppi, ognuno può decidere di aggregarsi ad un progetto presentato oppure lavorare singolarmente su un proprio progetto, non è obbligatorio lavorare in coppia/gruppo anche se farlo è decisamente più divertente che farlo da soli.
- Chi propone di lavorare su un progetto deve essere un'esperto della materia? - Non obbligatoriamente, è lecito chiedere aiuto per una cosa che ci piacerebbe realizzare ma per la quale non abbiamo le competenze necessarie, vi chiedo solo di esplicitarlo quando fate la proposta in modo che le persone ne siano consapevoli.
- Dobbiamo portare il nostro portatile? - Noi no
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
CoreProperties(234): | |
ServerName (String) | |
ServerNetBiosName (String) | |
ServerFqdn (String) | |
ServerAddressesToConnect (IUnknown) | |
UserSpecifiedServerName (String) | |
UserName (String) | |
Domain (String) | |
Password (SecureString) | |
AlternateShell (String) |
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
#Thanks to - https://github.com/damienvanrobaeys/Build-PS1-Systray-Tool | |
# - https://www.systanddeploy.com/2018/12/create-your-own-powershell.html | |
# - https://stackoverflow.com/questions/54649456/powershell-notifyicon-context-menu | |
# - https://adamtheautomator.com/powershell-async/ | |
[System.Reflection.Assembly]::LoadWithPartialName('System.Windows.Forms') | out-null | |
[System.Reflection.Assembly]::LoadWithPartialName('presentationframework') | out-null |
Vsocks are a means of providing socket communication (either stream or datagram) directly between VMs and their host operating system. The host and each VM have a 32 bit CID (Context IDentifier) and may connect or bind to a 32 bit port number. Ports < 1024 are privileged ports.
- Vsock communication between VMs does not seem to work.
- Only one vsock device per VM is supported.
MyNim is a tool to install and manage various versions of Nim and related tools.
Since it requires a bash and symlinks, it works fine on Unix derived systems (e.g. MacOSX or Linux) but not on Windows.
Just download the mynim
file, make it executable and put it somewhere on your $PATH.
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
import os | |
folderPath = 'InsertDirectoryPathHere/src/' | |
# mainFile is the file containing the main class. | |
mainFile = 'ProjectMainClass.java' | |
# exclude these files from the project. | |
excluded = ['State.java', 'Frame.java', 'Label.java'] | |
def printSafe(s): | |
s = str(s).encode('ascii', 'ignore') |