all my adware i only use offline. hahaha. i know that not everyone can work this way.
thanks for the extra tips. couldn't find freebox but i'll check again
Search found 1446 matches
- May 28, 2022 3:45
- Forum: General
- Topic: Can someone recommend a text editor for Android?
- Replies: 7
- Views: 334
- May 27, 2022 9:47
- Forum: General
- Topic: Can someone recommend a text editor for Android?
- Replies: 7
- Views: 334
Re: Can someone recommend a text editor for Android?
quickedit. thanks for the fb compile info
- Mar 17, 2022 16:51
- Forum: General
- Topic: personal project - new image format
- Replies: 13
- Views: 2507
Re: personal project - new image format
Base128 encode / decode is working!! saves as formatted data statements
- Mar 15, 2022 19:05
- Forum: General
- Topic: linux segfault imageinfo(screen..
- Replies: 8
- Views: 280
Re: linux segfault imageinfo(screen..
Interesting. i forget who posted the if test for imageinfo.
Well thanks i guess ill work on my string problem then. After sparky finishes installing
Well thanks i guess ill work on my string problem then. After sparky finishes installing
- Mar 15, 2022 17:40
- Forum: General
- Topic: linux segfault imageinfo(screen..
- Replies: 8
- Views: 280
Re: linux segfault imageinfo(screen..
on MX Linux an error with this bit of code is
double free or corruption (top)
double free or corruption (top)
Code: Select all
screenres 800,600
var i = 150
dim as any ptr im = imagecreate(i,i)
imagedestroy im
if imageinfo(im) = 0 then imagedestroy im
- Mar 15, 2022 16:23
- Forum: General
- Topic: linux segfault imageinfo(screen..
- Replies: 8
- Views: 280
Re: linux segfault imageinfo(screen..
Thanks for the report. I tried on mx linux and sparky both give the error
- Mar 15, 2022 11:19
- Forum: General
- Topic: float result on cint(udt cast
- Replies: 12
- Views: 686
Re: float result on cint(udt cast
i'll log it on sf
- Mar 15, 2022 7:17
- Forum: General
- Topic: linux segfault imageinfo(screen..
- Replies: 8
- Views: 280
linux segfault imageinfo(screen..
bug? .. mx linux (deb
Code: Select all
var w = 800, h = 600
screenres w,h
dim as any ptr p = imagecreate(100,100)
if imageinfo( screenptr) = 0 then put screenptr, (0,0), p, pset
if imageinfo( p) = 0 then imagedestroy p
- Mar 12, 2022 17:14
- Forum: General
- Topic: q for dodicat
- Replies: 3
- Views: 289
Re: q for dodicat
think this is what i want
Base64 Enc Dec
Base64 Enc Dec
- Mar 12, 2022 11:13
- Forum: General
- Topic: q for dodicat
- Replies: 3
- Views: 289
Re: q for dodicat
i think so. did a search on my android tablet (was away from comp) found something of yours from 2018
i was thinking the purpose was to eliminate forum-problematic ascii, but maybe that doesn't exist.
the power of assumption!
i was thinking the purpose was to eliminate forum-problematic ascii, but maybe that doesn't exist.
the power of assumption!
- Mar 12, 2022 4:01
- Forum: General
- Topic: q for dodicat
- Replies: 3
- Views: 289
q for dodicat
wondering if you have a stripped down version of your compression / decompression forum text converter
Re: SIne Wave
nice one dodicat
- Mar 10, 2022 3:29
- Forum: General
- Topic: float result on cint(udt cast
- Replies: 12
- Views: 686
Re: float result on cint(udt cast
oh great im not crazy
(late reply sry .. OS issue)
my udt borrowed from is 'multi-instance' RNG with an int output

my udt borrowed from is 'multi-instance' RNG with an int output
- Mar 09, 2022 7:35
- Forum: General
- Topic: float result on cint(udt cast
- Replies: 12
- Views: 686
float result on cint(udt cast
bug?
Code: Select all
type mytype
declare operator cast as single
dim as long dummy
end type
operator mytype.cast as single
return rnd
end operator
dim as mytype my_t
for i as long = 1 to 9
? cint(my_t)
next
Re: Odometer
i forgot to make _num shared. but now i see. so that's a bit more tricky. i'm actually one of the slowest coders on here. if it's a problem that interests you because you like math, give it a go [edit] you'll need a mod function (probably) and just work through it dim as long a = 9 dim as long b = 4...