Recent content by tr4n3

  1. tr4n3

    I'm a backend developer, but i need to learn CSS, where should I start?

    I must recommend TailwindCSS too, rarely anyone is dealing with vanilla CSS, by learning Tailwind you get build stuff right away, prototype fast and also learn CSS. Basically it is a wrapper around css so that you don't have to write style="padding-left: 2rem;" but instead you write class="pl-2"...
  2. tr4n3

    Does anyone here likes to wear the mask?

    I personally don't mind it, I don't hate it or like it. Sometimes I go to the store put the mask on, come back home and sit at my computer for hours before realizing I had the mask on the whole time.
  3. tr4n3

    Blackhatworld, what music are you listening to for the weekend?

    Right now - Hans Zimmer soundtracks from Dune usually I go with neurofunk drum and bass or more soundtracks
  4. tr4n3

    Iff You Had To Choose 1

    Red: you touch power cables on accident and you die Green: at first you can't control it and you die Yellow: you get diabetes and you die Blue is the way to go
  5. tr4n3

    What is this text-to-speech software?

    You need to have Python 3x installed and pip then I believe you can just run: pip install -U TTS tts --text "This is my text." --out_path this/is/my/output.wav
  6. tr4n3

    What is this text-to-speech software?

    The most realistic and best of all free TTS I have found is this one Open source, maintained by Mozilla You can train your own models but it also comes with pretrained models. The only downside is that it takes some time to convert text to speech. Here are some examples
  7. tr4n3

    Using OpenAI to generate text content

    Increase presence penalty, that causes it to choose new things to talk about basically. In case it uses different sentences but repeating a lot of the same words then increase frequency penalty.
  8. tr4n3

    Using OpenAI to generate text content

    No problem, that stop simply means that it should stop before triple quotes, instead of it starting to write a new essay on some different subject and stopping in the middle when it runs out of tokens.
  9. tr4n3

    What are your methods on choosing your next blog topics?

    I use it to write blog posts and to get new topics.
  10. tr4n3

    Using OpenAI to generate text content

    For example Name your first example essay "How to land your first job as a software developer" Then write an "essay" about it, basically just like a blog post or however you want it. Then where it says "Dynamic title", here you can insert any topic you'd like and OpenAI is going to write the...
  11. tr4n3

    Using OpenAI to generate text content

    I did it like this: Prompt: Write an essay about 'Insert title here': """ Write a good example. """ Write an essay about 'Dynamic title here': """ Parameters: temperature=0.7, max_tokens=800, top_p=1, frequency_penalty=0.3, presence_penalty=0.8, stop=["\"\"\""]
  12. tr4n3

    How to stop bot traffic?

    Cloudflare Wordfence Blackhole for bad bots
  13. tr4n3

    How to stop bot traffic?

    Are you using Wordpress or something similar?
  14. tr4n3

    How to stop bot traffic?

    Cloudflare, captchas, wordpress fail2ban etc.. Are you talking about any bots including google crawlers or just random "bad" bots?
Back
Top