All posts by airawan
Ubuntu : Cannot Open Software Center
My Ubuntu Software Center won’t open at all. Finally I did : first, ditch snap-store. This will also remove the Ubuntu Software Center. snap remove snap-store Then : read more at: Ubuntu : Cannot Open Software Center
Magento 2 : Adding Custom CSS Files
Adding CSS files that we created ourselves in Magento 2. Create a filenamecss.css file, for example andhiirawan.css in app / design / frontend / [vendor] / [theme] / web / css / andhiirawan.css then add the file to the head block: app / design / frontend / [vendor] / [theme] / Magento_Theme / layout /…
The new Photoshop on the web
Edit from anywhere. Explore cutting-edge Photoshop features like generative AI and image editing tools — now without leaving your browser. The only limit is your imagination. Please click the following link: Adobe Photoshop source: The new Photoshop on the web, powered by generative AI
DBeaver: Numbering Lines
Here’s how to number lines of code in DBeaver: click Window -> Preferences read more at: DBeaver: Numbering Lines
Ubuntu : Remove Applications from Panels
To remove an application from Panels, right click the application in the Panel, choose : Remove From Panel source: Ubuntu : Remove Applications from Panels
MySQL : FLOOR function
The FLOOR function in MySQL is used to round down a decimal number. Example : SELECT FLOOR(12.84) AS Pembulatan; result: source: MySQL : FLOOR function