3 resultados para path creation

em University of Southampton, United Kingdom


Relevância:

20.00% 20.00%

Publicador:

Resumo:

Short videos and Guides on how to print to various devices at WSA. Why 300dpi is important for printing, why PDF's are the defacto standard for printing and the how and where to get your files printed.

Relevância:

20.00% 20.00%

Publicador:

Resumo:

Instead of using the technology for the mere recording and dissemination of lectures and other instructor-centred information, the project reported on in this article focused on enabling students to create their own podcasts for distribution to their peers. The article describes how engaging in the podcasting exercise promoted collaborative knowledge building among the student-producers, as evidenced through focus-group interviewing and an analysis of the products of their shared dialogue and reflection.

Relevância:

20.00% 20.00%

Publicador:

Resumo:

This is a batch file written to help students on ECS' Programming 1 course (COMP1202) using iSolutions machines which have the JDK, but do not add it to the PATH variable, making compilation from the command line difficult. It attempts to find the JDK directory and add it to the Windows PATH. The code is as follows: @SET JAVA_HOME=C:\Program Files\Java @FOR /F %%G IN ('DIR /B "%JAVA_HOME%\JDK*"') DO @SET JDK_HOME=%JAVA_HOME%\%%G @SET PATH=%JDK_HOME%\bin;%PATH% @javac -version @echo. @echo %JDK_HOME%\bin successfully added to Windows PATH @echo. @echo Now type 'javac'. @echo. @echo. @echo. @CMD