Skip to content

Commit

Permalink
Hid some content without missing code :)
Browse files Browse the repository at this point in the history
  • Loading branch information
henricasanova committed Sep 26, 2022
1 parent a61b642 commit f491e4c
Show file tree
Hide file tree
Showing 22 changed files with 90 additions and 22 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState} from "react"
import React, {useEffect, useState} from "react"
import { Divider, Header, Segment } from "semantic-ui-react"
import TeX from "@matejmazur/react-katex"
import LearningObjectives from "../../../components/learning_objectives"
Expand All @@ -11,6 +11,9 @@ import SigninCheck from "../../../components/signin_check";
const BatchQueue = ({ module, tab }) => {

const [auth, setAuth] = useState("false")
useEffect(() => {
setAuth(localStorage.getItem("login"))
})


return (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState} from "react"
import React, {useEffect, useState} from "react"
import { Divider, Header, Segment } from "semantic-ui-react"
import TeX from "@matejmazur/react-katex"
import LearningObjectives from "../../../components/learning_objectives"
Expand All @@ -9,6 +9,9 @@ import SigninCheck from "../../../components/signin_check";
const JobCancellation = ({ module, tab }) => {

const [auth, setAuth] = useState("false")
useEffect(() => {
setAuth(localStorage.getItem("login"))
})

return (
<>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState} from "react"
import React, {useEffect, useState} from "react"
import { Divider, Header, Segment } from "semantic-ui-react"
import TeX from "@matejmazur/react-katex"
import LearningObjectives from "../../../components/learning_objectives"
Expand All @@ -9,6 +9,9 @@ import SigninCheck from "../../../components/signin_check";
const JobDuration = ({ module, tab }) => {

const [auth, setAuth] = useState("false")
useEffect(() => {
setAuth(localStorage.getItem("login"))
})

return (
<>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState} from "react"
import React, {useEffect, useState} from "react"
import { Divider, Header, Segment } from "semantic-ui-react"
import TeX from "@matejmazur/react-katex"
import LearningObjectives from "../../../components/learning_objectives"
Expand All @@ -9,6 +9,9 @@ import SigninCheck from "../../../components/signin_check";
const JobNumNodes = ({ module, tab }) => {

const [auth, setAuth] = useState("false")
useEffect(() => {
setAuth(localStorage.getItem("login"))
})

return (
<>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState} from "react"
import React, {useEffect, useState} from "react"
import { Divider, Header, Segment } from "semantic-ui-react"
import TeX from "@matejmazur/react-katex"
import LearningObjectives from "../../../components/learning_objectives"
Expand All @@ -9,6 +9,9 @@ import SigninCheck from "../../../components/signin_check";
const JobSubmission = ({ module, tab }) => {

const [auth, setAuth] = useState("false")
useEffect(() => {
setAuth(localStorage.getItem("login"))
})

return (
<>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState} from "react"
import React, {useEffect, useState} from "react"
import { Divider, Header, Table } from "semantic-ui-react"
import TeX from "@matejmazur/react-katex"
import LearningObjectives from "../../../components/learning_objectives"
Expand All @@ -17,6 +17,9 @@ import SigninCheck from "../../../components/signin_check";
const ClientServerPipelining = ({module, tab}) => {

const [auth, setAuth] = useState("false")
useEffect(() => {
setAuth(localStorage.getItem("login"))
})

return (
<>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState} from "react"
import React, {useEffect, useState} from "react"
import { Accordion, Divider, Header, Segment } from "semantic-ui-react"
import TeX from "@matejmazur/react-katex"
import LearningObjectives from "../../../components/learning_objectives"
Expand All @@ -17,6 +17,9 @@ import SigninCheck from "../../../components/signin_check";

const CoordinatorWorkerBasics = ({module, tab}) => {
const [auth, setAuth] = useState("false")
useEffect(() => {
setAuth(localStorage.getItem("login"))
})

return (
<>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState} from "react"
import React, {useEffect, useState} from "react"
import { Accordion, Divider, Header, Segment } from "semantic-ui-react"
import TeX from "@matejmazur/react-katex"
import LearningObjectives from "../../../components/learning_objectives"
Expand All @@ -13,6 +13,9 @@ import SigninCheck from "../../../components/signin_check";
const CoordinatorWorkerScheduling = ({module, tab}) => {

const [auth, setAuth] = useState("false")
useEffect(() => {
setAuth(localStorage.getItem("login"))
})

return (
<>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState} from "react"
import React, {useEffect, useState} from "react"
import { Divider, Header } from "semantic-ui-react"
import TeX from "@matejmazur/react-katex"
import LearningObjectives from "../../../components/learning_objectives"
Expand All @@ -17,6 +17,9 @@ import SigninCheck from "../../../components/signin_check";

const DataParallelism = ({module, tab}) => {
const [auth, setAuth] = useState("false")
useEffect(() => {
setAuth(localStorage.getItem("login"))
})

return (
<>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState} from "react"
import React, {useEffect, useState} from "react"
import { Divider, Header } from "semantic-ui-react"
import TeX from "@matejmazur/react-katex"
import LearningObjectives from "../../../components/learning_objectives"
Expand All @@ -14,6 +14,9 @@ import SigninCheck from "../../../components/signin_check";

const LoadImbalance = ({module, tab}) => {
const [auth, setAuth] = useState("false")
useEffect(() => {
setAuth(localStorage.getItem("login"))
})

return (
<>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState} from "react"
import React, {useEffect, useState} from "react"
import { Divider, Header } from "semantic-ui-react"
import TeX from "@matejmazur/react-katex"
import LearningObjectives from "../../../components/learning_objectives"
Expand All @@ -20,6 +20,9 @@ import SigninCheck from "../../../components/signin_check";
const RamAndIO = ({module, tab}) => {

const [auth, setAuth] = useState("false")
useEffect(() => {
setAuth(localStorage.getItem("login"))
})

return (
<>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState} from "react"
import React, {useEffect, useState} from "react"
import { Divider, Header, Table } from "semantic-ui-react"
import TeX from "@matejmazur/react-katex"
import LearningObjectives from "../../../components/learning_objectives"
Expand All @@ -24,6 +24,9 @@ import SigninCheck from "../../../components/signin_check";
const TaskDependencies = ({module, tab}) => {

const [auth, setAuth] = useState("false")
useEffect(() => {
setAuth(localStorage.getItem("login"))
})

return (
<>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState} from "react"
import React, {useEffect, useState} from "react"
import { Divider, Header } from "semantic-ui-react"
import TeX from "@matejmazur/react-katex"
import LearningObjectives from "../../../components/learning_objectives"
Expand All @@ -11,6 +11,9 @@ import SigninCheck from "../../../components/signin_check";
const TaskParallelism = ({module, tab}) => {

const [auth, setAuth] = useState("false")
useEffect(() => {
setAuth(localStorage.getItem("login"))
})

return (
<>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState} from "react"
import React, {useEffect, useState} from "react"
import { Divider, Header } from "semantic-ui-react"
import TeX from "@matejmazur/react-katex"
import LearningObjectives from "../../../components/learning_objectives"
Expand All @@ -24,6 +24,9 @@ import SigninCheck from "../../../components/signin_check";

const Contention = ({ module, tab }) => {
const [auth, setAuth] = useState("false")
useEffect(() => {
setAuth(localStorage.getItem("login"))
})

return (
<>
Expand Down Expand Up @@ -323,6 +326,8 @@ const Contention = ({ module, tab }) => {
</>
]} auth={auth} content="questions"></SigninCheck>

<Divider/>

<FeedbackActivity content={
<FeedbackQuestions feedbacks={[
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState} from "react"
import React, {useEffect, useState} from "react"
import { Divider, Header } from "semantic-ui-react"
import TeX from "@matejmazur/react-katex"
import LearningObjectives from "../../../components/learning_objectives"
Expand All @@ -18,6 +18,9 @@ import SigninCheck from "../../../components/signin_check";

const Topologies = ({module, tab}) => {
const [auth, setAuth] = useState("false")
useEffect(() => {
setAuth(localStorage.getItem("login"))
})

return (
<>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState} from "react"
import React, {useEffect, useState} from "react"
import { Divider, Header, Icon, Table } from "semantic-ui-react"
import TeX from "@matejmazur/react-katex"
import LearningObjectives from "../../../components/learning_objectives"
Expand All @@ -20,6 +20,9 @@ import SigninCheck from "../../../components/signin_check";
const IO = ({module, tab}) => {

const [auth, setAuth] = useState("false")
useEffect(() => {
setAuth(localStorage.getItem("login"))
})

return (
<>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState} from "react"
import React, {useEffect, useState} from "react"
import { Divider, Header} from "semantic-ui-react"
import LearningObjectives from "../../../components/learning_objectives"
import Thrustd_Cloud_Simulation from "./thrustd_cloud_simulation";
Expand All @@ -11,6 +11,9 @@ import SigninCheck from "../../../components/signin_check";
const CloudComputing = ({module, tab}) => {

const [auth, setAuth] = useState("false")
useEffect(() => {
setAuth(localStorage.getItem("login"))
})

return (
<>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState} from "react"
import React, {useEffect, useState} from "react"
import {Divider, Header, Table} from "semantic-ui-react"
import LearningObjectives from "../../../components/learning_objectives";
import MontageWorkflow from "../../../images/vector_graphs/thrustd/montage_workflow.svg";
Expand All @@ -11,6 +11,9 @@ import SigninCheck from "../../../components/signin_check";
const LocalComputing = ({module, tab}) => {

const [auth, setAuth] = useState("false")
useEffect(() => {
setAuth(localStorage.getItem("login"))
})

return (
<>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* (at your option) any later version.
*/

import React, {useState} from "react"
import React, {useEffect, useState} from "react"
import { Divider, Header } from "semantic-ui-react"
import TeX from "@matejmazur/react-katex"
import LearningObjectives from "../../../components/learning_objectives"
Expand All @@ -26,6 +26,9 @@ import SigninCheck from "../../../components/signin_check";
const WorkflowsDataLocality = ({ module, tab }) => {

const [auth, setAuth] = useState("false")
useEffect(() => {
setAuth(localStorage.getItem("login"))
})


return (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState} from "react"
import React, {useEffect, useState} from "react"
import { Divider, Header, Table } from "semantic-ui-react"
import TeX from "@matejmazur/react-katex"
import LearningObjectives from "../../../components/learning_objectives"
Expand All @@ -20,6 +20,9 @@ import SigninCheck from "../../../components/signin_check";
const WorkflowsDistributedExecution = ({module, tab}) => {

const [auth, setAuth] = useState("false")
useEffect(() => {
setAuth(localStorage.getItem("login"))
})

return (
<>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState} from "react"
import React, {useEffect, useState} from "react"
import { Divider, Header, Table } from "semantic-ui-react"
import TeX from "@matejmazur/react-katex"
import LearningObjectives from "../../../components/learning_objectives"
Expand All @@ -18,6 +18,9 @@ import SigninCheck from "../../../components/signin_check";
const WorkflowsFundamentals = ({module, tab}) => {

const [auth, setAuth] = useState("false")
useEffect(() => {
setAuth(localStorage.getItem("login"))
})

return (
<>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {useState} from "react"
import React, {useEffect, useState} from "react"
import { Divider, Header } from "semantic-ui-react"
import TeX from "@matejmazur/react-katex"
import LearningObjectives from "../../../components/learning_objectives"
Expand All @@ -19,6 +19,9 @@ import SigninCheck from "../../../components/signin_check";
const WorkflowsMixedParallelism = ({module, tab}) => {

const [auth, setAuth] = useState("false")
useEffect(() => {
setAuth(localStorage.getItem("login"))
})

return (
<>
Expand Down

0 comments on commit f491e4c

Please sign in to comment.