Skip to content

Instantly share code, notes, and snippets.

View ImBIOS's full-sized avatar
Working on something useful - stay tuned!

Imamuzzaki Abu Salam ImBIOS

Working on something useful - stay tuned!
View GitHub Profile
@ImBIOS
ImBIOS / docker_wordpress.md
Created November 8, 2021 12:48 — forked from bradtraversy/docker_wordpress.md
Docker Compose FIle For Wordpress, MySQL & phpmyadmin

Wordpress & Docker

This file will setup Wordpress, MySQL & PHPMyAdmin with a single command. Add the code below to a file called "docker-compose.yaml" and run the command

$ docker-compose up -d

# To Tear Down
$ docker-compose down --volumes
@ImBIOS
ImBIOS / center-text-over-image.html
Created March 8, 2022 04:37
Simple way to center a text over an image
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
.container {
position: relative;
text-align: center;
color: white;
}
@ImBIOS
ImBIOS / background-color-technique.html
Created March 8, 2022 04:48
Several technique to set a background color of an element
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
@ImBIOS
ImBIOS / label-tag.html
Created March 14, 2022 23:57
Source code of my label tag video
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
@ImBIOS
ImBIOS / hr-tag.html
Created March 15, 2022 00:00
Source code of my hr tag video
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
@ImBIOS
ImBIOS / touppercase-tolowercase.js
Created March 17, 2022 09:12
toUpperCase() and toLowerCase tutorial source code
// Direct use
// const someText = "Imam Dev";
// const lowercase = someText.toLowerCase();
// console.log(lowercase);
// With Function
const changeToLowerCase = (text) => {
return text.toLowerCase();
};
"""
How to use this script:
1. Go to your blogger account settings
2. Search for the "Back up content" link
3. Download the content as an XML file
4. Run the script with:
Usage: python legacy.py [OPTIONS] INPUT_FILE OUTPUT_DIR
Arguments:
@ImBIOS
ImBIOS / glassmorphism-credit-card.markdown
Created July 3, 2022 04:14
Glassmorphism Credit Card
@ImBIOS
ImBIOS / -setup-windows-wsl-devenv.md
Created July 13, 2022 01:29 — forked from leodutra/-setup-windows-wsl-devenv.md
Install and Setup Windows Subsystem 2 for Linux, Hyper, ZSH + Oh My Zsh + Powerlevel9k + plugins, FNM + VSCode (+ext) and Nerd Font

Setup Windows Subsystem 2 for Linux

Windows Subsystem 2 for Linux, Hyper, ZSH + Oh My Zsh + Powerlevel9k + plugins, FNM + VSCode (+ext) and Nerd Font

To setup native Linux, see this gist

Preview

Requirements

@ImBIOS
ImBIOS / bug_template.md
Created August 2, 2022 06:20 — forked from automationhacks/bug_template.md
Bug template to help in writing clear bug reports

Describe the bug

A clear and concise description of what the bug is.

To Reproduce

Expected behavior

A clear and concise description of what you expected to happen.

Priority

What is the impact of this bug on the user, how critical is to fix? P0, P1 .. P4