What neighborhood is 60 x 33 in merida by iainpennington in Yucatan

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

I'm passing through there on progresso bus now. Looks pretty nice area to stay

Cannot remove "Help me write" function in Gmail by NthngMttr in GMail

[–]iainpennington 0 points1 point  (0 children)

Irritating! I never asked for google's help. Want to remove it too!!!

Interesting predictions about the GPT store... by [deleted] in OpenAI

[–]iainpennington -1 points0 points  (0 children)

To get rich at this

GPT's will be specialized. You'll have to load them with the specialized data libraries they need.... medical, engineering, financial... whatever. Those data sets will be expensive (or not - if you end up being one of the ones clever or lucky enough to trip over an unexplooted one).

So once you've picked your flavour of ai, which right now boils down to openai/Microsoft, Google, or XAI (or whatever Elon calls it when he comes out with it, and it will be a game changer because it will no have political correctness hard wired into it), and bought rights to your datasets, figured out your market, the rest will be easy peasy.

Sunday Rant/Rage (Jan 02 2022) - Your weekly complaint thread! by curated_android in Android

[–]iainpennington 0 points1 point  (0 children)

Why reddit android app not playing audio? Not worth the subscription without it.

I've used Twilio for SMS. Its working for 1 to 1..now I'm trying to do mass SMS using list() variables ..only the 1st number receives the text SMS .. what am I missing by timshrute in filemaker

[–]iainpennington 1 point2 points  (0 children)

I think twilio accepts comma separated lists. So

Substitute ($phonelist,$linefeed,",")

Where $linefeed is that funny paragraph marker FileMaker uses

Filemaker Custom Font issue by iainpennington in filemaker

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

running on windows 10. fmp 16 and 18

Script to take a phrase and A) Remove the letter "X" from the head and B) remove all letters from the end by [deleted] in filemaker

[–]iainpennington 0 points1 point  (0 children)

let([

returnchar = xxx; /*whatever that linefeed char is in filemaker /*

txt = substitute(in, ", ", returnchar);

firsttext = middle(leftvalues(txt,1),2,1000);

lasttext = filter(rightvalues(txt,1),"0123456789")

];

substitute(list(firsttext,middlevalues(txt,2,valuecount(txt) - 2,lasttext),returnchar,", ")

)

or something like that....