Hallo! Does anybody already tried to use rabbit to write some program 4 other devices?
I ask and,after some questions,it Said it can do it.
Actually I would love 2 use it 2 improve other stuff(flipper zero )
I have never done coding or anything - but I believe it can write code for you.
As it what you want it to write and then copy the text from the rabbit hole.
someone just posted that it doesnt write code, check the feed
The issue is I have no idea what code should look like, but it was quite simple to get the r1 to give me the following prompt:
Sub CopyAndPaste()
' Define the source and destination ranges
Dim sourceRange As Range
Dim destinationRange As Range
' Set the source range (e.g., A1 to B10)
Set sourceRange = ThisWorkbook.Sheets("Sheet1").Range("A1:B10")
' Set the destination range (e.g., C1 to D10)
Set destinationRange = ThisWorkbook.Sheets("Sheet1").Range("C1:D10")
' Copy the source range
sourceRange.Copy
' Paste into the destination range
destinationRange.PasteSpecial Paste:=xlPasteAll
' Clear the clipboard
Application.CutCopyMode = False
End Sub
Instructions:
- Open Excel and press
ALT + F11
to open the VBA editor. - Go to
Insert
>Module
to create a new module. - Copy and paste the above code into the module window.
- Modify the
sourceRange
anddestinationRange
as needed to fit your specific use case. - Close the VBA editor and run the macro by pressing
ALT + F8
, selectingCopyAndPaste
, and clickingRun
.
This macro will copy the data from the specified source range and paste it into the destination range on the same sheet. Adjust the sheet names and ranges as necessary for your specific needs.
nice basic application … ai should get a head of it
Hi @Meth,
good question. As a worker in the IT section it would be very helpful.
A possible way could be to use the following prompt:
Example:
‘Use perplexity to write a code in HTML. For a website, for news and photos.’
‘Use perplexity to generate a Java code for an app to …’
In your rabbit-hole you will get the result or a code or hints to create the code which you can use for.
I tried with some vocal prompt and it worked.
I even ask if it can write some code for other devices and it said that,giving few examples, will do it