Tăng cường hiệu quả tế bào năng lượng mặt trời
Các nhà nghiên cứu tại đại học Texas nói rằng có khả năng để tăng cường mức năng lượng trong từng tế bào năng lượng mặt trời bằng việc khai thác cái mà họ gọi là “trạng thái vô hình” của photon, tăng gấp đôi số lượng electron có thể thu được trong quá trình. Phát hiện này trên lý thuyết có thể tăng hiệu quả tối đa các tể bào năng lượng mặt trời silicon từ 31 lên 44%.
Biến ánh sáng thành vật chất
Các nhà khoa học lần đầu tiên đã tìm được một kỹ thuật mang tính đột phá, có thể biến ánh sáng thành vật chất, một mục tiêu vốn được cho là bất khả thi kể từ khi ý tưởng này xuất hiện cách nay 80 năm.
Phát triển thành công thiết bị điện tử mỏng nhất thế giới
Các nhà khoa học phát triển một thiết bị tí hon chỉ dày bằng hai nguyên tử, có thể sử dụng để lưu trữ thông tin.
electron.manifest.json is not copying files or icons
I have the following electron.manifest.json file
Why is there an installing window when I open the sample app built by electron?
Installation of electron-winstaller is so slow
[2/4] Fetching packages… [3/4] Linking dependencies… [4/4] Building fresh packages… [1/2] ⠠ electron-winstaller [2/2] ⠠ electron When I install the dependency, it always gets stuck in step shown above. Here is my package.json: { “scripts”: { “start”: “electron-forge start”, “package”: “electron-forge package”, “make”: “electron-forge make” }, “name”: “electron-x”, “version”: “1.0.0”, “main”: “main.js”, “license”: “MIT”, “devDependencies”: […]
install electron-winstaller so slow
[2/4] Fetching packages… [3/4] Linking dependencies… [4/4] Building fresh packages… [1/2] ⠠ electron-winstaller [2/2] ⠠ electron when i install dep,it always stuck in above step here is my package.json { “scripts”: { “start”: “electron-forge start”, “package”: “electron-forge package”, “make”: “electron-forge make” }, “name”: “electron-x”, “version”: “1.0.0”, “main”: “main.js”, “license”: “MIT”, “devDependencies”: { “@electron-forge/cli”: “^7.4.0”, “@electron-forge/maker-deb”: […]
How to implement tabs in Electron: Render offscreen WebContentsView
There is a new powerful feature WebContentsView, which allows to render multiple kinda BrowserWindow
inside a single native window fully isolated.
How to create a minimize button?
index.js
How to keep Electronjs app alive after hide to the tray on Windows
I wrote a Pomodoro app use Electronjs used function setInterval()
to count down from 25:00 to 00:00. When user click minimize or close, the app hide to the tray. But then, sometimes it’s stopped (may be by Windows). How I keep it alive after hide to the tray?