Skip to content

Instantly share code, notes, and snippets.

#! /bin/bash
echo "puts $SRANDOM % 65535" | ruby
WORKSPACE:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
RULES_JVM_EXTERNAL_TAG = "4.3"
RULES_JVM_EXTERNAL_SHA = "6274687f6fc5783b589f56a2f1ed60de3ce1f99bc4e8f9edef3de43bdf7c6e74"
http_archive(
name = "rules_jvm_external",
sha256 = RULES_JVM_EXTERNAL_SHA,
Hi Xose,
My friend Alexandre is a Senior Java Developer that is looking for a new job opportunity.
His CV is attached for your reference.
Regards
João Paz
@petrul
petrul / gist:e1d81c709204ebf0f677b98b7f11eb9f
Created July 31, 2019 07:39
mail from crossover: a recruitment company focused on attracting the top 1% of global talent for remote roles with our clients
Delivered-To: petru.dimulescu@gmail.com
Received: by 2002:a67:8a04:0:0:0:0:0 with SMTP id m4csp5340844vsd;
Tue, 30 Jul 2019 16:13:17 -0700 (PDT)
X-Received: by 2002:a1c:a514:: with SMTP id o20mr109869073wme.149.1564528397445;
Tue, 30 Jul 2019 16:13:17 -0700 (PDT)
ARC-Seal: i=1; a=rsa-sha256; t=1564528397; cv=none;
d=google.com; s=arc-20160816;
b=rA7J13JKEVhNZZx4IaDKVudzGqekGAaY0rtubph2YibKM01i7q2V7HCCy/5KwHyY3+
WTQLg0PV9Fr4Rj1XXKstYW8Z/OtNrd7HujgQD7ppZ/Bbca8DbGX9qxiWuO+kDwQ6bsWx
ENq4/EEO4v0+dfwfWr5/swZTHn/hDVbS4YLv0wT0j5c72AIrfqYZu1nt0dxWX2NQ5tgM
Delivered-To: petru.dimulescu@gmail.com
Received: by 2002:a67:ce0e:0:0:0:0:0 with SMTP id s14csp1682761vsl;
Thu, 25 Apr 2019 03:29:43 -0700 (PDT)
X-Google-Smtp-Source: APXvYqxVZ5XL82HDwTy9yApuVwy3feQQmAkmRMJZ/niFJPAHshVBvjQl+1kHKQUKduYQcPdsTx0a
X-Received: by 2002:a65:6688:: with SMTP id b8mr14273344pgw.81.1556188183119;
Thu, 25 Apr 2019 03:29:43 -0700 (PDT)
ARC-Seal: i=1; a=rsa-sha256; t=1556188183; cv=none;
d=google.com; s=arc-20160816;
b=WwshRVp69mX0Zu7N2L9+wlvyFusnjLUFS/Cfy7SmsjDoYmEmR/RIF/x16vplKhaNDa
obO+WsG6yk/JS8etBqP2RHz11pctLBlDLTdgo0YsB3/8m9XIX2eZ23Sq3KfEPQN1Vo/P
@petrul
petrul / gist:3a5fdc9665e8fbbabba9ed1663a98c72
Created February 4, 2019 14:59
mail ransome barabule from luqicpust@lzucafiy.com
Delivered-To: petru.dimulescu@gmail.com
Received: by 2002:a67:81d8:0:0:0:0:0 with SMTP id c207csp514797vsd;
Fri, 25 Jan 2019 09:11:00 -0800 (PST)
X-Google-Smtp-Source: ALg8bN50koWUXl2Z0JVNIysVTILsy6A5UJCAWEYAACF/0SOlfkJhhs86Xcy24vJh8nsy449y0Ztu
X-Received: by 2002:a50:b0e5:: with SMTP id j92mr10907561edd.188.1548436260132;
Fri, 25 Jan 2019 09:11:00 -0800 (PST)
ARC-Seal: i=1; a=rsa-sha256; t=1548436260; cv=none;
d=google.com; s=arc-20160816;
b=zP7awjw3FGHLaJvz9AbxFhrkgR8uEDCcyhSoFNp5snX++BCLclwQPXxC9pO+Jhzt+M
exGvw8RoYSe1TXRjaWkf1ny75h/vBEfwxfEDSS0JNAKWqdCMlgX4+FILnlbBnaEzYZIf
@petrul
petrul / gist:2695779
Created May 14, 2012 19:08
only allow one host to connect
<Directory
Order Deny,Allow
Deny from All
Allow from 192.168.1.1 # from petru
</Directory?
@petrul
petrul / hdfs-site.xml
Created April 8, 2012 13:31
Simplest HDFS hdfs-site.xml
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<configuration>
<property>
<name>dfs.namenode.name.dir</name>
<value>file:///Users/petrudimulescu/.hdfs/name</value>
</property>
<property>
@petrul
petrul / core-site.xml
Created April 8, 2012 13:30
simplest HDFS core-site
<configuration>
<property>
<name>fs.defaultFS</name>
<value>hdfs://localhost:8020</value>
</property>
</configuration>
@petrul
petrul / start-hdfs-namenode-local.sh
Created April 8, 2012 13:29
A simple HDFS starter
HADOOP_HOME=/Users/petrudimulescu/programs/hadoop
HADOOP_CONF=/Users/petrudimulescu/programs/etc/hadoop-local
$HADOOP_HOME/bin/hdfs --config $HADOOP_CONF namenode $*