Skip to content

Instantly share code, notes, and snippets.

View techxdeveloper's full-sized avatar

techxdeveloper

View GitHub Profile
@techxdeveloper
techxdeveloper / fstab.bullhead
Created October 17, 2017 11:20
fstab.bullhead
# Android fstab file.
#<src> <mnt_point> <type> <mnt_flags and options> <fs_mgr_flags>
# The filesystem that contains the filesystem checker binary (typically /system) cannot
# specify MF_CHECK, and must come before any filesystems that do specify MF_CHECK
/dev/block/platform/soc.0/f9824900.sdhci/by-name/system /system ext4 ro,barrier=1,inode_readahead_blks=8 wait,verify=/dev/block/platform/soc.0/f9824900.sdhci/by-name/metadata
/dev/block/platform/soc.0/f9824900.sdhci/by-name/vendor /vendor ext4 ro,barrier=1,inode_readahead_blks=8 wait,verify=/dev/block/platform/soc.0/f9824900.sdhci/by-name/metadata
/dev/block/platform/soc.0/f9824900.sdhci/by-name/userdata /data ext4 noatime,nosuid,nodev,barrier=1,data=ordered,nomblk_io_submit,noauto_da_alloc,errors=panic,inode_readahead_blks=8 wait,check,forcefdeorfbe=/dev/block/platform/soc.0/f9824900.sdhci/by-name/metadata
/d
@techxdeveloper
techxdeveloper / css_pseudo_class_selector(valid_and_invalid).html
Created October 9, 2017 09:36
CSS Psuedo Class Selector (:valid and :invalid)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Psuedo Class Selector (:valid and :invalid)</title>
<style>
h1 {
color: #00bdc4;
border-bottom: 1px solid #bdbdbd;
padding-bottom: 20px;
@techxdeveloper
techxdeveloper / css_pseudo_class_selector(required_and_optional).html
Created October 9, 2017 08:47
CSS Psuedo Class Selector (:required and :optional)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Psuedo Class Selector (:required and :optional)</title>
<style>
h1 {
color: #00bdc4;
border-bottom: 1px solid #bdbdbd;
padding-bottom: 20px;
@techxdeveloper
techxdeveloper / css_pseudo_class_selector(focus).html
Created October 9, 2017 07:40
CSS Psuedo Class Selector (:focus)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Psuedo Class Selector (:focus)</title>
<style>
h1 {
color: #00bdc4;
border-bottom: 1px solid #bdbdbd;
padding-bottom: 20px;
@techxdeveloper
techxdeveloper / css_pseudo_class_selector(enabled_and_disabled).html
Created October 9, 2017 07:12
CSS Psuedo Class Selector (:enabled and :disabled)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Psuedo Class Selector (:enabled and :disabled)</title>
<style>
h1 {
color: #00bdc4;
border-bottom: 1px solid #bdbdbd;
padding-bottom: 20px;
@techxdeveloper
techxdeveloper / css_pseudo_class_selector(checked).html
Created October 9, 2017 06:47
CSS Psuedo Class Selector (:checked)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Psuedo Class Selector (:checked)</title>
<style>
h1 {
color: #00bdc4;
border-bottom: 1px solid #bdbdbd;
padding-bottom: 20px;
@techxdeveloper
techxdeveloper / css_descendant_selector.html
Created October 1, 2017 11:27
CSS Descendant Selector
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Descendant Selector</title>
<style>
h1 {
color: #00bdc4;
border-bottom: 1px solid #bdbdbd;
padding-bottom: 20px;
@techxdeveloper
techxdeveloper / css_element_type_selector.html
Created October 1, 2017 11:26
CSS Element Type Selector
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Element Type Selector</title>
<style>
div {
padding: 20px;
margin: 20px;
background-color: #f5f5f5;
@techxdeveloper
techxdeveloper / css_class_seletor.html
Last active October 1, 2017 11:26
CSS Class Selector
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Class Selector</title>
<style>
.container {
padding: 20px;
margin: 20px;
background-color: #00bdc4;
@techxdeveloper
techxdeveloper / css_pseudo_class_selector (active and hover).html
Created October 1, 2017 11:17
CSS Psuedo Class Selector (:active and :hover)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Psuedo Class Selector (:active and :hover)</title>
<style>
h1 {
color: #00bdc4;
border-bottom: 1px solid #bdbdbd;
padding-bottom: 20px;