You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This presentation has been made by the executives of CSEA (2013-17 batch). The contributors are [Piyush Bhopalka](http://github.com/pbhopalka), [Simsarul Haq](http://github.com/simsarulhaqv), [Prabhav Adhikari](http://github.com/prabhavad), [Aashish Satyajith](http://github.com/aashishsatya), [Shrimadhav U K](http://github.com/spechide).
4
+
5
+
# Basic Agenda of the Presentation
6
+
7
+
- Introduction to FOSS (Free Open Source Software)
8
+
- Basic Linux Commands
9
+
- Some Linux Utilities
10
+
- More on Basic Linux
11
+
- Introduction to Vim Editor
12
+
- Shell Script Exercise
13
+
- Introduction to File Systems
14
+
- Some more Linux Utilities
15
+
16
+
Each topic has a separate HTML page created so that a user can open only the required page and that helps in the navigation too.
17
+
18
+
This presentation uses the open source HTML framework [reveal.js](https://github.com/hakimel/reveal.js). Please read through it through build an interactive presentation using the framework.
19
+
20
+
# Contact
21
+
22
+
For making any changes, please make a pull request and we will consider your change.
23
+
24
+
# Acknowledgement
25
+
26
+
We would like to acknowledge the faculty members of NIT Calicut for promoting us to conduct this presentation. We hope this presentation is useful even later for upcoming batches and can act as a reference to those who would like to refresh their rusty knowledge on Linux.
2
27
3
28
A framework for easily creating beautiful presentations using HTML. [Check out the live demo](http://lab.hakim.se/reveal-js/).
4
29
@@ -486,15 +511,15 @@ You can also use different in and out transitions for the same slide:
486
511
487
512
```html
488
513
<sectiondata-transition="slide">
489
-
The train goes on …
514
+
The train goes on …
490
515
</section>
491
-
<sectiondata-transition="slide">
492
-
and on …
516
+
<sectiondata-transition="slide">
517
+
and on …
493
518
</section>
494
-
<sectiondata-transition="slide-in fade-out">
519
+
<sectiondata-transition="slide-in fade-out">
495
520
and stops.
496
521
</section>
497
-
<sectiondata-transition="fade-in slide-out">
522
+
<sectiondata-transition="fade-in slide-out">
498
523
(Passengers entering and leaving)
499
524
</section>
500
525
<sectiondata-transition="slide">
@@ -796,7 +821,7 @@ The multiplex plugin needs the following 3 things to operate:
796
821
More details:
797
822
798
823
#### Master presentation
799
-
Served from a static file server accessible (preferably) only to the presenter. This need only be on your (the presenter's) computer. (It's safer to run the master presentation from your own computer, so if the venue's Internet goes down it doesn't stop the show.) An example would be to execute the following commands in the directory of your master presentation:
824
+
Served from a static file server accessible (preferably) only to the presenter. This need only be on your (the presenter's) computer. (It's safer to run the master presentation from your own computer, so if the venue's Internet goes down it doesn't stop the show.) An example would be to execute the following commands in the directory of your master presentation:
800
825
801
826
1.```npm install node-static```
802
827
2.```static```
@@ -869,7 +894,7 @@ You are very welcome to point your presentations at the Socket.io server running
869
894
870
895
##### socket.io server as file static server
871
896
872
-
The socket.io server can play the role of static file server for your client presentation, as in the example at [http://revealjs.jit.su](http://revealjs.jit.su). (Open [http://revealjs.jit.su](http://revealjs.jit.su) in two browsers. Navigate through the slides on one, and the other will update to match.)
897
+
The socket.io server can play the role of static file server for your client presentation, as in the example at [http://revealjs.jit.su](http://revealjs.jit.su). (Open [http://revealjs.jit.su](http://revealjs.jit.su) in two browsers. Navigate through the slides on one, and the other will update to match.)
873
898
874
899
Example configuration:
875
900
```javascript
@@ -966,7 +991,7 @@ Reveal.initialize({
966
991
967
992
If you want to display math equations in your presentation you can easily do so by including this plugin. The plugin is a very thin wrapper around the [MathJax](http://www.mathjax.org/) library. To use it you'll need to include it as a reveal.js dependency, [find our more about dependencies here](#dependencies).
968
993
969
-
The plugin defaults to using [LaTeX](http://en.wikipedia.org/wiki/LaTeX) but that can be adjusted through the ```math``` configuration object. Note that MathJax is loaded from a remote server. If you want to use it offline you'll need to download a copy of the library and adjust the ```mathjax``` configuration value.
994
+
The plugin defaults to using [LaTeX](http://en.wikipedia.org/wiki/LaTeX) but that can be adjusted through the ```math``` configuration object. Note that MathJax is loaded from a remote server. If you want to use it offline you'll need to download a copy of the library and adjust the ```mathjax``` configuration value.
970
995
971
996
Below is an example of how the plugin can be configured. If you don't intend to change these values you do not need to include the ```math``` config object at all.
0 commit comments