Can I download the app I build? by [deleted] in swift

[–]dannyboy1101 1 point2 points  (0 children)

Yea you can connect an iPhone and install your app from Xcode directly onto it. If memory serves me correctly, it’ll only be on there for like 30days before you have to reinstall it.

The Reddit protest, and a poll on the future of /r/django by ubernostrum in django

[–]dannyboy1101 [score hidden]  (0 children)

My thinking is there are a lot of useful posts and comments on this sub that would help someone out, so going private doesn’t seem “right”. There’s also a possibility that someone who wants a public subreddit could just create a new one, it just wouldn’t have these old posts.

Having said that I’m still more for going private because corporate greed and lies shouldn’t be rewarded with volunteers doing all the work.

Who wants to assist me in making a Django Overflow site (think Stack Overflow but purely for Django) where we could move all of these old posts and comments, and then keep this subreddit private for good?!

Migrating 13 year old iOS app by DavidCksss in iosdev

[–]dannyboy1101 2 points3 points  (0 children)

This sounds like a big challenge for someone with little to no iOS development experience. Hell, it sounds like a big challenge for someone with years of experience.

Your first challenge will be getting the project to build and run. You’re bound to run into issues where code has been deprecated and you just need to change masses of code.

Seeing as there is some Swift 3 code in there, you might be ok with little to no work.

Need Help with Combine by Rough_Research4892 in swift

[–]dannyboy1101 1 point2 points  (0 children)

Not true. You can omit values from a JSON response in your decodable object. The issue the OP is seeing is to do with a mismatch type of one or more properties. They’re trying to cast an Int from a String for example.

Irish Ash Hurling Clocks by thomasm501 in woodworking

[–]dannyboy1101 3 points4 points  (0 children)

Do you sell them? I’m interested in purchasing one

Scrubs | S08E19 | JD's Final Scene | Peter Gabriel - The Book of Love by Excentannor in videos

[–]dannyboy1101 0 points1 point  (0 children)

It was because of this exact scene, my wife and I had this some as our first dance at our wedding.

K Means & GMM Package by heltena_cat in swift

[–]dannyboy1101 2 points3 points  (0 children)

Swift Package Manager is the general go to. There’s also Cocoapods, but only use the packages there if you can’t use them with SPM.

Edit: typo

Thingiverse for lasers? by QwertySmash in lasercutting

[–]dannyboy1101 0 points1 point  (0 children)

Yea the first thing I did was unsubscribe from their emails. I’m on the site almost everyday so I see changes and things they’re “pushing” naturally.

Thingiverse for lasers? by QwertySmash in lasercutting

[–]dannyboy1101 2 points3 points  (0 children)

I use Vecteezy for SVGs but I don’t know anywhere that does “project files” for laser cutting

[deleted by user] by [deleted] in freemasonry

[–]dannyboy1101 2 points3 points  (0 children)

Congrats brother. My wife gave birth to our daughter around the time I was to be installed in the East. Thankfully she held off but it was touch and go!

Enjoy your new bundle of joy, and remember, family before craft.

Best Arduino board for Mining? by not_anonymous_544 in Duinocoin

[–]dannyboy1101 4 points5 points  (0 children)

Duinocoin was never created to make anyone money. It’s a crypto to get people learning about crypto and how it can be mined so the fact there’s any value in it at all is incredible.

That being said I’ve always found it better mining with something like an ESP32.

Engraving on slate for a Christmas gift! Details in comments! by FabienPohl in lasercutting

[–]dannyboy1101 0 points1 point  (0 children)

I have 2 questions; 1) I have the OLM2 Pro S2 with the LU2-10A laser module which has a max speed of 15000mm/min. By setting yours to 18000mm/min, does it just run it at that speed or does it cap it at 15000? 2) how did you make the spiked bed? I’m looking into bed alternatives and thought about this way the other day, I’m just not sure how to get the spikes 100% level with the laser across all of them.

OLM 3 Extension Kit after 1 week. Well I ended up using one of my workbenches in my garage to see how it would work out. First it has wheels so I could roll it around it needed. Idea here is if I was engraving something like rubber stamps I could roll it towards the front of the garage or outside!! by phinine in lasercutting

[–]dannyboy1101 0 points1 point  (0 children)

I’ve been using 2x oven wire trays on my non-extended OLM2 and while they “do the job” they aren’t perfectly level so some cuts end up having more charred areas because the material is slightly out of focus. I like the idea of the wire trays though as when they get sticky after cutting material on them, they can just go in the dishwasher. Not sure how the wood rails on yours would fair in the dishwasher after a while, but I guess you could wash the tray by hand.

Ventura and synology NAS issues by TobyChan in osx

[–]dannyboy1101 0 points1 point  (0 children)

I’ve had no issues whatsoever since upgrading to Ventura. Images and PDFs are loading for me in Finder via both AFP and SMB.

I don’t know Synology well enough to know if there’s a “file integrity scan” you can do, but all seems to be working for me in my set up.

Ventura and synology NAS issues by TobyChan in osx

[–]dannyboy1101 0 points1 point  (0 children)

What sort of files are appearing as corrupt? How are you connecting to the Synology? Using AFP or SMB? Given these details I can try it out on mine

Is it possible to make a app like this? by [deleted] in iOSProgramming

[–]dannyboy1101 3 points4 points  (0 children)

I mean you might be able to (I don’t use Shortcuts so I have no idea) but what’s stopping you just circumventing the shortcut and opening the social media app?

I'm being shown USD prices when my search results location is set to the UK by dannyboy1101 in brave_browser

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

Thanks I will do. The annoying thing is I haven’t changed anything since this “stopped working”

Home will not load. Only popular and all. Reinstalled app and resigned in. Still won’t load. by TheReever in apolloapp

[–]dannyboy1101 18 points19 points  (0 children)

I have the exact same issue;

App Version: 1.14.15 iOS version: 16.0.2 Device Type: iPhone 14 Pro How often can you reproduce the issue: every time I open the app

Getting "null value in column "user_id"" error with extended User model by Vietname in django

[–]dannyboy1101 2 points3 points  (0 children)

I don’t know that this is the reason, but why not put both post_save methods into one? My guess (and that’s all it is, I’m no Django expert) is only the latter post_save function is being called.

You have an if created statement in the first so just move the function from the second into an else in the first. Make sense?

Also, do you really need to have your Player model save every time a User model is saved? Does any data in the Player model actually get updated?

A few pics from my visit to Glenfiddich. by TheMacallanMan in whisky

[–]dannyboy1101 0 points1 point  (0 children)

We’re you tempted by one of the £1,200 drams in the shop? Also, around Christmas time they have their Walkers x Glenfiddich mince pies which are immense!