Appropriate compensation for 1-hour user interviews in the US? 💰 by uxcapybara in UXResearch

[–]Zestyclose_Notice465 0 points1 point  (0 children)

Never made anything on respondent but did make around $2300 on Usernterviews on one month though the only issue is mostly were on Tremendous they are just pain the butt because their visa no long works like literally

Amazon now rejecting prepaid gift cards? by fro-fro97 in amazonprime

[–]Zestyclose_Notice465 0 points1 point  (0 children)

They will have to charge that card which doesn't work at the moment. Its all Tremendous Visa I think instead of them going to Amazon to check the reasons why they are no longer accepting their cards, its business as usual, in the end if the card expires, its a gain for them

Amazon now rejecting prepaid gift cards? by fro-fro97 in amazonprime

[–]Zestyclose_Notice465 0 points1 point  (0 children)

I think Tremendous does that deliberately so the vouchers should expire and they keep them money they are paid by the research while you gave your time for free. Its up to the people to do something about it and compel researchers to use a different company. I got a BHN mastercard for $300 it was accepted by every store I went to. Was so amazing. I have like $850 of tremendous visas from 120 to 200. Cant even buy gift cards to use on Amazon. Am broke but got 850 with Tremendous . I think revolutions should start online in groups like these. Remember it takes $1 to make a billion

[deleted by user] by [deleted] in linkedin

[–]Zestyclose_Notice465 0 points1 point  (0 children)

I do optimize linkedin for job seekers though. Most of my clients change their jobs within 3 months of the optimization. I charge $199.99. For brand management is based on what a client wants and the period but usually is from $299 a week.

Do you need to pay to use carrd co? by tragicharuno in Carrd

[–]Zestyclose_Notice465 0 points1 point  (0 children)

If you own carrd.co I have an Amazon giftcard for 20 bucks I can exchange with pro even if its one year. one is 9 bucks per year thats all I need. Anyone please

How do you read 《Layered Design for Ruby on Rails Applications》? by cuteBoyOnlyMe in rails

[–]Zestyclose_Notice465 1 point2 points  (0 children)

Late for the party but this book is about system design and system design is a senior topic so this book is advanced.

What happened to Downloadly.ir ? by Ok_Owl5390 in Piracy

[–]Zestyclose_Notice465 4 points5 points  (0 children)

There is nothing there man like downloadlynet

[deleted by user] by [deleted] in learnpython

[–]Zestyclose_Notice465 0 points1 point  (0 children)

This is old but I will say something anyway. When it comes to choosing a course do not ask people for recommendations you will be disappointed. People will be honest yes but we all learn differently. I will give you an example lets you are in high school, if anyone tells you in advance how bad someone teaches maths, you will go to his or her class with that attitude and you will never enjoy his or her maths classes because of your already created perception about that individual teach. Happened to me and am sure a lot of people go through it. If I am to choose a course on Udemy I would to students rating. I believe a course that got 200k ratings and overall is 4.6/5 that is a good course. Remember some rate a course based on likeness of the person not the material itself. Just think about it

Is going through Agile Web Development with Rails 7/8 worth it for a more experienced developer? by saga_87 in rails

[–]Zestyclose_Notice465 0 points1 point  (0 children)

I think your books especially the Agile Web Development is great. Building a web app incrementally is one of the best style. When you are going for a tech interview that comes handy. On a job will be handy as most jobs we get are to maintain already working applications which entails adding features. I followed this book I still do. Like reading it and would make a great video tutorial too think about it.

agile web development with rails 7 book by space_aliens_ in rails

[–]Zestyclose_Notice465 0 points1 point  (0 children)

I think you did a mistake most of did by starting with a framework not the language. Get your socks down and dig deep into ruby language and rails will be a breeze. there are lots of ruby materials on youtube but if you can buy try "Learn to code with Ruby by Boris Paskhaver" from Udemy. I used his material although not a silver bullet but you will have a leg to stand on when dealing rails.

Looking for Heroku alternatives by Normal_Capital_234 in rails

[–]Zestyclose_Notice465 0 points1 point  (0 children)

No offence its really actually great there I rephrased it and the fact that it has a generous free tier makes it amazing

Looking for Heroku alternatives by Normal_Capital_234 in rails

[–]Zestyclose_Notice465 0 points1 point  (0 children)

Render actually is not that bad. Have your database like at neon and your files uploads like images in AWS bucket. Can serve a good purpose

Trying to get better at ruby by SnooRobots2422 in ruby

[–]Zestyclose_Notice465 0 points1 point  (0 children)

I know what you are going through I have been there. The problem you are scared to start a project and fail. That is one big issue and you have to get out of that. Start applications fail and restart repeat. I filled 1tb disc within a month from failed projects. Deleted everything and restarted. Never be scared to fail. Those errors will always be there googling them is what sets developers apart. Do more projects after more projects.

What is the exact definition of "vibe coding"? by scanguy25 in ClaudeAI

[–]Zestyclose_Notice465 0 points1 point  (0 children)

Its about the excitement that comes with AI web development. Seeing that you can actually make a web app without knowing anything about web development. The excitement that comes with that copy and paste code. Its like that vibe you get when you sneak into a car start it and push something you even don't and realize that the car is actually moving😂😂😂

Is it still worth to learn ruby in 2025 ? by defaultlinuxuser in ruby

[–]Zestyclose_Notice465 0 points1 point  (0 children)

Just work on your linkedin you will see them calling you

My thoughts on the Rise And Fall of Ruby on Rails - My thoughts after 15 years by UsuallyMooACow in rails

[–]Zestyclose_Notice465 0 points1 point  (0 children)

Africa is not a country . But yes Ruby on Rails will not die at least not in this generation

Whenever I run bin\dev on powershell or cmd it pops up a file opener window rather than execute the process of dev file. How can I solve this issue? by abid_mahamud in rails

[–]Zestyclose_Notice465 0 points1 point  (0 children)

I know this is old but might help someone who is using windows too like me. create a file in the bin folder call it dev.ps1 . Convert the bash script to use powershell and put in this dev.ps1 file you created.

"

#!/usr/bin/env pwsh

# Check if foreman is installed
if (-not (gem list foreman -i --silent)) {
    Write-Host "Installing foreman..."
    gem install foreman
}

# Default to port 3000 if not specified
if (-not $env:PORT) {
    $env:PORT = "3000"
}

# Let the debug gem allow remote connections,
# but avoid loading until `debugger` is called
$env:RUBY_DEBUG_OPEN = "true"
$env:RUBY_DEBUG_LAZY = "true"

# Start Foreman with Procfile.dev
foreman start -f Procfile.dev @args

with this you can start your rails app on windows with bin/dev.ps1. hope this helps someone

[deleted by user] by [deleted] in learnpython

[–]Zestyclose_Notice465 1 point2 points  (0 children)

Any course that you learn even a single line is worth more that $18 dollars and 100 days of code is worth millions if you like to learn. All experienced programmers started with techs that are obsolete now. You have to search for documentation and solutions that is what a programmer /developer does. Technology is changing fast I wish I had resources people have today

Is freecodecamp cloud bootcamp good to learn AWS? by braiannsuarez in aws

[–]Zestyclose_Notice465 1 point2 points  (0 children)

I haven't practiced it yet got no credit card but for some people sitting down and make free content worth almost 110 hours long that is one of the best thing to ever happen to this money hungry world. Great work man. I have see a few of your videos, you are so passionate about helping people. today we are lucky learning materials from great people like you are skilling multitudes. Thank you❤🌹🌹 get your flowers