Skip to content

Instantly share code, notes, and snippets.

View boo1ean's full-sized avatar
🎯
Focusing

Egor Gumenyuk boo1ean

🎯
Focusing
View GitHub Profile
  • Backend:

    • Advanced knowledge of PHP

    • PHP frameworks/components:

      • Zend Framework
      • Symfony2
      • CodeIgniter
      • Silex
  • Laravel 4

$ java -jar jenkins-cli.jar -s http://localhost:9000 install-plugin findbugs
findbugs is neither a valid file, URL, nor a plugin artifact name in the update center
No update center data is retrieved yet from: http://updates.jenkins-ci.org/update-center.json
findbugs looks like a short plugin name. Did you mean 'null'?
# Specifying a full URL works!
$ java -jar jenkins-cli.jar -s http://localhost:9020 install-plugin http://updates.jenkins-ci.org/download/plugins/AdaptivePlugin/0.1/AdaptivePlugin.hpi
# Get the update center ourself
$(function() {
var App = {
models: {},
views: {},
collections: {},
}
App.models.Task = Backbone.Model.extend({
url: "/tasks",
destroy: function() {
  • Lang:

    • php
  • Db:

    • mysql
  • Web server:

    • apache2
  • MVC framework:

@boo1ean
boo1ean / r
Created August 13, 2013 11:49
Whois Server Version 2.0
Domain names in the .com and .net domains can now be registered
with many different competing registrars. Go to http://www.internic.net
for detailed information.
Server Name: MICROSOFT.COM.ZZZZZZZZZZZZZZZZZZZZZZ.IS.A.GREAT.COMPANY.ITREBAL.COM
IP Address: 97.107.132.202
Registrar: GANDI SAS
snippet req
require("${1:lodash}")${2:;}
snippet def
define(function(require) {
return ${1};
});
snippet layout
define(function(require) {
return require("marionette").Layout.extend({
template: "#template-${1:layout}",
<?php require_once 'vendor/autoload.php';
use Rych\Random\Random;
$random = new Random();
echo $random->getRandomString(50) . PHP_EOL;
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
<?php require_once '../vendor/autoload.php';
use Rych\Random\Random;
use Slim\Slim;
$app = new Slim();
$app->get('/random', function() {
$random = new Random();
echo $random->getRandomString(50) . PHP_EOL;
<VirtualHost *:80>
ServerName test
DocumentRoot /home/boo1ean/src/git/composertest/public
<Directory /home/boo1ean/src/git/composertest/public>
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>