Enable AEM Javadoc hints

To consume the whole power of IDE we must use Javadoc hints. Below is a short “how-to” on how to enable these hints for AEM 6.4:

  1. Open “Project structure” (short-key on Windows: Ctrl + Alt + Shift + S):
  2. Find the “Maven: com.adobe.aem:uber-jar:apis:6.4.4” (or another uber jar which you are using for the project) and click plus icon with the Earth

  3. Put the “https://helpx.adobe.com/experience-manager/6-4/sites/developing/using/reference-materials/javadoc/index.html” as a documentation URL.

After all of these actions you’ll be able to see API doc hints (on Windows with Ctrl + Q) :

How to install printer HP 1018 in Windows 10

Printer installation on Windows 10 is always doing automatically, but it’s also possible to do it manually for case when windows unable to idntify the printer.

  1. Press Win + R enter “printui /s /t2” and click OK
  2. Within “Printer Server Properties” click “Add…” and go threw below steps
  3. In “Windows Update” window select Manufacture HP and driver “HP LaserJet 1020“. Then click “Next” -> “Finish

After all of this steps you printer HP 1018 will be installed.

Lan connection is not working on Linux

Faced with Internet issue: we have a 1000 Mb Lan in office, PC motherboard Lan card supports 1000 Mb Lan but Lan wire was damaged / cut and works only on 100 Mb speed. Therefore after PC start Lan Card trying to connect on 1000 Mb speed but can’t and PC couldn’t connect to the Lan.

For successfully connection Lan Card should using 100 Mb speed. Therefore, until the repaired wire we can use this workaround (manually set Lan Card speed):

sudo ethtool -s eth0 speed 100 duplex full

This command will set adapter speed to 100 Mb. Of cause you should know your interface (in my case it was eth0) and connection type (in most cases full duplex enough). This configuration will be erased after reboot therefore if you need this options from start – put them to any start script.

Temviewer – no internet connection

Faced with an TeamViewer issue on Linux Mint 18 which I’m using as primary OS: after system start TeamViewer couldn’t connect to the internet and displaying in system tray exclamation mark and tool-tip that there is no internet connection. To fix it TeamViewer service had to be restarted with command below:

sudo teamviewer --daemon restart

this will restart TeamViewer service and also start TeamViewer client.

 

Linux: format USB to exFAT

To format USB flash card to exFAT file system we need this set of commands:

  1. sudo -i
  2. fdisk -l (this will provide mounted disk path, in my case it was /dev/sdc1)
  3. mkfs.exfat -n SOME_DISK_LABEL /dev/sdc1
  4. fsck.exfat /dev/sdc1 (this only need to be sure that disk was formatted w/o issues)