Search found 40 matches

by manyone
Sep 1st, '23, 09:31
Forum: Projects
Topic: Fuzzy Search
Replies: 0
Views: 97015

Fuzzy Search

i came across a fuzzy search algorithm embedded on page 28 of this government publication https://www.bing.com/ck/a?!&&p=c7e8b224d2514dfbJmltdHM9MTY5MzUyNjQwMCZpZ3VpZD0xN2IzNmI3ZC04ZDFkLTY3ODEtMmMxMC03OWJlOGM1MTY2YzQmaW5zaWQ9NTI0Nw&ptn=3&hsh=3&fclid=17b36b7d-8d1d-6781-2c10-79be8c5166c4&u=a1aHR0cHM6L...
by manyone
Aug 15th, '22, 04:54
Forum: Projects
Topic: Base64 encoder/decoder
Replies: 0
Views: 18487

Base64 encoder/decoder

i've uploaded my base64 encoder/decoder for anyone who might need it.
here's a snapshot of the top of the program:
gp base64.jpg
here's the program
base64.gpp
(8.73 KiB) Downloaded 620 times
by manyone
Jul 10th, '22, 08:14
Forum: Projects
Topic: Amortization Schedule
Replies: 0
Views: 17371

Amortization Schedule

amortization table anyone? i've always wondered about the Table components in the component gallery of GP blocks. i've decided to use them in building this amortization program. at the start, it asks for the loan amount (800000), the annual interest rate (4.8), the payment period (360 - # of payment...
by manyone
Jun 19th, '22, 04:21
Forum: Projects
Topic: 15-puzzle, aka sliding tile puzzle
Replies: 1
Views: 6283

15-puzzle, aka sliding tile puzzle

i would like to share my GP version of the classic 15-puzzle (aka sliding tile puzzle)
15-puzzle.jpg
press Go to start!

here's the program
tile15.gpp
(24.69 KiB) Downloaded 508 times
by manyone
Mar 28th, '22, 19:50
Forum: Projects
Topic: Daily Horoscope via API
Replies: 0
Views: 17679

Daily Horoscope via API

i found an API that gives a daily horoscope it didn't take long for me to code this wrapper around it.

here's a sample screenshot.
gp_horoscope.jpg
and here's the project:
horoscope.gpp
(526.74 KiB) Downloaded 631 times
by manyone
Mar 20th, '22, 04:33
Forum: Projects
Topic: HOROSKOV - horoscope generator via Markov chain
Replies: 0
Views: 17332

HOROSKOV - horoscope generator via Markov chain

i just created a GP program that generates horoscopes by using a Markov chain model. source data of about 200 lines of published horoscope text is read and loaded following the rules for building the data structure - and it's ready! here are a few sample "horoscopes" generated by Horoskov! gphoro.jp...
by manyone
Mar 10th, '22, 08:22
Forum: Projects
Topic: Create a Fake Wordle Puzzle Splash Page!
Replies: 0
Views: 17257

Create a Fake Wordle Puzzle Splash Page!

if you’re be doing a presentation soon, or you’ll be meeting with your team and will be sharing a report, or you need to make a fake wordle puzzle (partially solved) in a hurry, this is for you! create a wordle “game” in progress and present it to your audience as a splash page or report cover! just...
by manyone
Mar 7th, '22, 04:27
Forum: Projects
Topic: wordle solver in GP
Replies: 0
Views: 17669

wordle solver in GP

it was only a matter of time... here's a screen shot showing the interaction between wordle solver and wordle player. gpsolver.jpg you start both apps but the solver makes the first move and proposes a first guess (in this example, "quail"). enter this word into the player and wait for its response....
by manyone
Feb 27th, '22, 07:11
Forum: Projects
Topic: wordle in GP!
Replies: 2
Views: 6040

Re: wordle in GP!

i fixed a bug. if the target word was LADLE and the guess was EAGLE, it marked the first E as yellow but did not mark the last E as green! now it marks the last E as green but the first E as unused.
this version fixes cases like these.
gpWordle.gpp
(106.88 KiB) Downloaded 502 times
by manyone
Feb 19th, '22, 05:59
Forum: Projects
Topic: gpt3demo - how to connect to GPT-3 using GP Blocks
Replies: 0
Views: 17385

gpt3demo - how to connect to GPT-3 using GP Blocks

i finally managed to connect to GPT-3 using the method enabled by @calloway that allows us to connect to url's starting with https. i'm sure you've heard about GPT3 by now. it's this super AI that has scanned and assimilated the whole internet and is capable of generating all kinds of text after you...