Search found 683 matches

by don570
Thu Nov 21, 2024 12:12 am
Forum: EasyOS
Topic: Easy Daedalus 6.4.4
Replies: 214
Views: 12211

Zig software Foundation

...another 4 years, i'll be pushing close to 80. If still alive, likely to be doing some things on the bucket list. Ubuntu Touch mobile operating system set up UBports Foundation https://ubports.com/foundation/ubports-foundation Zig has set itself up as a Foundation and receives donations. Zig ...
by don570
Wed Nov 20, 2024 9:12 pm
Forum: EasyOS
Topic: Ucupaint and Easy OS Daedalus 6.4.3
Replies: 7
Views: 562

Blender 4.3 - video editor

The newest version of Blender 4.3 has improvements so it can used as a video editor
Instructional video:
https://www.youtube.com/watch?v=EVeQdze7J7k
_________________________________________________________-

by don570
Sun Nov 17, 2024 8:25 pm
Forum: EasyOS
Topic: The Zig language
Replies: 11
Views: 551

Make Executable file

I found out how to make executable file Just put hello.zig in a project folder, then CD into that folder and run this command zig build-exe hello.zig There is an executable file created that is named 'hello'. Right click on it and menu allows 'Run-in-terminal' screen-terminal.png The app is run in ...
by don570
Sun Nov 17, 2024 7:54 pm
Forum: EasyOS
Topic: wine-easy-5.11c_amd64.pet
Replies: 0
Views: 115

wine-easy-5.11c_amd64.pet

Wine works to edit audio In latest Easy OS. Download - available 295mb md5sum: c83b575fe423984c65abad4e1bc87fa7 https://drive.google.com/file/d/1RETazZOZj_hwS_EK7GOIsbKbWq50PN7N/view?usp=drive_link Instructions are needed to run it properly. I first suggest downloading a windows program to test it ...
by don570
Sun Nov 17, 2024 7:24 pm
Forum: EasyOS
Topic: Ucupaint and Easy OS Daedalus 6.4.3
Replies: 7
Views: 562

Shotcut and TTSMaker

How to make video 1) I recorded the screen using terminal command ffmpeg https://oldforum.puppylinux.com/viewtopic.php?t=75139 but I couldn't use a microphone 2) I used Shotcut to remove useless parts and added subtitles to screen 3) I made a text script 4) TTSMaker converted text to audio. A free ...
by don570
Tue Nov 12, 2024 9:34 pm
Forum: EasyOS
Topic: Easy Daedalus 6.4.4
Replies: 214
Views: 12211

software issues

1) When I use Uextract to rip open .mhtml files I get warning message in terminal ---> I need ripmime. The version in fatdog64 works.... https://distro.ibiblio.org/fatdog/packages/900/ripmime-1.4.0.10-x86_64-1.txz ______________________________________ 2) When I click on .webp files the image viewer ...
by don570
Mon Nov 11, 2024 10:03 pm
Forum: EasyOS
Topic: Ucupaint and Easy OS Daedalus 6.4.3
Replies: 7
Views: 562

Ucupaint and Easy OS Daedalus 6.4.3

I made a video showing blender and Ucupaint on Easy Os 6.4.3
The tutorial put a decal on a sphere.
https://youtu.be/3J-nVhtug_0

Screenshot 2024-11-11 16.59.24.png
Screenshot 2024-11-11 16.59.24.png (121.39 KiB) Viewed 562 times

Ucupaint is free blender add-on
https://github.com/ucupumar/ucupaint

__________________________________________________

by don570
Sun Nov 10, 2024 9:04 pm
Forum: EasyOS
Topic: Easy Daedalus 6.4.4
Replies: 214
Views: 12211

Re: Easy Daedalus 6.4.3

Easy Daedalus 6.4.3
Checked Blender , Samba, pclock and audio recording and they worked.
______________________________________________

by don570
Fri Nov 08, 2024 9:05 pm
Forum: EasyOS
Topic: EasyOS Scarthgap-series version 6.4.4
Replies: 43
Views: 2720

zig files

No, .zig is not an executable, it is Zig code. It has to be compiled first. It is theoretically possible to run a .zig file as a script, see here: zig is able to create an executable and then run the code https://fig.io/manual/zig/run zig run hello.zig The zig file is ordinary text as far as Mime ...
by don570
Thu Nov 07, 2024 10:15 pm
Forum: EasyOS
Topic: EasyOS Scarthgap-series version 6.4.4
Replies: 43
Views: 2720

