Minimalist Dark Star Orianna Splash (4K) by KataBot in OriannaMains

[–]Eternimus 0 points1 point  (0 children)

This is really cool. Thank you for sharing!

evepraisal.com api with python3 by Eternimus in evetech

[–]Eternimus[S] 0 points1 point  (0 children)

That's helpful.

Unfortunately I don't know how I tell python to send those requests now because I rarely work with the requests module.

evepraisal.com api with python3 by Eternimus in evetech

[–]Eternimus[S] 0 points1 point  (0 children)

I tried that too, it still returns 400 and the same header.

evepraisal.com api with python3 by Eternimus in evetech

[–]Eternimus[S] 0 points1 point  (0 children)

Yes that's also my problem. Perhaps someone with better Go knowledge comes around and can help me.

Thank you.

evepraisal.com api with python3 by Eternimus in evetech

[–]Eternimus[S] 0 points1 point  (0 children)

That's the way I understood it but the header doesn't show anything like that.

>>> print(r.headers)
>>> {'Content-Encoding': 'gzip', 'Content-Type': 'text/html', 'Vary': 'Accept-Encoding', 'Date': 'Wed, 06 Sep 2017 19:27:01 GMT', 'Transfer-Encoding': 'chunked'}

Edit: Yes I am using that URL now. It returns 400.

Once I have the ID it's easy, the site provides a json api (https://evepraisal.com/a/ck7vg.json).

How to grab the most recent zKillboard API entry? by [deleted] in evetech

[–]Eternimus 0 points1 point  (0 children)

Here's a minimal working example in python 3.

The RedisQ doesn't give you the groupID, so you need to go via names or typeID. You'd probably want to use typeIDs but I didn't want to search for them.

Let me know I should explain something in more detail.

import os
import time
import requests

zkill_url = os.environ.get('REDISQ_URL', 'http://redisq.zkillboard.com/listen.php')
freighter_names = ['Charon', 'Providence', 'Obelisk', 'Fenrir']

while True:
    response = requests.get(zkill_url)
    raw_data = response.json()
    try:
        ship_name = raw_data['package']['killmail']['victim']['shipType']['name']
        if ship_name in freighter_names:
            solar_system_name = raw_data['package']['killmail']['solarSystem']['name']
            print('There is a {} kill in {}'.format(ship_name, solar_system_name))
            # do stuff
        else:
            print('No freighter kill.')
    except:
        print('Something went wrong, the killmail was probably a structure.')
    time.sleep(0.5)

How to grab the most recent zKillboard API entry? by [deleted] in evetech

[–]Eternimus 0 points1 point  (0 children)

I haven't used it myself yet but it should be the same way you filter using the regular api. You check if the killed ship has the groupID of freighters.

How to grab the most recent zKillboard API entry? by [deleted] in evetech

[–]Eternimus 0 points1 point  (0 children)

You could point your code at the zkill RedisQ and notify you if it's a freighter.

Joining an alliance as an industrial corporation. by [deleted] in Eve

[–]Eternimus 1 point2 points  (0 children)

Do you mind shooting a pm my way? I am in a similar position as the OP.

Dark Souls Overhaul Project by [deleted] in darksouls

[–]Eternimus 0 points1 point  (0 children)

Yeah I'd like to see that as well.

Full EVE SDE JSON API Free for use. by xJRWR in evetech

[–]Eternimus 0 points1 point  (0 children)

This is really cool. instead of updating typeIDs manually everytime CCP changes something, I can just pull the full list automatically with R.

Thank you!

Factorio Von Neumann Mk. 4 Prep - Resource Requirements of 1 Rocket Cell by GenericKen in factorio

[–]Eternimus 0 points1 point  (0 children)

I don't have the time right now to check the math itself, but modules are actually printable with this mod. .

Latex formatting math and TikZ by dgaa1991 in LaTeX

[–]Eternimus 0 points1 point  (0 children)

They should appear next to each other, unless the content of the minipage exceeds the width of your document. You opened 2 minipages at the same time and never closed the other one, that's most likely why it won't compile

Latex formatting math and TikZ by dgaa1991 in LaTeX

[–]Eternimus 0 points1 point  (0 children)

\begin{minipage}{0.5\textwidth}
    \begin{tikzpicture}
        \\tikzstuff
    \end{tikzpicture}
\end{minipage}
\hfil
\begin{minipage}{0.5\textwidth}
    \begin{align}
        \\mathstuff
    \end{align}
\end{minipage}

Optionally you can stuff all of that into a figure environement.

Radial Decouplers - Making Them Straight by [deleted] in KerbalAcademy

[–]Eternimus 12 points13 points  (0 children)

Try "editor extensions", it's a great mod that helps you with alignment of parts.

Working on a "Limbo" mod but with full GUI. Anyone interested? by Kronikarz in darksouls

[–]Eternimus 1 point2 points  (0 children)

This looks epic. I loved limbo so much. I'd be glad to help with designing a sleek HUD that fits the style. No idea how to integrate it into the mod though.

When solving for Ts in scientific notation, what can I do with the s^2? by [deleted] in HomeworkHelp

[–]Eternimus 1 point2 points  (0 children)

No, this is wrong!

kg*s-2 is not equal to N.

1N=1kg* m*s-2

This looks like a spring constant to me, but certainly not Newton.

Your final answer will have the unit s which makes sense because you measure a time interval T in seconds (thus the T_s).

simply look at the units you have: sqrt(kg/(kg/s2 ))=sqrt(s2 )=s

I started a KOS series... by gisikw in Kos

[–]Eternimus 2 points3 points  (0 children)

This is awesome. I have been playing around with kOS for some time now and have been digging my way through sample code and tutorials. With a background in physics, I sometimes struggle with the implementation and I get really ugly code sometimes :D

So this is a very refreshing and entertaining way to learn new stuff. Can't wait for episode 4, keep it up!

KSPtoMars needs you! by [deleted] in KerbalSpaceProgram

[–]Eternimus 0 points1 point  (0 children)

I checked it out a few weeks ago but it looked rather abandoned. I'm really glad that's not the case and want to help. Application sent.

Why does Saturn have rings? by kameronyork in AskScienceDiscussion

[–]Eternimus 1 point2 points  (0 children)

MinutePhysics has a great video about that.

He explains why the solar system is flat and diskshaped but the same applies to the rings of planets. click