Skip to content

Instantly share code, notes, and snippets.

View hronak's full-sized avatar

Hronak Nahar hronak

View GitHub Profile
@hronak
hronak / web.config
Created October 17, 2016 17:35
Obsolete IIS Server Configuration
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<defaultDocument>
<files>
<clear />
<add value="index.html" />
<add value="index.php" />
</files>
</defaultDocument>
@hronak
hronak / bash.sh
Last active August 13, 2017 18:39
Universal Update Command for Fedora 25
sudo python2 -m pip install -U pip; sudo python3 -m pip install -U pip; sudo python2.7 -m pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 sudo python2.7 -m pip install -U --no-cache-dir; sudo python3 -m pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 sudo python3 -m pip install -U --no-cache-dir; sudo gem update; sudo dnf update;