Difference between revisions of "Digital Portfolio"

From Coder Merlin
(Created page with "A digital portfolio is an authentic, intentional, organic multimedia exhibit of student growth, self-reflection, talent, and achievement - both for oneself and for others (teachers, parents, guardians, colleges, potential employers, etc.)")
 
m (Editorial review and minor corrections)
 
(14 intermediate revisions by 4 users not shown)
Line 1: Line 1:
A digital portfolio is an authentic, intentional, organic multimedia exhibit of student growth, self-reflection, talent, and achievement - both for oneself and for others (teachers, parents, guardians, colleges, potential employers, etc.)
A digital portfolio is an authentic, intentional, organic multimedia exhibit of student growth, self-reflection, talent, and achievement—both for oneself and for others (teachers, parents, guardians, colleges, potential employers, etc.).
 
== Create Your Digital Portfolio on GitHub ==
# To get started, be sure to set up your SSH key as described in [[GitHub#Token_Allocation|Token Allocation]].
# Create a new repository on GitHub named {{Placeholder|username|background=white}}.github.io, replacing {{Placeholder|username|background=white}} with your GitHub username. Do not add any files to the repository.
== Create Your Digital Portfolio on the Server ==
1. Create a new directory called '''Digital Portfolio''' in your home directory.
{{ConsoleLine|jane-williams@codermerlin:~$|cd}}
{{ConsoleLine|jane-williams@codermerlin:~$|mkdir "Digital Portfolio"}}
2. Create a link to the new directory from your '''www''' directory, which is the only directory from which your web server will serve files.
{{ConsoleLine|jane-williams@codermerlin:~$|cd ~/www}}
{{ConsoleLine|jane-williams@codermerlin:~/www$|ln -s ~/Digital\ Portfolio "Digital Portfolio"}}
3. Create a file to set the permissions of both directories to allow the web server '''read''' and '''traverse''' access.
{{ConsoleLine|jane-williams@codermerlin:~/Digital Portfolio$|emacs setPermissions.sh}}
Into this file, add the following:
<syntaxhighlight lang="bash">
#!/bin/bash
 
# Allow this and descendant directories to be traversed by everyone, ignoring hidden directories
find -L "$PWD" -not -path "*/.*" -type d -exec chmod a+X {} \;
 
# Allow everyone read access to all files in this hierarchy with an extension of
# .html, .png, or .jpg
find -L "$PWD" -not -path "*/.*" -type f \( -name "*.html" -o -name "*.png" -o -name "*.jpg" \) -exec chmod a+r {} \;
</syntaxhighlight>
Save the file and exit emacs.
 
Set the permissions of this file:
{{ConsoleLine|jane-williams@codermerlin:~/Digital Portfolio$|chmod u+x setPermissions.sh}}
 
 
4. Any time you add a new file, execute the script:
{{ConsoleLine|jane-williams@codermerlin:~/Digital Portfolio$|./setPermissions.sh}}
5. Create an index.html file.
{{ConsoleLine|jane-williams@codermerlin:~/Digital Portfolio$|emacs index.html}}
Into this file, add the following:
<syntaxhighlight lang="html">
    <html>
        <body>
            <p>Hello, world!</p>
        </body>
    </html>
</syntaxhighlight>
Save the file and exit emacs.
 
 
6. Create a .gitignore file.
{{ConsoleLine|jane-williams@codermerlin:~/Digital Portfolio$|emacs .gitignore}}
Into this file, add the following:
<syntaxhighlight lang="cfg">
\#*\#
*~
*.sh
</syntaxhighlight>
Save the file and exit emacs.
 
7. Add and commit the files.
{{ConsoleLine|jane-williams@codermerlin:~/Digital Portfolio$|git init}}
{{ConsoleLine|jane-williams@codermerlin:~/Digital Portfolio$|git add .gitignore index.html}}
{{ConsoleLine|jane-williams@codermerlin:~/Digital Portfolio$|git commit -m "First commit"}}
 
8. Add the GitHub remote location as an origin for the local repository.
{{ConsoleLine|jane-williams@codermerlin:~/Digital Portfolio$|git remote add origin git@github.com:{{Placeholder|username|background=black}}/{{Placeholder|username|background=black}}.github.io.git}}
 
9. Finally, publish the repository.
{{ConsoleLine|jane-williams@codermerlin:~/Digital Portfolio$|git push -u origin master}}
 
10. Verify that your portfolio has been published by using a browser and visiting https://{{Placeholder|username|background=white}}.github.io.

Latest revision as of 17:10, 7 August 2023

Within these castle walls be forged Mavens of Computer Science ...
— Merlin, The Coder

A digital portfolio is an authentic, intentional, organic multimedia exhibit of student growth, self-reflection, talent, and achievement—both for oneself and for others (teachers, parents, guardians, colleges, potential employers, etc.).

Create Your Digital Portfolio on GitHub[edit]

  1. To get started, be sure to set up your SSH key as described in Token Allocation.
  2. Create a new repository on GitHub named  <username> .github.io, replacing  <username>  with your GitHub username. Do not add any files to the repository.

Create Your Digital Portfolio on the Server[edit]

1. Create a new directory called Digital Portfolio in your home directory.

jane-williams@codermerlin:~$ cd

jane-williams@codermerlin:~$ mkdir "Digital Portfolio"

2. Create a link to the new directory from your www directory, which is the only directory from which your web server will serve files.

jane-williams@codermerlin:~$ cd ~/www

jane-williams@codermerlin:~/www$ ln -s ~/Digital\ Portfolio "Digital Portfolio"

3. Create a file to set the permissions of both directories to allow the web server read and traverse access.

jane-williams@codermerlin:~/Digital Portfolio$ emacs setPermissions.sh

Into this file, add the following:

#!/bin/bash

# Allow this and descendant directories to be traversed by everyone, ignoring hidden directories
find -L "$PWD" -not -path "*/.*" -type d -exec chmod a+X {} \;

# Allow everyone read access to all files in this hierarchy with an extension of
# .html, .png, or .jpg
find -L "$PWD" -not -path "*/.*" -type f \( -name "*.html" -o -name "*.png" -o -name "*.jpg" \) -exec chmod a+r {} \;

Save the file and exit emacs.

Set the permissions of this file:

jane-williams@codermerlin:~/Digital Portfolio$ chmod u+x setPermissions.sh


4. Any time you add a new file, execute the script:

jane-williams@codermerlin:~/Digital Portfolio$ ./setPermissions.sh

5. Create an index.html file.

jane-williams@codermerlin:~/Digital Portfolio$ emacs index.html

Into this file, add the following:

    <html>
        <body>
            <p>Hello, world!</p>
        </body>
    </html>

Save the file and exit emacs.


6. Create a .gitignore file.

jane-williams@codermerlin:~/Digital Portfolio$ emacs .gitignore

Into this file, add the following:

\#*\#
*~
*.sh

Save the file and exit emacs.

7. Add and commit the files.

jane-williams@codermerlin:~/Digital Portfolio$ git init

jane-williams@codermerlin:~/Digital Portfolio$ git add .gitignore index.html

jane-williams@codermerlin:~/Digital Portfolio$ git commit -m "First commit"

8. Add the GitHub remote location as an origin for the local repository.

jane-williams@codermerlin:~/Digital Portfolio$ git remote add origin git@github.com: <username> / <username> .github.io.git

9. Finally, publish the repository.

jane-williams@codermerlin:~/Digital Portfolio$ git push -u origin master

10. Verify that your portfolio has been published by using a browser and visiting https:// <username> .github.io.