'.zig' extension

I see that run-in-terminal depends on MimeType

Code: Select all

MimeType=application/x-shellscript;application/x-executable

Hopefully the '.zig' extension is recognized as a executable script
________________________________________________________

by don570
Wed Nov 06, 2024 8:15 pm
Forum: EasyOS
Topic: EasyOS Scarthgap-series version 6.4.4
Replies: 43
Views: 2720

Pupmd5sum 1.8

The other right-click utility that I use a lot is 'Pupmd5sum 1.8' ( originally written by 01micko but improved by several people). However it requires the menu to show for all types of packages and images. I'm not sure if I used SendTo or OpenWith folder ??? It was whatever the older Puppies used. I ...
by don570
Tue Nov 05, 2024 10:18 pm
Forum: Off-Topic Area
Topic: Pine64 - New products
Replies: 0
Views: 120

Pine64 - New products

Pine64 has written about new products in September bulletin. https://pine64.org/2024/10/02/september_2024/ ________________________________________ PinePhone Pro Author: CarbonatedCaffeine The PinePhone Pro switched its default operating system from Manjaro at the end of 2023 to Adam Piggz’s port of ...
by don570
Sun Nov 03, 2024 6:34 pm
Forum: EasyOS
Topic: Easy Daedalus 6.4.4
Replies: 214
Views: 12211

UExtract

I use UExtract to open MHTML files that chrome browser likes to use.
But images will open with a double click in Easy.

by don570
Sun Nov 03, 2024 6:22 pm
Forum: EasyOS
Topic: The Zig language
Replies: 11
Views: 551

Zig language examples

