Advertisement · 728 × 90
#
Hashtag
#TRURL
Advertisement · 728 × 90
JAROMI - TRURL I KLAPAUCJUSZ BLUES
JAROMI - TRURL I KLAPAUCJUSZ BLUES YouTube video by Kino Jaromiego

Rysunki Jaromiego zagrały i zaśpiewały
w wideoklipie - TRURL I KLAPAUCJUSZ BLUES
www.youtube.com/watch?v=s8WY... 😎😎😎😎
#Trurl #Klapaucjusz #StanisławLem #Cyberiada #BajkiRobotów

3 3 0 0
Preview
Official curl Windows packages now include trurl · curl trurl · Discussion #408 At: https://curl.se/windows/ Starting with 8.16.0_11. It's experimental. More details: #375 (comment)

Thanks to @vsz there is now easy access to the #trurl tool for Windows peeps as well. Pronouncing it however is still as tricky as before.

https://github.com/curl/trurl/discussions/408

0 0 1 0
Screenshot of TRURL B on macOS Ventura 13.7.8

Screenshot of TRURL B on macOS Ventura 13.7.8

Screenshot of TRURL B on macOS Ventura 13.7.8

Screenshot of TRURL B on macOS Ventura 13.7.8

A new #TRURL app has been released. TRURL B follows the design of the famous calculators created by Dietrich Lubs and Dieter Rams for the German company Braun.

It implements all fundamental operations plus power, square, square root, and the inverse operation.

sourceforge.net/projects/tru...

9 1 1 1
Screenshot of the Lazarus IDE with TRURL's RPN engine and a test app using this library and FPCUnit.

Screenshot of the Lazarus IDE with TRURL's RPN engine and a test app using this library and FPCUnit.

The RPN engine of the #TRURL project has been released in version 1.2 (Gimel). This new version introduces a square function for your calculator apps.

#RPN #Reverse_Polish_Notation #Pascal programming.

trurl.sourceforge.io
doi.org/10.5281/zeno...
doi.org/10.5281/zeno...

9 0 1 1
Screenshot for a test app of Segmitator 1.2. It shows how the input number 4.2E-6 is displayed (as 42E-7) in both text mode and as a graphic representation.

Screenshot for a test app of Segmitator 1.2. It shows how the input number 4.2E-6 is displayed (as 42E-7) in both text mode and as a graphic representation.

TRURL's #Segmitator 1.2 has been released. The new version includes support for high-res displays, setting the size of the decimal separator, and output of limited length.

#TRURL

trurl.sourceforge.io

7 0 0 1
trurl

I shipped #trurl 0.16.1, with some small bugfixes only.

https://curl.se/trurl/

1 1 1 0
Screenshot of TRURL G 1.2.1 on macOS 13.7

Screenshot of TRURL G 1.2.1 on macOS 13.7

#TRURL G has been updated to version 1.2.1. This is a recommended bug-fix release that addresses an issue with the erroneous display of small numbers and makes the roll-down feature more HP-like.

TRURL is available from trurl.sf.net.

2 2 0 0
Preview
trurl manipulates URLs _trurl_ is a tool in a similar spirit of tr but for URLs. Here, tr stands for _translate_ or _transpose_. trurl is a small command line tool that parses and manipulates URLs, designed to help shell script authors everywhere. URLs are tricky to parse and there are numerous security problems in software because of this. trurl wants to help soften this problem by taking away the need for script and command line authors everywhere to re-invent the wheel over and over. trurl uses libcurl’s URL parser and will thus parse and understand URLs _exactly_ the same as curl the command line tool does – making it the perfect companion tool. I created trurl on March 31, 2023. ## Some command line examples Given just a URL (even without scheme), it will parse it and output a normalized version: $ trurl ex%61mple.com/ http://example.com/ The above command will _guess_ on a `http://` scheme when none was provided. The guess has basic heuristics, like for example FTP server host names often starts with ftp: $ trurl ftp.ex%61mple.com/ ftp://ftp.example.com/ A user can output selected components of a provided URL. Like if you only want to extract the path or the query components from it.: $ trurl https://curl.se/?search=foobar --get '{path}' / Or both (with extra text intermixed): $ trurl https://curl.se/?search=foobar --get 'p: {path} q: {query}' p: / q: search=foobar A user can create a URL by providing the different components one by one and trurl outputs the URL: $ trurl --set scheme=https --set host=fool.wrong https://fool.wrong/ Reset a specific previously populated component by setting it to nothing. Like if you want to clear the user component: $ trurl https://daniel@curl.se/--set user= https://curl.se/ trurl tells you the full new URL when the first URL is redirected to a second relative URL: $ trurl https://curl.se/we/are/here.html --redirect "../next.html" https://curl.se/we/next.html trurl provides easy-to-use options for adding new segments to a URL’s path and query components. Not always easily done in shell scripts: $ trurl https://curl.se/we/are --append path=index.html https://curl.se/we/are/index.html $ trurl https://curl.se?info=yes --append query=user=loggedin https://curl.se/?info=yes&user=loggedin trurl can work on a single URL or _any amount_ of URLs passed on to it. The modifications and extractions are then performed on them all, one by one. $ trurl https://curl.se localhost example.com https://curl.se/ http://localhost/ http://example.com/ trurl can read URLs to work on off a file or from stdin, and works on them in a streaming fashion suitable for filters etc. $ cat many-urls.yxy | trurl --url-file - ... ## More or different trurl was born just a few days ago, this is what we have made it do so far. There is a high probability that it will change further going forward before it settles on exactly how things ideally _should_ work. It also means that we are extra open for and welcoming to feedback, ideas and pull-requests. With some luck, this could become a new everyday tool for all of us. Tell us on GitHub!

