Thursday, August 08, 2019

Resep Tempe Mendoan

Pertama siapkan tempe berkualitas bagus. Umumnya yang dipakai tempe yang dibuat khusus buat mendoan, dibungkus daun dengan ukuran 20x15 cm. Atau bisa memakai tempe balok dan iris tipis seukuran 20x15 cm.

Untuk adonan tepungnya, siapkan bumbu halusnya berupa 3 siung bawang putih, 5 butir bawang merah, 1/2 sdt ketumbar, 1 sdt garam dan 1/2 sdt merica. Campurkan bumbu halus ini dengan 100 g tepung beras, 100 g tepung terigu, aduk hingga rata. Tuangkan air secukupnya hingga menjadi adonan encer. Terakhir tambahkan 2 sdm daun bawang yang diiris halus. Jumlah bumbu disesuaikan dengan jumlah tempenya.

Selanjutnya, celupkan irisan tempe ke dalam adonan tepung lalu goreng dalam minyak panas dan banyak. Jika tepung sudah beku mulai mengering, angkat segera dan tiriskan. Kalau tak suka rasa tepung yang kuat, biarkan beberapa menit hingga tepung sedikit kuning lalu angkat. Sebaiknya santap saat mendoan masih hangat. Siapkan sambal cocolannya berupa cabai eawit yang digerus kasar dengan bawang putih dan aduk dengan kecap manis.

Source : https://food.detik.com/odilia-winneke/d-4657151/cara-bikin-tempe-mendoan-yang-gurih-enak?tag_from=wp_nhl_judul_4&_ga=2.135932787.334362717.1565236111-2066648975.1536239154

Tuesday, January 08, 2019

Turn off time grouping in PivotTables in Excel for Windows

https://support.office.com/en-us/article/turn-off-time-grouping-in-pivottables-in-excel-for-windows-6be5afed-348c-4db2-9f87-5ac262d67b3f?ui=en-US&rs=en-US&ad=US

To turn off time grouping on PivotTables (including data model PivotTables) and Pivot Charts, follow these instructions for adding a new DWORD (32-bit) Value registry key. The new key is: HKEY_CURRENT_USER > Software > Microsoft > Office > 16.0 > Excel > Options > DateAutoGroupingDisabled.

Monday, December 17, 2018

HP Proliant Microserver Gen10 Marvell BIOS RAID setup

Hi, Its incredible how difficult HPE makes some easy things.
I take 4h to find this solution.
You enter Setup (F2) and change to legacy mode. Restart and Ctrl+M

Accessing the Marvell BIOS Utility under legacy boot mode
The UEFI boot mode is the server default boot mode. To switch to legacy boot mode, see Selecting the
boot mode on page 64.
Procedure
1. Reboot the server.
2. On the POST drive information screen, press Ctrl+M.

Wednesday, October 31, 2018

Windows 10 shared folder not accessible

https://support.microsoft.com/en-us/help/4046019/guest-access-in-smb2-disabled-by-default-in-windows-10-and-windows-ser

Symptoms


In Windows 10, version 1709, Windows Server version 1709, and Windows Server 2019, the SMB2 client no longer allows the following actions:
 
  • Guest account access to a remote server
  • Fallback to the Guest account after invalid credentials are provided
SMBv2 has the following behavior in Windows 10, version 1709, Windows Server version 1709, and Windows Server 2019:
  • Windows 10 Enterprise and Windows 10 Education no longer allow a user to connect to a remote share by using guest credentials by default, even if the remote server requests guest credentials.
  • Windows Server 2016 Datacenter and Standard edition no longer allow a user to connect to a remote share by using guest credentials by default, even if the remote server requests guest credentials.
  • Windows 10 Home and Professional editions are unchanged from their previous default behavior.
If you try to connect to devices that request credentials of a guest instead of appropriate authenticated principals, you may receive the following error message: 
 

Cause


This change in default behavior is by design and is recommended by Microsoft for security.
 
A malicious computer that impersonates a legitimate file server could allow users to connect as guests without their knowledge. Microsoft recommends that you do not change this default setting. If a remote device is configured to use guest credentials, an administrator should disable guest access to that remote device and configure correct authentication and authorization.
 
Windows and Windows Server have not enabled guest access or allowed remote users to connect as guest or anonymous users since Windows 2000. Only third-party remote devices might require guest access by default. Microsoft-provided operating systems do not.
 

Resolution


If you want to enable insecure guest access, you can configure the following Group Policy settings:
 
Computer configuration\administrative templates\network\Lanman Workstation
"Enable insecure guest logons"
 
Note By enabling insecure guest logons, this setting reduces the security of Windows clients. 
 
Example :
Default Registry Value: [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters] "AllowInsecureGuestAuth"=dword:0 Configured Registry Value: [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters] "AllowInsecureGuestAuth"=dword:1

More Information


This setting has no effect on SMB1 behavior. SMB1 continues to use guest access and guest fallback.
 
SMB1 is uninstalled by default in latest Windows 10 and Windows Server configurations. For more information see SMBv1 is not installed by default in Windows 10 Fall Creators Update and Windows Server, version 1709.

Monday, September 17, 2018

mysql incorrect information in file corrupt error

https://serverfault.com/questions/422507/mysql-incorrect-information-in-file-corrupt-error
Incorrect information in file:    './cacti/poller_item.frm'
.frm file stores the table format. Try this:
  • Stop MySQL
  • Take the backup of poller_item.frmpoller_item.MYDpoller_item.MYI
  • Drop the poller_item table
  • Start MySQL
  • Recreate poller_item table by using CREATE TABLE statement in cacti.sql (uses the corresponding version that you're running)
  • Stop MySQL
  • Copy the poller_item.MYDpoller_item.MYI into the datadir
  • Start MySQL again