Plaques, made by cholesterol and calcium, in blood vessels is not bad, it is protective layer from burst. The plaques is not the cause of heart attack.
Catatanku
M Nur Qomarudin @Surabaya, Indonesia
Friday, November 7, 2025
Sunday, September 7, 2025
Factory reset Samsung J3 Pro, macet di 'Google Asisten tidak tersedia'
Setelah reset pabrik Samsung J3 Pro, langkah Google setup macet di 'Google Asisten tidak tersedia'.
Walau ganti akun gmail, tetap sama.
Cara yang berhasil buat saya: kembali ke halaman setup awal, diskonek dari wifi, lalu Skip/Lewati saja.
Google akan mem-bypass Google Asisten.
Saturday, August 16, 2025
Macro VBA script: Change format cross-reference with text pattern Example 6.X or 6.XX
"Example 6.X" or "Example 6.XX"."Example 6.X" is the first word of the paragraph.Monday, August 11, 2025
Macro VBA Script: Change font color of pattern-text 'Figure 6.XX' and 'Figure 6.X', where X is number, and located in text-paragraph
Sunday, August 10, 2025
MSCI Indonesia Index, September-November 2025
BBCA, BBRI, BMRI, TLKM, ASII, BBNI, AMMN, AMRT, GOTO, TPIA, CPIN, INDF, KLBF, ICBP, BRPT, UNTR, DSSA, CUAN
Tuesday, August 5, 2025
Macro VBA Script: Add title text 'Figure 3.X' to all slides in PowerPoint
Sunday, July 20, 2025
MSCI Indonesia Index, June-August 2025
17 stocks
BBCA, BBRI, BMRI, TLKM, ASII, BBNI, AMMN, ADRO, AMRT, GOTO, TPIA, CPIN, INDF, KLBF, ICBP, BRPT, UNTR
Rebalancing MSCI Edisi 2025 : Ini Deretan Siapa Masuk & Keluar!
Saturday, July 19, 2025
What makes bitcoin enter bear market, according history
2014-2015: The collapse of Mt. Gox, once the world’s largest Bitcoin exchange, resulted in the loss of approximately 850,000 BTC. Trader confidence took a massive hit, causing Bitcoin’s price to drop from $1,100 to under $200, an 82% decline. This event raised serious concerns about exchange security and the need for stronger regulatory oversight.
2018: The ICO boom of 2017 brought an influx of speculative projects, many of which lacked substance. As regulatory crackdowns increased and fraudulent projects were exposed, market confidence crumbled. Bitcoin tumbled from $20,000 to nearly $3,000, losing 85% of its value.
2022: A series of major industry failures, including the collapse of Terra (LUNA), the depegging of UST, and the bankruptcy of FTX, led to a widespread market meltdown. Bitcoin dropped from its all-time high of $69,000 to around $16,000, a 77% decline. This downturn was further exacerbated by rising interest rates, institutional sell-offs, and regulatory pressures.
Each bear market has had different triggers, from exchange failures and speculation to regulatory shifts and economic downturns.
Wednesday, July 16, 2025
[Laptop] Screen brightness auto decrease when displaying dark color
Lenovo. Windows 10. Intel HD Graphics.
How to non-active that setting?
Launch Intel HD Graphics setting.
Choose: System > Power.
Display Power Saving, choose OFF.
Wednesday, June 25, 2025
Macro VBA script: Change 1st column width for all table
Sub SetFirstColumnWidthInPicas()
Dim tbl As Table
Dim r As Long
Dim desiredWidthPicas As Single
Dim desiredWidthPoints As Single
' Set desired width in picas
desiredWidthPicas = 30 ' ? Change this as needed
desiredWidthPoints = desiredWidthPicas * 12 ' Convert picas to points
For Each tbl In ActiveDocument.Tables
With tbl
For r = 1 To .Rows.Count
On Error Resume Next ' In case cell doesn't exist (e.g. merged)
With .cell(r, 1)
.Width = desiredWidthPoints
End With
On Error GoTo 0
Next r
End With
Next tbl
MsgBox "First column width updated to " & desiredWidthPicas & " picas.", vbInformation
End Sub