View index.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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; |
View git-squash.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
View twitter.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
View clean_cra.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
View mnews.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#header-wrapper, #menu-top, #menu-1, .ads-top-big, .sidebar-right, .ads-top-big1, #footer-wrapper,.farhacool,.farhacool1 { | |
display: none; | |
} | |
#outer-wrapper{ | |
box-shadow: unset; | |
} | |
================= j |
View launch.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Chrome", | |
"type": "chrome", | |
"request": "launch", | |
"url": "http://localhost:3000", | |
"webRoot": "${workspaceRoot}/src" | |
} |
View jsconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "es6", | |
"module": "es6", | |
"allowSyntheticDefaultImports": true, | |
"baseUrl": ".", | |
"paths": { | |
"*": ["./src/*"] | |
} | |
}, |
View bash.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
View temp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"[Palenight Theme]": { | |
"sideBar.border": "#00000030", | |
"tab.border": "#0000006c", | |
"statusBar.border": "#00000030", | |
"tab.activeBorderTop": "#4d028a", | |
"tab.activeBorder": "#00000030", | |
"editorGroupHeader.tabsBorder": "#00000030", | |
"titleBar.border": "#00000030", | |
"panel.border": "#00000030", | |
"activityBar.border": "#00000030", |
View tmux.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 0 is too far from ` ;) | |
set -g base-index 1 | |
# Automatically set window title | |
set-window-option -g automatic-rename on | |
set-option -g set-titles on | |
#set -g default-terminal screen-256color | |
set -g status-keys vi | |
set -g history-limit 10000 |
NewerOlder