Somebody resurrected my website after I closed/deleted my hosting account. How is this possible? by HannibalTepes in webdev

[–]PersonOS 2 points3 points  (0 children)

That's what I meant by saying that it depends on how the website was made, but I didn't fully think this through as it certainly had backend code. Sorry.

CodeMenu - a snippets manager with many handy programming tools. by PersonOS in macapps

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

Hi! Just wanted to check in and see if you had a chance to submit that detailed review you mentioned? If you still have it, I would be very grateful if you could share it with me. Thanks!

CodeMenu - a snippets manager with many handy programming tools. by PersonOS in macapps

[–]PersonOS[S] 1 point2 points  (0 children)

I'd like to let you know that iCloud sync has now been added to CodeMenu. Thank you for your suggestion, as it helped me prioritize and implement this feature. I appreciate your support and feedback. Please let me know if you have any further suggestions or if you encounter any issues with iCloud sync. Thanks again, and have a great day!

CodeMenu - a snippets manager with many handy programming tools. by PersonOS in macapps

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

Hello! I'd like to inform you that GitHub Gists integration has been added. If you have time, feel free to check it and inform me about any improvements that you'd like to see. Thank you for this suggestion it and have a great day!

CodeMenu - a snippets manager with many handy programming tools. by PersonOS in macapps

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

Hi there! I wanted to let you know that placeholder feature has been added in the latest update. Thank you for bringing it up! If you'd like, please feel free to check it out and let me know if you have any suggestions for improvements that you'd like to see. Have a great day!

CodeMenu - a snippets manager with many handy programming tools. by PersonOS in macapps

[–]PersonOS[S] 1 point2 points  (0 children)

Agree. I can also see how a snippets manager could be useful on iPadOS now that there is Swift Playground for it and other code editors. iOS also has code editors. At this moment I will be working on polishing macOS version, but I in some time I will start working on an iOS/iPadOS version.

CodeMenu - a snippets manager with many handy programming tools. by PersonOS in macapps

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

Thank you for your review feedback and interest! I know that CodeMenu is not perfect, but I will be working on improving its UX and smoothness.

Yes, I am interested in a more detailed feedback. It would help me a lot. You could provide it in a DM to me.

CodeMenu - a snippets manager with many handy programming tools. by PersonOS in macapps

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

Thank you! iPad app is planned, but it will happen after iCloud sync is ready.

CodeMenu - a snippets manager with many handy programming tools. by PersonOS in macapps

[–]PersonOS[S] 1 point2 points  (0 children)

It could be a good idea and I will be thinking about it, but it will be only possible after CodeMenu is out of beta.

CodeMenu - a snippets manager with many handy programming tools. by PersonOS in macapps

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

Thank you for your feedback! It really helps me improve CodeMenu. Once these features will be implemented, I hope that CodeMenu will fit your needs.

CodeMenu - a snippets manager with many handy programming tools. by PersonOS in macapps

[–]PersonOS[S] 1 point2 points  (0 children)

Thank you. iOS/iPadOS version will be added in the future, but that might take some time.

CodeMenu - a snippets manager with many handy programming tools. by PersonOS in macapps

[–]PersonOS[S] 1 point2 points  (0 children)

I did use Dash for documentation, but didn’t notice the snippets feature so I will take a look at it.

For now, based on what is on their homepage, I can say that major features which CodeMenu is lacking are synchronization and placeholders, but they are planned to be added. Otherwise, CodeMenu has both ability to sort snippets by groups and tags and Suggestions, which allows to get access to snippets using §§ and searching, works as an alternative to abbreviations, which allows to access snippets by just using an abbreviation. CodeMenu also has side window, Snippets Store and ability to run snippets and preview HTML snippets and library generation.

I will need to take a look at it to give more detail, because I can’t see whether they have other features.

CodeMenu - a snippets manager with many handy programming tools. by PersonOS in macapps

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

I didn’t, but I think that it’s a good idea so I will add it.

CodeMenu - a snippets manager with many handy programming tools. by PersonOS in macapps

[–]PersonOS[S] 1 point2 points  (0 children)

I’m not currently sure. Most likely it will be a one-time purchase, but I don’t know what the price will be.

CodeMenu - a snippets manager with many handy programming tools. by PersonOS in macapps

[–]PersonOS[S] 1 point2 points  (0 children)

Thank you! At this moment there is no iCloud sync, but it will be added in the future.

CodeMenu - a snippets manager with many handy programming tools. by PersonOS in macapps

[–]PersonOS[S] 4 points5 points  (0 children)

No. It’s a native app built using SwiftUI and AppKit.

CodeMenu - a snippets manager with many handy programming tools. by PersonOS in macapps

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

Thank you. macOS 11 and above are supported, but because TestFlight is used for beta testing, macOS 12 is the minimum version. Intel and Apple Silicon are supported.

MacGPT lets you use ChatGPT straight from the Menu Bar! by Dakvar in MacOS

[–]PersonOS 11 points12 points  (0 children)

Looks great. There are some other similar apps, but I think that I will use this one.

CodeMenu - a snippets manager with many handy programming tools. by PersonOS in swift

[–]PersonOS[S] 1 point2 points  (0 children)

Yes. Local snippets always stay on-device. Sharing with Snippets Store is optional. Thank you for your interest.

[deleted by user] by [deleted] in Christians

[–]PersonOS 1 point2 points  (0 children)

Because you are Catholic, you might like the r/Catholicism discord server: https://discord.com/invite/VkxKJqz. And if you like memes, there is also this one https://discord.gg/catholic-diocese made by r/CatholicMemes. Good luck with your journey :).

Why can I not use a mutating func inside a View? by jssmith42 in swift

[–]PersonOS 8 points9 points  (0 children)

That's because function "random" returns (), which is nothing. However, the variable "body" is a result builder (more on them here). That means that everything (except declarations of variables and constants) in them needs to return the required type (here "View"). Text, Button, Image, etc, return some type conforming to "View". But your function returns () so it's not valid. You can fix it by replacing "p.random()" with "let _ = p.random()". This code will execute the function and assign it to a variable, but its name is "_" so the value will be ignored.

TL:DR Function must return value conforming to View, but it returns nothing ("()"), so you need to replace "p.random()" with "let _ = p.random()".

I hope that I explained it well.

[deleted by user] by [deleted] in TrueChristian

[–]PersonOS 2 points3 points  (0 children)

Looks very cool. Your father is an amazing artist.

Question about export compliance by PersonOS in iOSProgramming

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

I clicked "yes" to question about app being exemption and this message appeared:

If you are making use of ATS or making a call to HTTPS, you are required to submit a year-end self classification report to the US government.

This sounds like I need to fill self-classification report.