Skip to content

Instantly share code, notes, and snippets.

@mifas
mifas / clean_cra.sh
Created October 15, 2019 02:21
Clean create-react-app default code
function _craclean(){
rm -rf $1/src/App.js $1/src/App.css $1/src/App.test.js $1/src/index.css $1/src/logo.svg
cat << EOS > $1/src/App.js
import React, { Component } from 'react'
export default class App extends Component {
render() {
return (
<div>
App
</div>
@mifas
mifas / git-squash.sh
Created November 28, 2019 01:19
git branch --squash with simplified commit logs
function git_squash_branch() {
b=$1
git merge --squash "$b"
echo ""
echo ""
git log --reverse --format='%h %s ► %an <%ae>' .."$b"
#git commit -m "$(git log --reverse --format='%h %s ► %an <%ae>' .."$b")"
}
alias gsb="git_squash_branch"
@mifas
mifas / index.php
Last active December 1, 2019 02:08
adminer auto login
<?php
$_GET["username"] = "";
//$_GET["db"] = "";
function adminer_object() {
class AdminerAutoLogin extends Adminer {
function credentials() {
return array("127.0.0.1", "root", "root");
}
function login($login, $password) {
return true;
@mifas
mifas / twitter.css
Last active December 20, 2019 04:47
Twitter Blur the images for privacy
article > div > div:nth-child(2) > div:nth-child(2) > div:nth-child(3) div[aria-label="Embedded video"] {
filter: blur(10px);
}
article > div > div:nth-child(2) > div:nth-child(2) > div:nth-child(3) div[aria-label="Embedded video"]:active {
filter: none;
}
article > div > div:nth-child(2) > div:nth-child(2) > div:nth-child(3) div[aria-label="Image"] {
filter: blur(10px);