This example is called string repetition with allocator const std = @import("std"); fn repeat( allocator: *std.mem.Allocator, original: []const u8, times: usize, ) std.mem.Allocator.Error![]const u8 { var buffer = try allocator.alloc( u8, original.len * times, ); for (0..times) |i| { std.mem ...
by don570
Sun Nov 03, 2024 6:20 pm
Forum: EasyOS
Topic: The Zig language
Replies: 11
Views: 551

Zig language examples

This is called a generic linked list const std = @import("std"); const stdout = std.io.getStdOut().writer(); fn LinkedList(comptime T: type) type { return struct { const Self = @This(); pub const Node = struct { next: ?*Node = null, data: T, }; first: ?*Node = null, pub fn prepend( list: *Self, new ...
by don570
Sun Nov 03, 2024 6:18 pm
Forum: EasyOS
Topic: The Zig language
Replies: 11
Views: 551

Zig Examples

Zig wiki page has more examples...To print to screen const std = @import("std"); pub fn main() void { std.debug.print("Hello, Zig! Ready to revolutionize systems programming?\n", .{}); } or const std = @import("std"); pub fn main() !void { const stdout = std.io.getStdOut().writer(); try stdout ...
by don570
Sat Nov 02, 2024 6:46 pm
Forum: EasyOS
Topic: The Zig language
Replies: 11
Views: 551

Video - Zig language using EasyOS

Zig language programming using EasyOS Daedelus 6.4.1 I made a video to show how easy it is to program using DEVX file of EasyOS Daedelus 6.4.1 Just download 3 files from https://distro.ibiblio.org/easyos/amd64/packages/sfs/easyos/devuan/daedalus/ I used Sublime text editor Video available https ...
by don570
Fri Nov 01, 2024 8:24 pm
Forum: EasyOS
Topic: Easy Daedalus 6.4.4
Replies: 214
Views: 12211

Zig programming language

I made a video to show how to set up the zig programming language.
viewtopic.php?p=134800#p134800
_____________________________________

by don570
Thu Oct 31, 2024 11:18 pm
Forum: EasyOS
Topic: Easy Daedalus 6.4.4
Replies: 214
Views: 12211

Download problem

Download problem for daedalus/easy.png https://distro.ibiblio.org/easyos/amd64/packages/sfs/easyos/devuan/daedalus/easy.png Also https://distro.ibiblio.org/easyos/amd64/packages/sfs/easyos/oe/kirkstone/easy.png Screenshot 2024-10-31 19.12.47.png ___________________________________________ Also I ...
by don570
Thu Oct 31, 2024 11:15 pm
Forum: EasyOS
Topic: Easy Daedalus 6.4.4
Replies: 214
Views: 12211

Download problem

double post

by don570
Thu Oct 31, 2024 10:48 pm
Forum: EasyOS
Topic: Easy Daedalus 6.4.4
Replies: 214
Views: 12211

Easy Daedalus 6.4.1

Easy Daedalus 6.4.1

-pclock worked well with pschedule
-SAMBA worked with my Chromebook
-recording of sound checked
_____________________________-

-

by don570
Thu Oct 31, 2024 10:40 pm
Forum: EasyOS
Topic: Easy Daedalus 6.4.4
Replies: 214
Views: 12211

Re: Easy Daedalus 6.4.1

BarryK wrote:

I've got a really flakey memory, can't remember anything about packit and uextract.
Are they good to have?

uextract is a must have.

by don570
Thu Oct 24, 2024 9:58 pm
Forum: FatDog
Topic: Instructional Videos on YT
Replies: 2
Views: 242

Re: Instructional Videos on YT

The second video runs Fatdog 903 from an ISO using VMWARE Unfortunately the accent is hard to understand. Here is transcript.. So today we are looking at the FatDog64 Linux. So the version of the latest, . So you can call it as a fatdog 64 Linux 9 0 3. So here is the boot menu. So let me quickly ...
by don570
Thu Oct 24, 2024 8:40 pm
Forum: FatDog
Topic: Instructional Videos on YT
Replies: 2
Views: 242

Instructional Videos on YT

I came across two videos about fatdog linux on Youtube

https://www.youtube.com/watch?v=re8MLmHOKkA
https://www.youtube.com/watch?v=34SYW7CDGz0
______________________________________________
I'll watch them and review.
____________________

by don570
Thu Oct 24, 2024 8:23 pm
Forum: EasyOS
Topic: Easy Daedalus 6.4.4
Replies: 214
Views: 12211

mtpaint 3.50.10 needed

A warning to BarryK that before you release Easy Daedalus 6.4 you should upgrade to mtpaint version 3.50.10 since it is needed to open webp files. Everything else worked fine in Easy Daedalus 6.3.93 (6.4 RC1) I noticed from blog that you are upgrading mtpaint in Scarthgap version 5.0.4 ...
by don570
Wed Oct 23, 2024 9:48 pm
Forum: Other Distros
Topic: Harmony OS official release
Replies: 0
Views: 168

Harmony OS official release

Harmony OS - has grown to be China's second most popular cell phone OS (replacing iOS) China's first homegrown mobile operating system - HarmonyOS NEXT was released in Shenzhen, Guangdong Province on Tuesday as the third of its kind globally apart from Android and Apple's iOS. It marks another ...
by don570
Sun Oct 20, 2024 6:39 pm
Forum: EasyOS
Topic: Easy Daedalus 6.4.4
Replies: 214
Views: 12211

Bluetooth worked

Easy Daedalus 6.3.92 (6.4 RC1) Bluetooth worked with my Sony Stereo system __________________________ gwhere opened properly pschedule worked with audacious _______________________________________ When I tried to open the webp examples available at this site they wouldn't open with mtpaint I believe ...
by don570
Sun Oct 20, 2024 6:19 pm
Forum: EasyOS
Topic: It doesn't record- [SOLVED] Audacious in EasyOS_daedalus [SOLVED]
Replies: 3
Views: 165

Audacious in EasyOS_daedalus

Audacity appimage recorded fine
https://www.audacityteam.org/post-download/
___________________________________________

Audacious worked with pschedule to play an alarm

______

Audacious streamed in Bluetooth to my SONY stereo system
____________________________

by don570
Sat Oct 19, 2024 6:49 pm
Forum: EasyOS
Topic: Easy Daedalus 6.4.4
Replies: 214
Views: 12211

aplay

Still using Easy Daedalus 6.3.90 -Script pclock --> I switched aplay to paplay where it was mentioned twice and pclock now did a countdown properly -I figured out why 'blkid' didn't list the partitions ---> I was clicking on wrong terminal icon lying on desktop. There are two terminal icons on ...
by don570
Thu Oct 17, 2024 9:04 pm
Forum: EasyOS
Topic: Easy Daedalus 6.4.4
Replies: 214
Views: 12211

Review - part 2

Easy Daedalus 6.3.90 Review - part 2 These didn't work... -'blkid' command in terminal didn't work -bluetooth manager recognized my controller card but not my device -gwhere program --> when I tried to open a new catalog I was warned I needed a plugin -'aplay' and 'pmusic' command doesn't open a wav ...

Go to advanced search