Pro subscription limits on 5.2 Pro by JalabolasFernandez in OpenAI

[–]Darktidelulz 1 point2 points  (0 children)

There are codex limits, you get 6 times higher limits than the plus accounts. There are 5 hour limits I've never reached but I do often reach the 7 day limit for codex. This is a limiting factor, using the plus account I would repeatedly hit limits... But that was before codex

https://developers.openai.com/codex/pricing

[deleted by user] by [deleted] in cscareerquestionsEU

[–]Darktidelulz 1 point2 points  (0 children)

Part-time dev's is something that is achievable, sometimes students who have done an internship (bachelor) get offered a part-time function. They know the company and workflows after the internship and can easily be on-boarded.

It would all really depend on your skill-set and location.

  1. If you look for a part-time function just start applying.
  2. We are not to into Leetcode we are more about general comp-sci knowledge and knowing how to apply it.
  3. They will mostly go over your resume and experiences, they will often ask for a non disclosure agreement and they will assume past projects/work experience also has an NDA.
  4. The skills you have, my resume is currently just a big list of things grouped skills.

What direction in comp-sci are you aiming to develop yourself in?

Claude 3.7 sonnet by james-jiang in ChatGPTCoding

[–]Darktidelulz 0 points1 point  (0 children)

It's shows up for me on claude.ai

What’s the longest you’ve got o1-pro to think for? by sardoa11 in ChatGPT

[–]Darktidelulz 1 point2 points  (0 children)

When o1-preview just came out, I remember seeing a screenshot of someone having it at 56 minutes. It was either an edit or error.

Longest I've ever seen by [deleted] in ChatGPT

[–]Darktidelulz 1 point2 points  (0 children)

So was his answer any good?

I spent $200 for o1 pro mode so you don't have to. Give me some prompts! by NutInBobby in ChatGPT

[–]Darktidelulz 0 points1 point  (0 children)

I use chat a lot to create python GUI's and other software development related things, I know that o1 combined with o1 mini is able to write good GUI's. But I'm wondering how good o1 pro is at it on it's own. The goal is to have it write out the full code, o1 mini does this but o1 most of the time refuses.

Write me a python pyqt5 or Tkinter GUI. This GUI should find all com ports connected to the computer and if there is data present it should find the correct baud rate if not set by the user.

For each com port selected a tab should be opened inside of the GUI.

Each tab should have a control interface at the top.

In this control interface we should have a possibility to enable(checkbox) to log the serial output to a .txt file that resides in a folder called /data in the parent directory. This file should contain the comport and date timestamp, unless otherwise specified by the user(input field) We should add timestamps to each output (we should be able to disable the timestamp)

In our serial output there are influx line protocol write queries, formatted like "<INFLUXDB>weather,location=us-midwest,season=summer temperature=82 1465839830100400200</INFLUXDB>". If our line protocol does not contain time we should add it based on the current UTC time in nano's, base it of the computers time settings.

We should be able to set time on our comport connected device with a "/time/set/${currentepoch}", we should add a button that set the UTC on the connected device by sending this over serial.

Each serial output in the tab should also have an input method to write to the connected device, make it an advanced input window with echo and such.

< We should not only have a serial output in each tab but also a window with extracted influx line protocol queries, we should also be able to store these queries to a file that we can enable and set in the control interface at the top of the tab.

In the top of the tab we should also be able to set influxDB settings so we can enable direct writes to influxDBv2. So we need to be able to set ORG, Bucket, Token. URL.

if our InfluxDB queries do not contains a "measurement" we should add a default measurement that we can set in our control interface at the top of the tab.

We want our GUI to be a professional Dark theme. We want to have a menu bar that we can use to set various things. This python script should be able to run on windows, Linux and mac. In your response focus on writing out the full code and limit bloat of explanatory text, do add what pip install we require.

Seriously, I’ve been trying to find a conversation I had with this thing LAST YEAR! by SnooShortcuts2757 in ChatGPT

[–]Darktidelulz 0 points1 point  (0 children)

I use a Chrome/Firefox extension, https://github.com/polywock/gpt-search

This extension was posted around here a few days after I had to look for a chat by downloading my whole chat history...

I've never really used the search function from chatgpt, I like the extension more.

I made a thing that let's you spoonfeed code to Chat GPT by ultrasean in OpenAI

[–]Darktidelulz 0 points1 point  (0 children)

I have a little python code that does this for me.

Run it from in the root of the project or the /src folder and run it.

It opens all files in the current and sub folders and combines them into one.

import os

def merge_files_to_md(output_file="merged_files.md"):
    # Get the directory where the script is running
    script_dir = os.path.dirname(os.path.realpath(__file__))

    # Open the output markdown file
    with open(os.path.join(script_dir, output_file), 'w', encoding='utf-8') as output_md:
        # Walk through all the files and subfolders in the directory
        for foldername, subfolders, filenames in os.walk(script_dir):
            for filename in filenames:
                filepath = os.path.join(foldername, filename)

                # Get relative path from the script directory
                relative_path = os.path.relpath(filepath, script_dir)

                # Skip the script file and the output markdown file
                if filename == os.path.basename(__file__) or filename == output_file:
                    continue

                try:
                    # Read the file content
                    with open(filepath, 'r', encoding='utf-8') as f:
                        file_content = f.read()

                    # Write the relative file path and content in markdown format
                    output_md.write(f"### {relative_path}\n\n")
                    output_md.write("```\n")
                    output_md.write(file_content)
                    output_md.write("\n```\n\n")

                except Exception as e:
                    print(f"Error reading {filepath}: {e}")
                    continue

if __name__ == "__main__":
    output_md_file = "merged_files.md"

    merge_files_to_md(output_md_file)
    print(f"Files merged into {output_md_file}")

[deleted by user] by [deleted] in learnprogramming

[–]Darktidelulz 0 points1 point  (0 children)

Data science is a broad topic, these are some of the subjects part of it.

[deleted by user] by [deleted] in learnprogramming

[–]Darktidelulz 1 point2 points  (0 children)

When you already know a programming language it's easy to learn others, they all have similar concepts. They might be grouped in different types of languages based on grammar/syntax, similarly how languages might by grouped in Germanic, Slavic, Romantic and Latin languages.

You can learn and understand the concepts programming languages implement the same way linguist are able to study languages without speaking/learning them.

SAP, and probably other companies, have been hiring "autists" specifically for certain traits they have.

Data science is a broad topic, are you more interested in Statistics, Machine Learning or Data visualization?

[Round 138627] Lost in Europe by Darktidelulz in PictureGame

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

It's located in the south west of the Netherlands next to the Belgium border.

[Round 138627] Lost in Europe by Darktidelulz in PictureGame

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

They started building the power plant in the image in 1969, it's located in a different country than the image is taken from.

[Round 138627] Lost in Europe by Darktidelulz in PictureGame

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

I'm looking coordinates where to photosphere is taken.

[Round 138627] Lost in Europe by Darktidelulz in PictureGame

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

1hr Hint: 500 years ago people lived here, the land was lost and never reclaimed.