Git Product home page Git Product logo

sit_graduation_checker's Introduction

ecto0310

GitHub Profile Trophy

trophy

GitHub Readme Stats

Anurag's GitHub stats

Top Langs

sit_graduation_checker's People

Contributors

ecto0310 avatar kyo-s-s avatar renovate[bot] avatar whtsht avatar

Watchers

 avatar

Forkers

kyo-s-s whtsht 10fu3

sit_graduation_checker's Issues

Dependency Dashboard

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Open

These updates have all been created already. Click a checkbox below to force a retry/rebase of any.

Detected dependencies

asdf
.tool-versions
  • node 20.11.1
github-actions
.github/workflows/ci.yml
  • actions/checkout v4.1.1@b4ffde65f46336ab88eb53be808477a3936bae11
  • asdf-vm/actions v3.0.2@05e0d2ed97b598bfce82fd30daf324ae0c4570e6
  • actions/checkout v4.1.1@b4ffde65f46336ab88eb53be808477a3936bae11
  • asdf-vm/actions v3.0.2@05e0d2ed97b598bfce82fd30daf324ae0c4570e6
  • actions/checkout v4.1.1@b4ffde65f46336ab88eb53be808477a3936bae11
  • asdf-vm/actions v3.0.2@05e0d2ed97b598bfce82fd30daf324ae0c4570e6
  • ubuntu 22.04
  • ubuntu 22.04
  • ubuntu 22.04
npm
package.json
  • @fortawesome/fontawesome-svg-core 6.5.1
  • @fortawesome/free-solid-svg-icons 6.5.1
  • @fortawesome/react-fontawesome 0.2.0
  • bootstrap 5.3.2
  • next 14.1.0
  • react 18.2.0
  • react-bootstrap 2.10.1
  • react-dom 18.2.0
  • @types/node 20.11.19
  • @types/react 18.2.55
  • @types/react-dom 18.2.19
  • eslint 8.56.0
  • eslint-config-next 14.1.0
  • prettier 3.2.5
  • typescript 5.3.3

  • Check this box to trigger a request for Renovate to run again on this repository

シス理で第二外国語が計算されない

例えば ドイツ語 は本来総合科目に分類されるはずだが、sgsot上では系・郡が "ドイツ語" であり、総合科目のカウントに入らない。

第二外国語で同様のことが起きていそう。

再履修前の成績の取得

https://sgsot4a.sic.shibaura-it.ac.jp/学籍番号/Study/StudyHistory.xml にクエリ投げれば可能な事を確認

const xmlUrl = https://sgsot4a.sic.shibaura-it.ac.jp/学籍番号/Study/StudyHistory.xml;
fetch(xmlUrl)
            .then( res => {
                    if (res.status == 200) {
                        return res.text();
                    }
                    throw new Error( `${res.statusText}(${res.status})` );
                })
            .then( xmlString =>  {
                    const xmlData = new window.DOMParser().parseFromString(xmlString, "text/xml");
                    const xml =  xmlData.querySelectorAll("Studies Study");
                    for( x of xml ){
						for(y of x.attributes){
							console.log(y.name, y.value);
						}
					}
                })
            .catch( e => console.log( e.message ) );

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.