Creating digital accounts
During fabcademy you will be evaluated through your documentation which explains the world and the remote mentor or Neil what you have done. There will be times when your projects will be recommended by your remote mentor to higher faculty or Neil. They will see your website or the files you created. For these reason you need to learn to effectively express your work in a document. They should be online and freely available to anyone, they are opensource. And hopefully it can help someone in need. You will be required to equip yourself with tools that let your projects be useful to others. These tools are online storage and your website.
The following accounts were created
During fabcademy you will be evaluated through your documentation which explains the world and the remote mentor or Neil what you have done. There will be times when your projects will be recommended by your remote mentor to higher faculty or Neil. They will see your website or the files you created. For these reason you need to learn to effectively express your work in a document. They should be online and freely available to anyone, they are opensource. And hopefully it can help someone in need. You will be required to equip yourself with tools that let your projects be useful to others. These tools are online storage and your website.
The following accounts were created
- Fablabs.io account
- git.fabcloud.io account
- Github account
- Dropbox account
- Sketchfab.com account
In ubuntu:
Terminal
#installing git
sudo apt-get install git # configuring git. These are the information you give while uploading an update.
#installing git
sudo apt-get install git # configuring git. These are the information you give while uploading an update.
git config --global user.name "YOUR NAME"
git config --global user.email "YOUR EMAIL ADDRESS"
You need to create a githubaccount or if you already have then you can
continue to create your gthub.io page. I already had a github account.
My username is puneethrj.
https://github.com/puneethrj
The github.io webpage can be created by the following the instructions in the link.
https://pages.github.com/
It goes like this.Create a repository by the name
username.github.io
Mine looks like
puneethrj.github.io
The in terminal
#to clone the repository- that means to create a clone of the repository you created in the github in the above step. a folder will be created at you home folder of your ubuntu. If you want to specify where you want to create the clone you can specify the path of the folder as next parameter.
the
git clone https://github.com/username/username.github.io <folder path optional>
#to clone the repository- that means to create a clone of the repository you created in the github in the above step. a folder will be created at you home folder of your ubuntu. If you want to specify where you want to create the clone you can specify the path of the folder as next parameter.
the
git clone https://github.com/username/username.github.io <folder path optional>
for me it looked like
git clone https://github.com/puneethrj/puneethrj.github.io
Next create your first hello world webpage.
cd username.github.io
echo "Hello World" > index.html #creates a file called index.html with
#"Hello World" text in it.
Now Add, commit, and push your changes:
git add --all #add all files and folders to be uploaded
git commit -m "Initial commit"
#Commit the cahnges you've made to be uploaded. This will show a description that it is initial commit. You would want to attach a message each time you upload a change through "-m "<message>"" just so tat you can identify it better
You will be shown the kind of edition that you are going to upload such as number of deletion and additions etc.
Next create your first hello world webpage.
cd username.github.io
echo "Hello World" > index.html #creates a file called index.html with
#"Hello World" text in it.
Now Add, commit, and push your changes:
git add --all #add all files and folders to be uploaded
git commit -m "Initial commit"
#Commit the cahnges you've made to be uploaded. This will show a description that it is initial commit. You would want to attach a message each time you upload a change through "-m "<message>"" just so tat you can identify it better
You will be shown the kind of edition that you are going to upload such as number of deletion and additions etc.
#upload the changes or file to the original git repository.
git push -u origin master
You can upload your cad and other design files in github but it is not that userfriendly when considered as a files storage and access site. So dropbox account is also required to be created. You will be sharing the file created using links provided by the dropbox.
You can upload your cad and other design files in github but it is not that userfriendly when considered as a files storage and access site. So dropbox account is also required to be created. You will be sharing the file created using links provided by the dropbox.