GithubHelp home page GithubHelp logo

helldiverstrainingmanual's Introduction

create-svelte

Everything you need to build a Svelte project, powered by create-svelte.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
npm create svelte@latest

# create a new project in my-app
npm create svelte@latest my-app

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.

helldiverstrainingmanual's People

Contributors

mitcheljager avatar emmyrlim avatar chatterchats avatar detkewldog avatar calslock avatar

Stargazers

Paul Pemberton avatar Trace_Recursion avatar Benjamin Foster Holmes avatar Miro Yovchev avatar Isa Ozler avatar  avatar Sherkey avatar  avatar  avatar Patrick Adams avatar Brad avatar Cruz avatar Dylan Thomson avatar Prasanth Vaaheeswaran avatar Michael avatar halim erdin avatar Millefeuille avatar  avatar  avatar Nacho Aldama avatar Dean Lozo avatar Leonid Semenov avatar Serhii Salnikov avatar Lucas Giraldelli avatar Andrejus Kostarevas avatar Matt Schultz avatar deluxghost avatar

Watchers

 avatar  avatar

helldiverstrainingmanual's Issues

[Feature request] API with historical total player count

Hello! First of all, congrats on the awesome work on this website and APIs.

I'd like to suggest an API where we can see the historical total player count. You already sum this value across all planets and display it at the bottom of the map, but it's always the latest value, there isn't a way to see how the total player count evolved over time.

I see two ways of returning this data.
Simple array with timestamps and player count for each one:

[
  {
    "created_at": "2024-03-25T13:25:07.28217+00:00",
    "player_count": 30824
  },
  {
    "created_at": "2024-03-25T13:20:10.342921+00:00",
    "player_count": 30206
  }
]

Or an array with timestamps and the breakdown per planet:

[
  {
    "created_at": "2024-03-25T13:25:07.28217+00:00",
    "planets": [
      {
        "planet_index": 212,
        "player_count": 70615
      },
      {
        "planet_index": 197,
        "player_count": 30824
      }
    ]
  },
  {
    "created_at": "2024-03-25T13:20:10.342921+00:00",
    "planets": [
      {
        "planet_index": 212,
        "player_count": 69520
      },
      {
        "planet_index": 197,
        "player_count": 30206
      }
    ]
  }
]

In the second suggestion, the API consumer would need to sum across planets on each timestamp to get the total. But this is essentially the data you already have in this endpoint, it's just grouped by timestamp, might be easier to implement. ๐Ÿ˜

What I wanna do with this data?
I build apps for the Tidbyt, it's a cool retro-style display to keep track of things you care about.

I already have an app that shows the current total player count:
tidbyt

But the Tidbyt has some very nice charting capabilities and it would be very cool to show how the player count evolved in the last 24 hours. This is what a chart looks like:

Add way to customize stratagem practice inputs

The training manual looks great, thanks for that!

One thing I'm missing is the ability to change which keys are used in the Interactive Stratagem Practice. It seems like WASD and the arrow keys are hard coded in. In game, I'm using keys on the right side of my keyboard to input stratagems so that I can run around while calling them in. It would be great to be able to practice with my "real keys".

Would it be possible to add a way to rebind those controls, like one can do with Stratagem Hero's change keybinds button?

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.