This file contains hidden or 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
- Github, GIT | |
- metodologia: Getting Things Done®, Agile SCRUM, TDD/BDD, DDD, CQRS, event sourcing | |
- mobiledev: PhoneGap, Titanium | |
- Node-Webkit | |
- Umiejętność bezwzrokowego pisania na klawiaturze | |
- CoffeeScript, Less/Sass, Grunt, Angular (restangular, ui-router), NodeJS, jQuery, Bower, Ember, Backbone, CanJS, Meteor, EmberJS, express, sails, Web Components i framework Polymer, AMD/CommonJS modules, RequireJS, r.js optimizer, CommonJS modules + Browserify, ES6 Harmony modules + ES6 transpiler + SystemJS | |
- Magento, Typo3 | |
- AWS - elasticsearch | |
- mongoDB |
This file contains hidden or 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
Is the internets on fire due to FOSS bugs? Try | |
host -t txt istheinternetonfire.com | |
dig +short -t txt istheinternetonfire.com | |
May be add to your bash/ksh/zsh startup file? | |
echo '*** BUG Watch * ' >> ~/.bash_profile | |
echo 'dig +short -t txt istheinternetonfire.com ' >> ~/.bash_profile | |
echo '*** *** * * * * ' >> ~/.bash_profile |
This file contains hidden or 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/python | |
import sys | |
import random | |
count = 10 # default value | |
if len(sys.argv) > 1: | |
try: | |
count = int(sys.argv[1]) |
This file contains hidden or 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
https://www.raymond.cc/blog/5-free-tools-to-backup-and-restore-master-boot-record-mbr/2/ | |
http://www.rodsbooks.com/gdisk/repairing.html | |
parted / gparted | |
gpart | |
gdisk | |
fdisk | |
sfdisk | |
BOOTREC /FIXMBR |
This file contains hidden or 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
package PACKAGE; | |
import PACKAGE...; | |
/** | |
* DOCUMENT | |
* | |
* @author $Author: h3XXx $ | |
* @version $Revision: 100000 $ | |
*/ | |
public class OBJECTClass extends OBJECTClassGeneric |
This file contains hidden or 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
// Decompiled with JetBrains decompiler | |
// Type: val_ip.Program | |
// Assembly: val_ip, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null | |
// MVID: 5E7D5EDC-F012-4AF3-A5E5-6610706D35E8 | |
using System; | |
using System.IO; | |
using System.Runtime.InteropServices; | |
namespace val_ip |
This file contains hidden or 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
Just my favourite apps: | |
Allegro | |
Apollo | |
Amazon Appstore | |
Avast Mobile Security | |
Aviary | |
CCleaner | |
Ceneo | |
Chrome |
This file contains hidden or 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
def makeRandStr(length = 7, chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJLKMNOPQRSTUVWXYZ0123456789') | |
str = '' | |
for num in 1..length | |
str += chars[rand(0..(chars.length - 1))] | |
end | |
return str | |
end |
This file contains hidden or 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
### from http://serverfault.com/questions/195611/how-do-i-redirect-subdomains-to-a-different-port-on-the-same-server | |
NameVirtualHost *:80 | |
<VirtualHost *> | |
ServerAdmin [email protected] | |
ServerName dev.mydomain.com | |
ProxyPreserveHost On | |
# setup the proxy |
This file contains hidden or 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 express = require('express'); | |
var fs = require('fs'); | |
var path = require('path'); | |
var port = 3005; | |
var staticDir = "staticFiles" | |
var app = express(); | |
app.use(function (req, res, next) { | |
//NOTE (JNHager): NEVER DO THIS IN A PRODUCTION SYSTEM. STRICTLY FOR TESTING LOCALLY!!!! |