Anonymous ID: 849509 Jan. 21, 2019, 7:31 p.m. No.4855649   🗄️.is 🔗kun

>>4855536

Ok I've got something in the works but I'm just figuring out Javascript HTML and CSS. If you guys need something scripted or some data generated real quick let me know.

Anonymous ID: 849509 Jan. 21, 2019, 8:11 p.m. No.4856159   🗄️.is 🔗kun   >>6713

>>4855932

If the code is freely available would Anons run a local utility? I have code that monitors for Q posts, I could write code that scrapes DJT's twitter as well. I'm looking at network graph frontends and currently working with one for a personal tool but I'd be willing to put something together if Anons aren't adverse to running their own local 'Q Utility'.

 

This is what I'm currently using for frontend js.cytoscape.org/

Anonymous ID: 849509 Jan. 22, 2019, 8:07 a.m. No.4860971   🗄️.is 🔗kun

I'll have that .csv file available shortly, I was just thinking about some things while this happened that relate to the markers.

 

Do you remember when the shills kvetched about the one [0] delta being six seconds off or whatever it is? Q said it was a 0 marker, therefore the proper marker is minutes.

 

I have all the time in the world to codefag what you guys need.

Anonymous ID: 849509 Jan. 22, 2019, 10:17 a.m. No.4862388   🗄️.is 🔗kun   >>2397

Here's the CSV file sorted by timestamp https://file.io/QOgiYg

If you want it another way let me know it's simple to change things. All the timestamps are in UTC, timestamps are 'Unix Time' so it's easy to find a 1 delta by calculating +-60 seconds.

 

>>4861997

You want to team up? I'm looking at making something that allows Anons to do more analysis on their own machines. Your site is nice though and I can see why you wouldn't want to if you didn't want to.

Anonymous ID: 849509 Jan. 22, 2019, 12:10 p.m. No.4863570   🗄️.is 🔗kun   >>3652 >>3895 >>7207 >>9236 >>5910

>>4862397

I think Anons need the ability to create complex infographics and share complex ideas. I think network graphs are the way to go because of the arbitrary nature of nodes and edges. Q Posts should be addressable by line and each line or even word should be able to be made a node. Nodes should also be able to have pictures which can have nodes on them if Anon wants to point out a specific part of a picture.

 

Basic Requirements

>Everything should be able to be hosted/ran local for Anons

For Performance and Archival Reasons, also not being tied into a service means people can still be Anons

>Ability to run computationally intensive tasks outside of the frontend

Use websockets to queue these up from the frontend and report results. AMQP comes to mind here. Backend waits for a crafted message, and executes whatever function. This allows other Anons to program their own modules and still have a unified frontend for sharing. (For example Video Rendering, graph initialization, anything that shouldn't be done in the browser)

>Graphs should be importable and exportable so they can be shared

Options to include an archive of the source images or the source links should exist

>Graphs should be mergeable

We should decide on a flexible convention that addresses Anons needs in the future.

 

Tools that should be available on the frontend should be

>Allow Anons to add nodes and edges

>Nodes should be able to be pictures, text or raw html

>Edges should also be able to have pictures, text or raw html

>Allow access to whichever network graph framework's query/selector api

 

Other Features (network things)

>8ch Viewer/Archiver

>Q Post Alerts

>Add arbitrary twitter accounts to scrape

 

I've looked at some frontend API's like cytoscape and d3. cytoscape has significant advantages when it comes to interaction so I leaned more towards that. What I've just described is what I'm currently working on but I'm learning js/css/html as I'm going so it's going but it's going slow. I have some parts of my proposed backend completed already.

 

I think putting tools like these in Anons hands would be a great idea, even better if it's actually free as in freedom and beer.

Anonymous ID: 849509 Jan. 22, 2019, 12:33 p.m. No.4863797   🗄️.is 🔗kun

>>4863652

That's exactly what I'm working on. I just want something Anons can run on their own machines and autistically browse whatever data they're interested in.

One part is for monitoring things Anons are interested in like 8ch, twitter and whatever else you can think of

The other part is for making infographics and sharing complex ideas

The code for both overlaps pretty much completely so if you have one you basically have both codewise.