chris parello

Results 23 comments of chris parello

edit the the inference file to use the 1024 model. there is a recent thread about this with the required changes

In Elons world you prob need higher access

something like this, but this is quick and crude psuedocode setInterval(function(){ node nameOfscript.js one two three four five },60000) //inside nameofscript.js const myArgs = process.argv.slice(2); console.log('myArgs: ', myArgs); myArgs[0] =...

try something like this just to understand how command line args work, then copy all of your tweeting code into testTweet.js. your setinterval should be in index.js and your tweet...

oh duh, i forgot you have to use child process const { spawn } = require('node:child_process'); const bat = spawn('node', ['tweets.js', 'testTweet']); bat.stdout.on('data', (data) => { console.log(data.toString()); }); bat.stderr.on('data', (data)...

I would do it like this, make index call tweets.js and have all the tweet code in tweets.js, then inside index loop or interval to repeat index.js: console.log('Starting'); const {...

this guy has a video series https://www.youtube.com/playlist?list=PLRqwX-V7Uu6atTSxoRiVnSuOn6JHnq2yV

with php8 and laravel 9 i get this error, any ideas? Importer::make('Csv')->load(storage_path('app') . $reportName)->getCollection(); syntax error, unexpected identifier "reader", expecting variable

thanks, i was looking for a fork @lauridskern I wish there was a way to make this always scroll the last input right to the keyboard, or even choose the...