├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── gatsby-browser.js ├── gatsby-config.js ├── package.json ├── src ├── @rocketseat │ └── gatsby-theme-docs │ │ ├── components │ │ ├── Logo.js │ │ ├── Person.jsx │ │ ├── SL3_LOGO.png │ │ └── Social.jsx │ │ └── text │ │ └── index.mdx ├── config │ └── sidebar.yml ├── docs │ ├── applications │ │ ├── android.mdx │ │ ├── ios.mdx │ │ └── learn-more.mdx │ ├── framework │ │ ├── contributors.mdx │ │ ├── sponsors.mdx │ │ └── supporters.mdx │ ├── fundamental-courses │ │ ├── c-programming.mdx │ │ ├── java.mdx │ │ ├── javascript.mdx │ │ ├── overview.mdx │ │ └── python.mdx │ ├── kickstart.mdx │ ├── learning-techniques │ │ ├── contribute-knowledge.mdx │ │ ├── learning-methods.mdx │ │ ├── personal-blog.mdx │ │ └── social-learning.mdx │ ├── motivation.mdx │ ├── next │ │ ├── challenges.mdx │ │ ├── examples.mdx │ │ └── what-next.mdx │ ├── problem-solving │ │ ├── after-solved-a-problem.mdx │ │ ├── competitive-programming.mdx │ │ ├── guides.mdx │ │ └── strategy.mdx │ ├── program │ │ ├── java.mdx │ │ ├── javascript.mdx │ │ ├── python.mdx │ │ └── what-is-sl3-program.mdx │ ├── programming-fundamentals │ │ ├── arrays.mdx │ │ ├── conditions.mdx │ │ ├── functions.mdx │ │ ├── languages.mdx │ │ ├── loops.mdx │ │ ├── operators.mdx │ │ ├── overview.mdx │ │ ├── statements.mdx │ │ └── variables.mdx │ ├── pseudo-code.mdx │ ├── purpose-of-computer.mdx │ ├── purpose-of-programming.mdx │ └── why-do-we-learn-programming.mdx ├── pages │ └── 404.js └── styles │ └── global.css ├── static ├── array1.png ├── array2.jpg ├── array3.jpg ├── banner.png ├── binary-world.jpg ├── coming-soon.png ├── computer-is-dumb.jpg ├── condition1.jpg ├── condition2.jpg ├── condition3.jpg ├── courses-c.jpg ├── courses-java.jpg ├── courses-js.jpg ├── courses-python.jpg ├── data-is-everything.jpg ├── favicon-32x32.png ├── favicon.png ├── fonts │ ├── KohinoorBangla-Bold.otf │ ├── KohinoorBangla-Light.otf │ ├── KohinoorBangla-Medium.otf │ ├── KohinoorBangla-Regular.otf │ ├── KohinoorBangla-Semibold.otf │ └── fonts.css ├── high-salary.jpg ├── hmnayem.png ├── loop1.jpg ├── online-class.jpg ├── operator1.jpg ├── operator2.png ├── operator3.png ├── program-java.jpg ├── program-js.jpg ├── program-python.jpg ├── programming-fundamentals.jpg ├── robots.txt ├── variable1.jpg ├── variable2.jpg ├── variable3.png ├── variable4.png ├── variable5.jpg ├── variable6.jpg └── variable7.png └── yarn.lock /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- 1 | import './src/styles/global.css'; 2 | -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/package.json -------------------------------------------------------------------------------- /src/@rocketseat/gatsby-theme-docs/components/Logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/@rocketseat/gatsby-theme-docs/components/Logo.js -------------------------------------------------------------------------------- /src/@rocketseat/gatsby-theme-docs/components/Person.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/@rocketseat/gatsby-theme-docs/components/Person.jsx -------------------------------------------------------------------------------- /src/@rocketseat/gatsby-theme-docs/components/SL3_LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/@rocketseat/gatsby-theme-docs/components/SL3_LOGO.png -------------------------------------------------------------------------------- /src/@rocketseat/gatsby-theme-docs/components/Social.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/@rocketseat/gatsby-theme-docs/components/Social.jsx -------------------------------------------------------------------------------- /src/@rocketseat/gatsby-theme-docs/text/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/@rocketseat/gatsby-theme-docs/text/index.mdx -------------------------------------------------------------------------------- /src/config/sidebar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/config/sidebar.yml -------------------------------------------------------------------------------- /src/docs/applications/android.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/applications/android.mdx -------------------------------------------------------------------------------- /src/docs/applications/ios.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/applications/ios.mdx -------------------------------------------------------------------------------- /src/docs/applications/learn-more.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/applications/learn-more.mdx -------------------------------------------------------------------------------- /src/docs/framework/contributors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/framework/contributors.mdx -------------------------------------------------------------------------------- /src/docs/framework/sponsors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/framework/sponsors.mdx -------------------------------------------------------------------------------- /src/docs/framework/supporters.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/framework/supporters.mdx -------------------------------------------------------------------------------- /src/docs/fundamental-courses/c-programming.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/fundamental-courses/c-programming.mdx -------------------------------------------------------------------------------- /src/docs/fundamental-courses/java.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/fundamental-courses/java.mdx -------------------------------------------------------------------------------- /src/docs/fundamental-courses/javascript.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/fundamental-courses/javascript.mdx -------------------------------------------------------------------------------- /src/docs/fundamental-courses/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/fundamental-courses/overview.mdx -------------------------------------------------------------------------------- /src/docs/fundamental-courses/python.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/fundamental-courses/python.mdx -------------------------------------------------------------------------------- /src/docs/kickstart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/kickstart.mdx -------------------------------------------------------------------------------- /src/docs/learning-techniques/contribute-knowledge.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/learning-techniques/contribute-knowledge.mdx -------------------------------------------------------------------------------- /src/docs/learning-techniques/learning-methods.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/learning-techniques/learning-methods.mdx -------------------------------------------------------------------------------- /src/docs/learning-techniques/personal-blog.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/learning-techniques/personal-blog.mdx -------------------------------------------------------------------------------- /src/docs/learning-techniques/social-learning.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/learning-techniques/social-learning.mdx -------------------------------------------------------------------------------- /src/docs/motivation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/motivation.mdx -------------------------------------------------------------------------------- /src/docs/next/challenges.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/next/challenges.mdx -------------------------------------------------------------------------------- /src/docs/next/examples.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/next/examples.mdx -------------------------------------------------------------------------------- /src/docs/next/what-next.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/next/what-next.mdx -------------------------------------------------------------------------------- /src/docs/problem-solving/after-solved-a-problem.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/problem-solving/after-solved-a-problem.mdx -------------------------------------------------------------------------------- /src/docs/problem-solving/competitive-programming.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/problem-solving/competitive-programming.mdx -------------------------------------------------------------------------------- /src/docs/problem-solving/guides.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/problem-solving/guides.mdx -------------------------------------------------------------------------------- /src/docs/problem-solving/strategy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/problem-solving/strategy.mdx -------------------------------------------------------------------------------- /src/docs/program/java.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/program/java.mdx -------------------------------------------------------------------------------- /src/docs/program/javascript.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/program/javascript.mdx -------------------------------------------------------------------------------- /src/docs/program/python.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/program/python.mdx -------------------------------------------------------------------------------- /src/docs/program/what-is-sl3-program.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/program/what-is-sl3-program.mdx -------------------------------------------------------------------------------- /src/docs/programming-fundamentals/arrays.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/programming-fundamentals/arrays.mdx -------------------------------------------------------------------------------- /src/docs/programming-fundamentals/conditions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/programming-fundamentals/conditions.mdx -------------------------------------------------------------------------------- /src/docs/programming-fundamentals/functions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/programming-fundamentals/functions.mdx -------------------------------------------------------------------------------- /src/docs/programming-fundamentals/languages.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/programming-fundamentals/languages.mdx -------------------------------------------------------------------------------- /src/docs/programming-fundamentals/loops.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/programming-fundamentals/loops.mdx -------------------------------------------------------------------------------- /src/docs/programming-fundamentals/operators.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/programming-fundamentals/operators.mdx -------------------------------------------------------------------------------- /src/docs/programming-fundamentals/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/programming-fundamentals/overview.mdx -------------------------------------------------------------------------------- /src/docs/programming-fundamentals/statements.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/programming-fundamentals/statements.mdx -------------------------------------------------------------------------------- /src/docs/programming-fundamentals/variables.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/programming-fundamentals/variables.mdx -------------------------------------------------------------------------------- /src/docs/pseudo-code.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/pseudo-code.mdx -------------------------------------------------------------------------------- /src/docs/purpose-of-computer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/purpose-of-computer.mdx -------------------------------------------------------------------------------- /src/docs/purpose-of-programming.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/purpose-of-programming.mdx -------------------------------------------------------------------------------- /src/docs/why-do-we-learn-programming.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/docs/why-do-we-learn-programming.mdx -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /static/array1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/array1.png -------------------------------------------------------------------------------- /static/array2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/array2.jpg -------------------------------------------------------------------------------- /static/array3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/array3.jpg -------------------------------------------------------------------------------- /static/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/banner.png -------------------------------------------------------------------------------- /static/binary-world.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/binary-world.jpg -------------------------------------------------------------------------------- /static/coming-soon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/coming-soon.png -------------------------------------------------------------------------------- /static/computer-is-dumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/computer-is-dumb.jpg -------------------------------------------------------------------------------- /static/condition1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/condition1.jpg -------------------------------------------------------------------------------- /static/condition2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/condition2.jpg -------------------------------------------------------------------------------- /static/condition3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/condition3.jpg -------------------------------------------------------------------------------- /static/courses-c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/courses-c.jpg -------------------------------------------------------------------------------- /static/courses-java.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/courses-java.jpg -------------------------------------------------------------------------------- /static/courses-js.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/courses-js.jpg -------------------------------------------------------------------------------- /static/courses-python.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/courses-python.jpg -------------------------------------------------------------------------------- /static/data-is-everything.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/data-is-everything.jpg -------------------------------------------------------------------------------- /static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/favicon-32x32.png -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/fonts/KohinoorBangla-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/fonts/KohinoorBangla-Bold.otf -------------------------------------------------------------------------------- /static/fonts/KohinoorBangla-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/fonts/KohinoorBangla-Light.otf -------------------------------------------------------------------------------- /static/fonts/KohinoorBangla-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/fonts/KohinoorBangla-Medium.otf -------------------------------------------------------------------------------- /static/fonts/KohinoorBangla-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/fonts/KohinoorBangla-Regular.otf -------------------------------------------------------------------------------- /static/fonts/KohinoorBangla-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/fonts/KohinoorBangla-Semibold.otf -------------------------------------------------------------------------------- /static/fonts/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/fonts/fonts.css -------------------------------------------------------------------------------- /static/high-salary.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/high-salary.jpg -------------------------------------------------------------------------------- /static/hmnayem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/hmnayem.png -------------------------------------------------------------------------------- /static/loop1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/loop1.jpg -------------------------------------------------------------------------------- /static/online-class.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/online-class.jpg -------------------------------------------------------------------------------- /static/operator1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/operator1.jpg -------------------------------------------------------------------------------- /static/operator2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/operator2.png -------------------------------------------------------------------------------- /static/operator3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/operator3.png -------------------------------------------------------------------------------- /static/program-java.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/program-java.jpg -------------------------------------------------------------------------------- /static/program-js.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/program-js.jpg -------------------------------------------------------------------------------- /static/program-python.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/program-python.jpg -------------------------------------------------------------------------------- /static/programming-fundamentals.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/programming-fundamentals.jpg -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/variable1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/variable1.jpg -------------------------------------------------------------------------------- /static/variable2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/variable2.jpg -------------------------------------------------------------------------------- /static/variable3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/variable3.png -------------------------------------------------------------------------------- /static/variable4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/variable4.png -------------------------------------------------------------------------------- /static/variable5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/variable5.jpg -------------------------------------------------------------------------------- /static/variable6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/variable6.jpg -------------------------------------------------------------------------------- /static/variable7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/static/variable7.png -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stacklearner/sl3-framework/HEAD/yarn.lock --------------------------------------------------------------------------------