Search found 4853 matches

by technosaurus
Thu 08 Aug 2019, 23:17
Forum: Truly off-topic conversations
Topic: Why Unmoderated Online Forums Always Degenerate Into Fascism
Replies: 26
Views: 1101

What about online forums about fascism?
by technosaurus
Wed 17 Jul 2019, 06:00
Forum: Programming
Topic: Unbloated coding resources
Replies: 56
Views: 80641

Fabrice has done it again:
https://bellard.org/quickjs/
by technosaurus
Sun 14 Jul 2019, 02:25
Forum: Programming
Topic: Busybox - fat and fast?
Replies: 16
Views: 4338

In case nobody else noticed, it is now possible to embed shell scripts in busybox. Advantages For the initrd/initramfs, that saves close to 4kb and 1 inode per small script It is still compressible (on squashfs or using upx) It should also give faster access times to scripts especially for full inst...
by technosaurus
Fri 24 May 2019, 06:21
Forum: Truly off-topic conversations
Topic: new Youtube voice search
Replies: 7
Views: 239

Back when I was working with SVG and mp3, I worked on using SVG paths to "draw" phonemes (sounds used in language) Most of phonemes could be reduced to a simple path (10s of bytes per phoneme) with SVG transformations to apply all kinds of properties. By sampling various dialects I could l...
by technosaurus
Thu 11 Apr 2019, 00:17
Forum: Programming
Topic: Bash globbing - How to match 1 or more characters? (solved)
Replies: 6
Views: 1660

Good advice from Mochi. If you want more flexibility, take a dabble at awk. It's part of busybox, supports real regular expressions, arrays and programming constructs. It's also pretty easy to learn if you know shell and a good stepping stone toward learning C.
by technosaurus
Wed 03 Apr 2019, 20:35
Forum: Programming
Topic: How various package managers work
Replies: 4
Views: 2213

I wrote a function for parsing files like the puppy package database.
Example is here:
https://github.com/technosaurus/PD-snip ... ll/sh#L207
by technosaurus
Fri 01 Mar 2019, 20:49
Forum: Puppy Derivatives
Topic: EasyOS version 2.3.2, June 22, 2020
Replies: 2577
Views: 925896

Yes, I did wonder about starting X temporarily. But, I want effectively instant startup, and without having actually tried it, I thought it might be too slow to startup. Oh yeah, also, X would have to start without all the kernel modules loaded, so there wouldn't be the i915.ko kernel Intel kms mod...
by technosaurus
Thu 31 Jan 2019, 12:56
Forum: Programming
Topic: CGI scripts with busybox httpd
Replies: 26
Views: 17097

I did some stuff like this ~8 years ago in the bashbox thread and have been meaning to resurrect it after having tried slitaz. The idea was to be able to edit system configuration in a meaningful way without being reliant on a specific GUI toolkit, so for console it meant a web server with cgi-scrip...
by technosaurus
Sat 05 Jan 2019, 20:24
Forum: Puppy Derivatives
Topic: EasyOS version 2.3.2, June 22, 2020
Replies: 2577
Views: 925896

I never thought we would still be booting slow enough to need translations by now, but that was what I initially developed what became t12s for (until I got boot to X+jwm to <0.5sec). A couple of threads related to t12s here: http://murga-linux.com/puppy/viewtopic.php?t=72321 http://murga-linux.com/...
by technosaurus
Mon 24 Dec 2018, 11:46
Forum: Truly off-topic conversations
Topic: How to make "starlite" cardboard-based insulation
Replies: 4
Views: 193

Fascinating! I have also wondered about the possibilities of using cardboard as a building material. Not just as insulation, but as structural components of the house, heck, the whole house. Just go out with a trailer, bring back lots of cardboard boxes, cut and glue them together, cut holes for wi...
by technosaurus
Sun 23 Dec 2018, 23:56
Forum: Truly off-topic conversations
Topic: How to make "starlite" cardboard-based insulation
Replies: 4
Views: 193

How to make "starlite" cardboard-based insulation

Intro In the process of trying to optimize another thing that no one else thought needed optimizing, I decided to do some hobo engineering with cardboard. Background Cardboard has a surprisingly high R-value (its a good insulator), and is highly abundant in our society which is why it is used by ma...
by technosaurus
Thu 20 Dec 2018, 22:03
Forum: Programming
Topic: How to read a variable/value from file? (Solved)
Replies: 11
Views: 3770

FWIW, the easiest way to read and write parameters from a file (though not editable as a text file) is to use a struuct. struct myparams { unsigned short width; unsigned short height; unsigned int foreground; unsigned int background; }; static const struct myparams default_params = { 48,48,0xFFFFFF,...
by technosaurus
Thu 29 Nov 2018, 20:10
Forum: Programming
Topic: search multiple pdf files for a string
Replies: 11
Views: 3159

Mupdf has most of what you need in its tools along with a JavaScript interface. The source is pretty easy to follow if you have done any c programming, so you could implement your own tools for specific purposes using the existing ones as a template.
by technosaurus
Wed 21 Nov 2018, 16:23
Forum: Truly off-topic conversations
Topic: they as a singular pronoun
Replies: 10
Views: 187

Flash wrote:... so I'm sticking with 'him' when I mean anyone who could be male or female
'him' who? Steven Pinker? ;)
ugh english
What is the name of that ancient engineered language that never evolves because its rules are that good??? I think it starts with an 'A'.
by technosaurus
Tue 13 Nov 2018, 14:01
Forum: Programming
Topic: (Solved!) Writing MP3 Tag Data
Replies: 19
Views: 4847

I wrote some basic code to strip ID tags here
It doesn't do exactly what you are looking for but it may be a good starting point.
by technosaurus
Mon 08 Oct 2018, 08:49
Forum: Announcements
Topic: Live Concert on Video published on Youtube
Replies: 17
Views: 6520

I didn't realize RSH was now an IT SMERSH... whats a smersh btw?
by technosaurus
Sun 07 Oct 2018, 21:58
Forum: Wireless
Topic: Wi-Fi is rebranding itself
Replies: 4
Views: 2061

Wi-Fi, in this context, is simply a trademarked phrase that means IEEE 802.11x. a, b, c ... could have been employed in sequence but they messed up ... so now have opted for numeric's. Hopefully they wont mess up the numerical's. I think Microsoft is already petitioning them to skip 9. I don't know...
by technosaurus
Sun 07 Oct 2018, 21:56
Forum: Wireless
Topic: Wi-Fi is rebranding itself
Replies: 4
Views: 2061

802.11ac technology will now be referred to as Wi-Fi 5
It was kinda funny seeing wifi dongles labeled "AC adapter"
by technosaurus
Sat 06 Oct 2018, 18:13
Forum: Programming
Topic: Is there a try container for own scripts?
Replies: 13
Views: 2548

I haven't worked on it in a while (because I'm not happy with gtk), but there is my old Simple Icon Tray (sit)