Oops, I forgot to make a cake for #trurl's second birthday the other day!

daniel.haxx.se/blog/2023/04/03/introduc...

2 0 0 0
Screenshot of TRURL G 1.2 on macOS 13.7.4 Ventura

Screenshot of TRURL G 1.2 on macOS 13.7.4 Ventura

Screenshot of TRURL G 1.2 on macOS 13.7.4 Ventura, showing an error message.

Screenshot of TRURL G 1.2 on macOS 13.7.4 Ventura, showing an error message.

#TRURL G 1.2.0 (Columbia) has been released. This new version introduces extended error-handling capabilities.

trurl.sf.net

7 1 0 0
Screenshot of a test app for segmitator. It shows two virtual seven-segment displays implemented with different techniques (ASCII and graphics)

Screenshot of a test app for segmitator. It shows two virtual seven-segment displays implemented with different techniques (ASCII and graphics)

Screenshot of parts of Segmitator`s sourcecode in Object Pascal.

Screenshot of parts of Segmitator`s sourcecode in Object Pascal.

#TRURL​’s #Segmitator library has been updated to version 1.0.1, implementing a bug fix.

trurl.sf.net

7 1 0 0
Preview
Get trurl for your OS a command line tool for URL parsing and manipulation. - curl/trurl

I could use your help to populate this wiki page with information about how to get #trurl installed in your distros/OS/package system:

github.com/curl/trurl/wiki/Get-trur...

0 2 0 0

#trurl 0.16 https://youtu.be/X8auKKxgFpw

0 0 0 0

at 08:00 UTC today I will do a live-streamed release presentation of this #trurl release. On Twitch: https://www.twitch.tv/curlhacker

0 1 0 0
Post image

#trurl 0.16 is here:

One new option, several bugfixes. More documentation and many new tests.

https://daniel.haxx.se/blog/2024/09/19/trurl-0-16/

0 1 2 0
Post image

#trurl 0.15.1 is out. Just a few tiny bugfixes.

https://daniel.haxx.se/blog/2024/09/12/trurl-0-15-1/

0 0 0 0

I'll probably put together a fresh #trurl release later this week.

0 0 0 0

Just a reference for the name #trurl. As it has been used before...

https://github.com/curl/trurl/discussions/59

0 0 0 0

#trurl 0.15

https://youtu.be/ETxhkW2SsfU

0 0 0 0
trurl 0.15

trurl 0.15

#trurl 0.15 is here: https://github.com/curl/trurl/releases/tag/trurl-0.15

Live-streamed video presentation about this release at 08:00 UTC over at https://www.twitch.tv/curlhacker

0 0 0 0
Post image

#trurl 0.14 is here. https://github.com/curl/trurl/releases/tag/trurl-0.14

Works best with libcurl 8.9.0 (and later)

1 0 0 0

#trurl is now available in #Debian stable-backports

https://curl.se/mail/distros-2024-06/0003.html

0 0 0 0

Should #trurl accept JSON input? If so how? I need your input and feedback on this:

https://github.com/curl/trurl/pull/311

1 0 0 0