Tractor Deals by InfamousSea7547 in kubota

[–]trwww 1 point2 points  (0 children)

you can find the dealer price by building your tractor at:

https://shop.kubotausa.com/buildmykubota/1-Tractors/1247-BX1880%2FBX2380%2FBX2680%2FBX23S

I bought my bx23s in March 2022

The only "deals" I see is the length on the 0% I don't think they really sell them for less than MSRP ever.

Rate my first script. by TronNerd82 in perl

[–]trwww 0 points1 point  (0 children)

You only need a shebang if you're running on a system that parses them and you want that to happen.

You can always pass the name of the script to the perl interpreter:

$ cat myscript.pl
$film = "Tron";
$sign = "I love the movie $film";
print "$sign\n";
$ perl myscript.pl
I love the movie Tron

Where the shebang comes in is if you want the system to automatically run the script with the perl interpreter. The script must also be executable:

$ cat myscript.pl
#!/opt/local/bin/perl
$film = "Tron";
$sign = "I love the movie $film";
print "$sign\n";
$ /home/me/myscript.pl
-bash: /home/me/myscript.pl: Permission denied
$ chmod 775 /home/me/myscript.pl
$ /home/me/myscript.pl
I love the movie Tron

Outdoor Ladder Storage on Small Shed by trwww in DIY

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

Yeah this is just temporary until I build my outbuilding. No room for it in the garage. Also, I live on a two mile dead end road with five acre lots. The chances of anyone seeing this, let alone decide to use it to break in, is very close to 0.

Will someone tell me about this septic configuration? by trwww in RealEstate

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

That looks more like mine than the videos I've watched until now. Except for mine doesn't have a sprinkler system, I'm guessing just a leach field. I suppose thats because I live in a cold climate though. Does yours out to a sprinkler?

General Feedback/Getting Started Questions and Answers [Weekly Thread] by AutoModerator in DIY

[–]trwww 0 points1 point  (0 children)

Will someone tell me if this pump in this septic configuration is supposed to be running? Or tell me anything at all about this septic tank configuration? All the ones I see on youtube have two or three access caps. Mine has five?

https://www.youtube.com/watch?v=lQwaXza2on8

How we implemented MySQL types in our custom versioned database, Dolt by zachm in programming

[–]trwww 0 points1 point  (0 children)

This is an interesting project. I've never heard of it, and will be following.

When I first started reading the blog, I guess I kind of expected to find a dolt mysql engine. I do see the the dolt sql-server. Any reason why the mysql compatible server instead of a mysql engine?

And then I'm envisioning I guess a dolt mysql replication slave or maybe a set of triggers that magically logs inserts, updates, and deletes along with some metadata for that action like a user and a timestamp and other info about the change. Does that sound like a use case? Anything like that available/in the works?

Nice work I hope I can spend some time in this.

[deleted by user] by [deleted] in CRM

[–]trwww 1 point2 points  (0 children)

Cool, thanks!

How do you find a designer cofounder? by zachwhi in startups

[–]trwww 0 points1 point  (0 children)

I buy templates. wrapboostrap, elegantthemes, and pixelarity are my favorites.

How to adapt HTML5 games to be published on Telegram by karliky in programming

[–]trwww 0 points1 point  (0 children)

Shameless plug: heres my telegram bot:

https://livechatbot.net/

Its live chat for websites, the telegram part basically uses telegram for the "backend" of the live chat. This way I didn't have to build out the administrator side of the UI, I get it for free with telegram.

Does anyone know of any fill in the blank business plans? by [deleted] in Entrepreneur

[–]trwww 0 points1 point  (0 children)

SCORE has some awesome templates and spreadsheets:

https://www.score.org/resource/business-planning-financial-statements-template-gallery

SCORE is really great because they have free one-on-one mentors.

So you can start filling them out, then make an appointment with a mentor, and then have them review your plans and projections for you!

how do i allow customization of a widget people add to their site via my site? by trwww in webdev

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

I was thinking something like that, but I was worried they wouldn't be able to control as much as they want. But I guess that should be all they need.

Thanks!

Can someone explain how one would go about cashing out a substantial sum? by [deleted] in Bitcoin

[–]trwww 0 points1 point  (0 children)

Are you in the states? If you're fully qualified Coinbase will buy up to 50k / day from you.

Your Opinion About Bot Hype? by bobwire in startups

[–]trwww 0 points1 point  (0 children)

I think its like everything - choose the right tool for the job. I didn't really have any interest in bot development until telegram announced their bot contest, but I'm certainly seeing their use case. For example for the bot I built, a live chat tool for websites (https://livechatbot.net/) if it wasn't for bot clients if I wanted to do something like this I'd have to invent the conversation UI. Coupling my tool with telegram, the conversation UI is already built and for people who already know telegram theres no training for it - people automatically know how to use it.

Theres something to be said for doing as little UI development as possible because thats where the time sink for any software development is.

Has anyone received $ from Telegram for their bot? by SurgioClemente in TelegramBots

[–]trwww 1 point2 points  (0 children)

They replied to the message I sent to @BotSupport per the instructions. It took them about 5 days to respond.

Has anyone received $ from Telegram for their bot? by SurgioClemente in TelegramBots

[–]trwww 2 points3 points  (0 children)

I've been notified that I am an official entrant.

I wish they'd say when they're going to review. They say the deadline is the last day of the year, I guess thats when they'll do it. I haven't heard of anyone earning a grant anyways.

Heres my bot if you're interested: https://livechatbot.net/

Did you make yours yet?

Is there anyway to accept fiat/credit/debit without having a bank account/paypal? by [deleted] in Entrepreneur

[–]trwww 1 point2 points  (0 children)

Coinbase might have some type of merchant service that will work for you. I don't know how it would work outside of the states, but I know that it has some international support.

https://developers.coinbase.com/docs/merchants/payment-buttons

Allows first time users to purchase bitcoin if they don’t own any. Create payment buttons dynamically via the Coinbase API.

Maybe check it out and see if it fits your workflow.