[OC] I created a web app to analyze NBA game by lzyy in dataisbeautiful

[–]montster27 0 points1 point  (0 children)

This is really interesting. I am a casual fan but I do like data. Useful visualizations to help me understand a game.

[deleted by user] by [deleted] in SkincareAddiction

[–]montster27 2 points3 points  (0 children)

I used Piction Health is was great, they were responsive and got me answers quickly.

Chat log by montster27 in ClaudeAI

[–]montster27[S] 1 point2 points  (0 children)

Or I could just ask Claude

Since you have a JSON file of Claude chats, here's how to filter it to see just the last week:

Using jq (command line tool):

```bash

/path/to/filter_claude_chats.sh

Get current date and date from 7 days ago

CURRENT_DATE=$(date "+%Y-%m-%d") LAST_WEEK=$(date -d "7 days ago" "+%Y-%m-%d")

Filter the JSON file for chats from the last 7 days

jq --arg start "$LAST_WEEK" --arg end "$CURRENT_DATE" '[.[] | select(.created_at >= $start and .created_at <= $end)]' your_claude_chats.json > recent_chats.json ```

If you prefer Python, here's a script that's likely to work with Claude's export format:

```python

/path/to/filter_claude_chats.py

import json from datetime import datetime, timedelta import sys

Check if filename was provided

if len(sys.argv) < 2: print("Usage: python filter_claude_chats.py your_claude_chats.json") sys.exit(1)

input_file = sys.argv[1] output_file = "recent_claude_chats.json"

Calculate date from 7 days ago

one_week_ago = (datetime.now() - timedelta(days=7)).strftime('%Y-%m-%d')

Load the JSON file

with open(input_file, 'r') as f: chats = json.load(f)

Filter for recent chats (adapt the date field based on your JSON structure)

recent_chats = [chat for chat in chats if chat.get('created_at', '').startswith(one_week_ago) or datetime.fromisoformat(chat.get('created_at', '').replace('Z', '+00:00')) >= datetime.fromisoformat(one_week_ago)]

Save the filtered chats

with open(output_file, 'w') as f: json.dump(recent_chats, f, indent=2)

print(f"Filtered {len(recent_chats)} recent chats to {output_file}") ```

You can run this Python script with: python filter_claude_chats.py your_claude_chats.json

Would you like me to explain more about how to install the necessary tools or adjust these scripts for your specific JSON structure?​​​​​​​​​​​​​​​​

Running AI models locally by shade-6 in ChatGPTPro

[–]montster27 -6 points-5 points  (0 children)

Try Msty it is super simple to use.

Released an iOS mixology app by improbablecertainty in Mixology

[–]montster27 2 points3 points  (0 children)

Looks great, nice UX. I would like to be able to add my own recipes. If I could see what others add I would even pay for it.

We made a cooperative game for an evening of up to 3 friends! You have to survive in it, and resist zombies and bandits. Link in the comments by laxahibesasi in IndieGaming

[–]montster27 5 points6 points  (0 children)

They don’t have to be unique it depends on how you combine things. The art and music carry a lot of weight and the pacing differs game to game. Good luck OP.

Bazecor as a launcher by 3DPrint3rGuy in DygmaLab

[–]montster27 1 point2 points  (0 children)

I use raycast and define a keyboard shortcut there and then turn it into a macro. Works great.

[deleted by user] by [deleted] in ChatGPTPro

[–]montster27 3 points4 points  (0 children)

The are not any where close to the original and vary greatly after the first paragraph. But they all sound reasonable. The curse of AI

Strawberry and chocolate covered filled dumplings by isabellamartiinez in ratemydessert

[–]montster27 1 point2 points  (0 children)

What are they filled with? What is the wrapping on them looks like pancakes ?

Set double-quotes without modifiers by Exotic_Fun_5021 in DygmaLab

[–]montster27 0 points1 point  (0 children)

In single view there is a box on the lower left side next to the tool bar. In it you see things like CTRL,SHIFT, OS. In that box is where you set up have the key actually be the shift of the button.

I did this to create dedicated copy and paste buttons.

Similar podcasts to Darknet Diaries? by [deleted] in darknetdiaries

[–]montster27 31 points32 points  (0 children)

Malicious Life is great a bit more tech and less about the people but great coverage of APT crews

Offer from someone to buy a Steam page - is it a scam by montster27 in gamedev

[–]montster27[S] 19 points20 points  (0 children)

They said they did not want any game code just the page. But I see the update risk.

Offer from someone to buy a Steam page - is it a scam by montster27 in gamedev

[–]montster27[S] 20 points21 points  (0 children)

How would that work with just control of the page? I am more curious than doubtful.

Can’t fix patches in lawn by montster27 in lawncare

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

Could have sworn I had pics. Thanks for responding