rubyFeedback

Results 371 issues of rubyFeedback

Sers again Thomas, I was reading: https://hexapdf.gettalong.org/documentation/basics/creating-a-pdf-from-scratch.html And, based on it, added to my project called "pdf" (which, aptly named, deals with pdf stuff, mostly via commandline use, but a...

Sers Thomas, Right now the recommended, or only way possible, way to add text, it seems, via at: goes like this: canvas.text(this_text, at: [150, 150]) An example for this can...

Hello there, It seems the primary website as well as audience is (for) folks from Japan. See: https://ateraimemo.com/Swing.html Of course images, and the english text in java swing applications, can...

documentation

Hello there, Would it be possible to add a simple way to increase the font size, from within the GUI? My eyesight isn't that great anymore (and I also now...

So I just found libui-dev due to kojix2 finding it first - when I snoop after kojix2 I find useful things. :) One on the issues libui-dev marked as possible...

I think xfce recently added support for wayland via "windowing", so X11 and wayland is supported. In the last days I also was using startplasma, for KDE wayland support. While...

The following image, which I uploaded to imgur, shows what I saw just now when visiting: https://rubygems.org/gems/rack Here is the image at imgur.com: https://i.imgur.com/7bO3Fzp.png For those of you unable to...

bug

``` test.cgi:8: warning: CGI library is removed from Ruby 3.5. Please use cgi/escape instead for CGI.escape and CGI.unescape features. If you need to use the full features of CGI library,...

I have this code in a .cgi file: #!/usr/bin/ruby -w # Encoding: UTF-8 # frozen_string_literal: true # ============================================================================ # require "cgi" cgi = CGI.new value = cgi['field_name'] # => "123"...

Using this in a .cgi page: require 'cgi' cgi = CGI.new value = cgi['field_name'] # => "123" cgi['flowerpot'] # => "" fields = cgi.keys # => [ "field_name" ] cgi.has_key?('field_name')...