Search found 230 matches

by deeproot
Sat Apr 13, 2024 8:49 am
Forum: Off Topic
Topic: Looking for bootable backup system on USB-drive
Replies: 5
Views: 384

Re: Looking for bootable backup system on USB-drive

I also posted this request in the German forum yesterday and they also recommended the CloneZilla tool. They also recommended RescueZilla, which is based on CloneZilla and comes with a GUI. That sounds excellent to me! I had not heard about RescueZilla and I will definitely be looking at it! Thanks...
by deeproot
Fri Apr 12, 2024 7:56 pm
Forum: Off Topic
Topic: Looking for bootable backup system on USB-drive
Replies: 5
Views: 384

Re: Looking for bootable backup system on USB-drive

I'm not sure I completely understand what kind of result you want and certainly don't know much about new machines (only use old ones!). However, maybe you could look at Clonzilla. it's free and works well - I've used it many times when changing hard drives.
https://clonezilla.org/
by deeproot
Wed Nov 29, 2023 9:49 am
Forum: Feature Requests and Wishlists
Topic: Version 6.10 update?
Replies: 36
Views: 2852

Re: Version 6.10 update?

BarryG wrote: Wed Nov 29, 2023 8:30 am 100% agreed with everything that Kuron said. A great post!
Absolutely right! Completely agree with everything in Kuron's post. PureBasic and its team really are the best :D
by deeproot
Mon Nov 06, 2023 1:54 pm
Forum: Linux
Topic: Install on Chromebook
Replies: 6
Views: 917

Re: Install on Chromebook

Would you advise the PureBasic install to be Debian 32 or should I install Linux Ubuntu 20.04.3 and then the PB Ubuntu version? I've never used a Chromebook and don't know much about them - but from what I've read I don't think installing Ubuntu is a good idea. I'm assuming that your Debian 11 is s...
by deeproot
Tue Oct 24, 2023 11:45 am
Forum: Linux
Topic: Recommended File Explorer & Text Editor for Debian
Replies: 3
Views: 704

Re: Recommended File Explorer & Text Editor for Debian

I also use Geany for most editing tasks. Occasionally for very simple plain text files I sometimes open them in FeatherPad. For a couple of more specialised things I use others, for example for MarkDown files there is ReText and for HTML Bluefish is good. Haven't really given much thought to File Ma...
by deeproot
Mon Oct 09, 2023 10:51 am
Forum: Coding Questions
Topic: Multi-Language Application
Replies: 15
Views: 1045

Re: Multi-Language Application

The one we use for the IDE and which has proven to be very easy and robust: https://www.purebasic.fr/english/viewtopic.php?f=12&t=26729&hilit=language :D It's a great solution - was just about to reply with the same link! Used for over 10 years and still good. Also use the SaveLanguage sugg...
by deeproot
Sat Jul 15, 2023 8:49 am
Forum: Coding Questions
Topic: SQLite gotchas?
Replies: 4
Views: 439

Re: SQLite gotchas?

Very new to PB, somewhat new to SQL . . . . . It occurred to me that I'm not calling anything to commit the transaction. Does the driver automatically handle that? Hi bsilver, and welcome to PureBasic. My understanding (experts may give a better answer!) is that by default each 'write type' command...
by deeproot
Fri Jun 09, 2023 8:30 pm
Forum: Tricks 'n' Tips
Topic: Simplest language system
Replies: 21
Views: 1251

Re: Simplest language system

Fred wrote: Fri Jun 09, 2023 1:10 pm You can use this one which is very good: viewtopic.php?f=12&t=26729&hilit=language
Works for me for years - excellent code from Freak :D
by deeproot
Thu Apr 13, 2023 1:30 pm
Forum: General Discussion
Topic: Buy PureBasic: Worth It?
Replies: 16
Views: 1639

Re: Buy PureBasic: Worth It?

mk-soft wrote: Thu Apr 13, 2023 12:53 pm Looks like advertising. But I stand by it.
Not advertising - it's all true :D

Worth it? - probably the best bargain you will ever find!
by deeproot
Thu Apr 13, 2023 1:24 pm
Forum: Applications - Feedback and Discussion
Topic: Type accented letters and non-keyboard characters (Linux)
Replies: 0
Views: 582

Type accented letters and non-keyboard characters (Linux)

I've just written this small tool which is a Linux rewrite of my old Windows program (ExtraKeys) for typing accented letters and other characters that are awkward for a QWERY keyboard. I wanted this for my own personal use but as the Windows equivalent is very popular I will probably make it availab...
by deeproot
Wed Mar 29, 2023 10:42 am
Forum: Bugs - IDE
Topic: PB 6.01 - Procedures overview gone
Replies: 2
Views: 359

Re: PB 6.01 - Procedures overview gone

It has never happened that the procedure list is empty (unless there are no procedures in selected source). Agree, never happened to me either - many different versions and system installs (but not yet LMDE). A strange thing however, on Linux the IDE always starts with right panel on the the "...
by deeproot
Mon Mar 13, 2023 3:51 pm
Forum: Mac OSX
Topic: Error converting string to int
Replies: 4
Views: 350

Re: Error converting string to int

The value of num.q is correct - no bug I think. 12663CA0EAF6 is hex and = 20230313143030.

To ensure the output number format from Debug use either Str() or Hex().
by deeproot
Tue Feb 21, 2023 5:29 pm
Forum: Coding Questions
Topic: DataBase coding ....
Replies: 13
Views: 1137

Re: DataBase coding ....

Personally, I don't think that Purebasic is very productive, or advisable to use in creating a database application. ... ... However, the development time is HUGE in Purebasic when compared to creating the same in Access. Even though there are only four screens and 3 tables. The only advantage on c...
by deeproot
Mon Feb 13, 2023 12:34 pm
Forum: General Discussion
Topic: Xojo Developers
Replies: 18
Views: 2778

Re: Xojo Developers

Pure Basic was a pleasant surprise for me. I quickly replaced VB6 events with procedure calls in the event loop. Regarding database support, Pure Basic's database support is excellent and quite functional. Totally agree - I was another VB6 to PureBasic convert! My main application is entirely drive...
by deeproot
Wed Feb 08, 2023 10:34 am
Forum: Applications - Feedback and Discussion
Topic: Characters tables (Alternative to the PB tool)
Replies: 54
Views: 3417

Re: Characters tables (Alternative to the PB tool)

idle wrote: Wed Feb 08, 2023 8:34 am You can use these to do surrogate pairs

:) That looks like the code I used a while back - perfect solution and I remember the forum discussions were really helpful in understanding more about Unicode. As always - very grateful to all you experts!