skip to Main Content

Ubuntu unable to locate package libyaml

Ubuntu 20.04. Trying to install Ruby 3.2.2 I get the following error: /tmp/ruby-build.20230911110842.25159.uzwoaP/ruby-3.2.2/lib/yaml.rb:3: warning: It seems your ruby installation is missing psych (for YAML output). To eliminate this warning, please install libyaml and reinstall your ruby. So I go on…

VIEW QUESTION

Laravel – How can I send multiple notification with "minishlink/web-push" pakckage?

I am using "minishlink/web-push" package to send notification in my Laravel project. Route::post("/admin/sendNotif/{sub}", function(PushSubscription $sub, Request $request){ $webPush = new WebPush([ "VAPID" => [ "publicKey" => "BNbqX8M5NJJ...", "privateKey" => "i4I89hSrn-MGvp...", "subject" => "https://example.com" ] ]); $webPush->sendOneNotification( Subscription::create(json_decode($sub->data, true)), json_encode($request->input()) );…

VIEW QUESTION

Flutter awesome_extensions package issue

I cloned a project that uses awesome_extensions package version 2.0.5 but the problem is whenever I run the flutter pub get and run the app. It gives the following error that shows the version 2.0.8 is installed. ../../../.pub-cache/hosted/pub.dev/awesome_extensions-2.0.8/lib/widget_extensions/padding_extension.dart:44:29: Error: Member…

VIEW QUESTION
Back To Top
Search