Can’t dynamically import component into page.tsx / Next.js

Its okay to import component into component but when it comes component into page it gives error… I’m newbie so thanks for any help. The way I import const CodeSampleModal = dynamic(() => import(‘../../../components/UserFeedbackModal’), { ssr: false, }); error Argument of type ‘() => Promise<typeof import(“c:/Users/balci/OneDrive/Masa\u00FCst\u00FC/feedback-app/src/components/UserFeedbackModal”)>’ is not assignable to parameter of type ‘DynamicOptions<{}> | … Read more

How to implement CryptoJS.AES.decrypt in Go

I have a ‘simple’ AES decryption with a given key using CryptoJS in Javascript var CryptoJS = require(‘crypto-js’); let encrypted = ‘U2FsdGVkX19dGrnVQb3BYZ9SWtQBCt2XZDeWFBEfWoi3qnSHg26aQnADUKjTDtSgpPUDzXc59XrIBsTZp9IRg4dYy9Lo0/GjSVn8qlINhE8NJXozQvUNPJSs6nvWSiivCsh9KHGsWFEusMeTefM9V2hKRpQHnFp5VHDLPgGImjHXOQO71eO4qFoQ3ESqUdnDO94nlTjcJU8AP+GabRMjHP08OVz87uyV4SfvT7AZhAYuOPOumHbJaV5nHz2ouqBZgXR3OK07AUk6V+Faz43BT3Qd2+xGLyz8C+teekmudVhmGlnzvMK/VUs0bNDUttdVVnkz/VbXVOj++07uhDsJoMKzZQYTNLkIl9HnuXDmhKOrLSYs2EYpNrH9T/2ZP3nwqJaI7bbLBCfCpNFGNLY4jyNou4Bl5GEK6sxg0zraUCZTgvfuuvBpKWFcFhPvYf8eJGoI3dOWTRWyRnS6e4j3bg==’; let key = ‘KBlgcIOrad7EYpiz9LNNTMSg98QoqSVK’; var decrypted = CryptoJS.AES.decrypt(encrypted, key); let data = decrypted.toString(CryptoJS.enc.Utf8); console.log(data); I were trying to decrypt that data in Go (Golang) but failed. I have no knowledge about AES, here … Read more

speech to text by microsvervices [closed]

Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed yesterday. Improve this question I wrote a web application with fast ape and this application is connected to a smart socket … Read more

Create Laravel poject command

Is there way to create PHP Laravel without composer? On documention examples used below: composer create-project laravel/laravel example-app No it’s not possible –  2 Why don’t you want to use Composer? –  On installation shows this error and I cannot install. Any ideas how to solve? The PHP exe file you specified did not run … Read more

Codename One – Upgrade to JDK 11

I’m seeing the following error after upgrading the project to JDK 11. I have updated the CN1 Libraries from Extension Manager already and codename settings (codename1.arg.java.version=11) file with JDK. Please advise how did you resolve the following error – *Property codename1.arg.java.version has a conflict. at com.codename1.build.client.InstallLibsTask.mergeRequiredProperties(InstallLibsTask.java:253) at com.codename1.build.client.InstallLibsTask.unzip(InstallLibsTask.java:103) at com.codename1.build.client.InstallLibsTask.execute(InstallLibsTask.java:88) at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:292) at jdk.internal.reflect.GeneratedMethodAccessor61.invoke(Unknown Source) … Read more