/blog/images/avatar-icon.png

Span Width Not Working

Span is an inline element. It has no width or height. 1 2 3 4 5 6 7 8 9 <div id='box' style=' background: black; border-radius: 15px; top: 4%; left: 2%; width: 96%; height: 94%; position: absolute; '><span style='color:white; width:100%; text-align:right;'>test</span></div> Things like this won’t work. You need to change the style of a span to something like below. 1 2 3 4 5 6 7 8 9 <div id='box' style=' background: black; border-radius: 15px; top: 4%; left: 2%; width: 96%; height: 94%; position: absolute; '><span style='color:white; width:100%; **display:inline-block;** text-align:right;'>test</span></div> And it worked!

Kaggle Profile API | Profile Summary Card

Have been searching for Kaggle profile card for long? Here is what you need to showcase your ML/DL achievements! iFrame Usage Just replace the YOURKAGGLEUSERNAME to yours (i.e. mine will be https://kaggle-card.chienhsiang-hung.eu.org/api/basic?chienhsianghung) 1 <iframe src="https://kaggle-card.chienhsiang-hung.eu.org/api/basic?YOURKAGGLEUSERNAME" width="100%" height="300" style="border:none; min-width: 800px;"></iframe> Then Copy and Paste to your website <body> section. Example Kaggle Profile Summary Card (chienhsiang-hung.github.io) Support It’s always appreciated if you would like to buy me a cofee to support this API.

Make your github.io discoverable by these simple SEO settings (part 2)

This is a follow-up tutorial for Make your github.io discoverable by these simple SEO settings (part 1) — 洪健翔 Hung, Chien-hsiang — Medium. After a period of days if you’re still not able to show your page on Google Search, here is the solution. Go to GSC -> coverage Test Live URL to see if there is any problem. Then Request Indexing. Make

python read excel Worksheet index 0 is invalid, 0 worksheets found

A simple solution to python — Pandas: ValueError: Worksheet index 0 is invalid, 0 worksheets found — Stack Overflow Check your target file find the sheet’s name launch a new blank excel find the sheet’s name If they have a different default worksheet name, close all Excels, and regenerate the target excel. (The default worksheet name would be switched back to normal) Now re pd.read_excel again. It’ll be successful.

Data Structures and Algorithms in Python | Arrays and Strings

In this series and in the next few weeks, I will show you Data Structures and Algorithms in Python by some classic interview solutions. Please take a pen, whiteboard, and your laptop. Let’s start learning! Cheat sheet to Arrays and Strings. And some heads up for you. Creating a Matrix in Python without numpy 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 new_matrix = [ [None]*height ] * width This way, all the inner list will be pointed to the same address, i.