Skip to content

Instantly share code, notes, and snippets.

@huydhoang
huydhoang / parser_unittest.py
Last active December 10, 2024 03:54
Test cases for _parse_response()
text1 = " ``` To extract the annual inflation rates for Vietnam from 1986 until 2023, we need to follow these steps:\n\n1. **Filter the DataFrame**: We need to filter the DataFrame to only include rows where the `Country Name` is 'Vietnam'.\n2. **Select the Relevant Columns**: After filtering, we select the columns for the years from 1986 to 2023.\n3. **Extract and Print the Data**: Finally, we extract the inflation rates and print them in a readable format.\n\nLet's write the Python code to accomplish this:``` ``` ```python\nimport pandas as pd\n\n# Assuming df is already loaded and parsed correctly\n\n# Step 1: Filter the DataFrame for Vietnam\nvietnam_df = df[df['Country Name'] == 'Vietnam']\n\n# Step 2: Select the relevant columns (years from 1986 to 2023)\nselected_columns = ['1986', '1987', '1988', '1989', '1990',\n '1991', '1992', '1993', '1994', '1995',\n '1996', '1997', '1998', '1999', '2000',\n '2001', '2002', '2003', '2004', '2005',\n
English Version Details.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Windows 7 Ultimate SP1-U ISO (Refresh)
~~~~~~~~~~~~~~~~~~~~~~~~~~~
x86
Part- X17-59463
en_windows_7_ultimate_with_sp1_x86_dvd_u_677460.iso
SHA1: 65FCE0F445D9BF7E78E43F17E441E08C63722657
ISO/CRC: 35511F11
@huydhoang
huydhoang / ScreenOff.bat
Created May 11, 2022 08:39
Turn Screen(s) Off On Windows (.NET 3.5 is required)
powershell (Add-Type '[DllImport(\"user32.dll\")]^public static extern int PostMessage(int hWnd, int hMsg, int wParam, int lParam);' -Name a -Pas)::PostMessage(-1,0x0112,0xF170,2)
@huydhoang
huydhoang / heroku.sh
Created February 16, 2022 13:01 — forked from kogcyc/heroku.sh
how to install the heroku cli on raspberry pi
wget https://cli-assets.heroku.com/branches/stable/heroku-linux-arm.tar.gz
mkdir -p /usr/local/lib /usr/local/bin
sudo tar -xvzf heroku-linux-arm.tar.gz -C /usr/local/lib
sudo ln -s /usr/local/lib/heroku/bin/heroku /usr/local/bin/heroku
@huydhoang
huydhoang / install-zsh-windows-git-bash.md
Last active December 30, 2021 07:18 — forked from fworks/install-zsh-windows-git-bash.md
Zsh / Oh-my-zsh on Windows Git Bash