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
#!/usr/bin/env xdg-open | |
[Desktop Entry] | |
Encoding=UTF-8 | |
Name=Robomongo | |
Comment=Launch Robomongo | |
Icon=/opt/robomongo/robomongo.png | |
Exec=/usr/sbin/robomongo | |
Terminal=false | |
Type=Application | |
Categories=Developer; |
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
#!/bin/bash | |
# | |
# Usage : dbxcligetfiles.sh "\*\.png" /Webdesign | |
# | |
dbxcli search $1 $2 | while read line | |
do | |
echo $line | |
mkdir -p ".${line%/*}" | |
dbxcli get "$line" ".$line" | |
done |
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
http://192.168.1.97:8081/|-20 |
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
var exec = require('child_process').exec; | |
var argv = require('minimist')(process.argv.slice(2)); | |
var stringify = require('csv-stringify'); | |
var fs = require('fs'); | |
function takeMesure(callback){ | |
exec('iwconfig wlan0', function(err, stdout, stderr){ | |
//console.log(stdout); | |
var essid = /ESSID:"(.+)"/.exec(stdout), | |
power = /Bit Rate=([0-9]+) +Mb\/s +Tx\-Power=([0-9]+) dBm/.exec(stdout), |
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
[/script/shootergame.shootergamemode] | |
GlobalSpoilingTimeMultiplier=5 | |
GlobalItemDecompositionTimeMultiplier=3 | |
GlobalCorpseDecompositionTimeMultiplier=3 | |
MatingIntervalMultiplier=0.1 | |
EggHatchSpeedMultiplier=16.0 | |
BabyMatureSpeedMultiplier=16.0 | |
BabyCuddleIntervalMultiplier=0.1 | |
bPassiveDefensesDamageRiderlessDinos=true | |
PerLevelStatsMultiplier_DinoTamed_Add[0]=0.50 |
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
\.ae\.org$ whois.centralnic.com | |
\.ar\.com$ whois.centralnic.com | |
\.br\.com$ whois.centralnic.com | |
\.cn\.com$ whois.centralnic.com | |
\.com\.de$ whois.centralnic.com | |
\.com\.se$ whois.centralnic.com | |
\.de\.com$ whois.centralnic.com | |
\.eu\.com$ whois.centralnic.com | |
\.gb\.com$ whois.centralnic.com | |
\.gb\.net$ whois.centralnic.com |
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
/* | |
* Usage : node generateWhoisConf.js > /etc/whois.conf | |
*/ | |
var json = require('comment-json'); | |
var request = require('request'); | |
request('https://github.com/weppos/whois/raw/master/data/tld.json', function(error, response, body){ | |
var obj = json.parse(body); | |
Object.keys(obj).forEach(function(key){ |
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
efibootmgr -d /dev/sda -p 1 -c -L "Arch Linux" -l /vmlinuz-linux -u "root=/dev/mapper/ssd-root resume=/dev/mapper/ssd-swap initrd=/intel-ucode.img initrd=/initramfs-linux.img nomodeset" |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<project version="4"> | |
<component name="CompilerConfiguration"> | |
<option name="DEFAULT_COMPILER" value="Javac" /> | |
<resourceExtensions /> | |
<wildcardResourcePatterns> | |
<entry name="!?*.java" /> | |
<entry name="!?*.form" /> | |
<entry name="!?*.class" /> | |
<entry name="!?*.groovy" /> |
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
# | |
# Rules for Maid file cleaner, bunch of rules to sorting Photorec output folder. | |
# Maid Tool : https://github.com/benjaminoakes/maid | |
# PhotoRec Tool : http://www.cgsecurity.org/wiki/PhotoRec | |
# | |
# ----Help---- | |
# Get All extension in directory : find . -type f | perl -ne 'print $1 if m/\.([^.\/]+)$/' | sort -u | |
# ------------ | |
# Author: HugoPoi | |
# |