Skip to content

Instantly share code, notes, and snippets.

@ArloL
ArloL / Questions.markdown
Last active July 24, 2016 17:28
Effortful Retrieval Questions for Where Next? Building a Career as a Technologist

Where Next? Building a Career as a Technologist

http://www.infoq.com/presentations/career-ideal-job

  1. What are possible dimensions of an ideal job?
  2. What are possible dimensions of an ideal job culture?
  3. After what time does a commute influence happiness?
  4. What are different "tracks" that you can follow?
  5. What are some interesting alternatives to a "job" career?
  6. What are ways to get better?
@ArloL
ArloL / Questions.markdown
Last active November 22, 2015 10:56
Effortful Retrieval Questions for Clojure for the Brave and True

Clojure for the Brave and True

http://www.braveclojure.com/

Building, Running, and The REPL

  • What is Clojure?
  • What is Leiningen?
  • What is a lisp?
  • How to create a project layout with Leiningen?
@ArloL
ArloL / Questions.markdown
Last active July 24, 2016 17:29
Effortful Retrieval Questions for Julie Pagano's It's Dangerous to Go Alone
@ArloL
ArloL / Questions.markdown
Last active September 9, 2023 11:24
Effortful Retrieval Questions for Writing Robust Bash Shell Scripts

Writing Robust Bash Shell Scripts

http://www.davidpashley.com/articles/writing-robust-shell-scripts/

  1. How can you tell bash to exit when a variable is unitialised?
  2. How can you tell bash to exit when a command fails?
  3. How can you execute a command that fails in that scenario?
  4. How can you tell bash to exit when a pipe command fails?
  5. How do you create a directory?
  6. How do you delete a file?
@ArloL
ArloL / gist:2c22f68f8d63bb4497f6
Created June 30, 2015 11:52
Oomph proxy error message
!SESSION 2015-06-30 13:46:11.327 -----------------------------------------------
eclipse.buildId=unknown
java.version=1.8.0_45
java.vendor=Oracle Corporation
BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=de_DE
Command-line arguments: -os win32 -ws win32 -arch x86_64 -data @none
!ENTRY org.eclipse.oomph.base 2 0 2015-06-30 13:49:28.495
!MESSAGE org.eclipse.oomph.util.IOExceptionWithCause: HttpComponents connection error response code 503.
!STACK 0
@ArloL
ArloL / gem_make.out
Created December 11, 2014 19:47
nokogiri 1.6.5 install failing on osx 10.10.1
/Users/ArloLOK/.rbenv/versions/2.1.5/bin/ruby extconf.rb
checking if the C compiler accepts ... yes
checking if the C compiler accepts -Wno-error=unused-command-line-argument-hard-error-in-future... no
Building nokogiri using packaged libraries.
checking for iconv... yes
************************************************************************
IMPORTANT NOTICE:
Buidling Nokogiri with a packaged version of libxml2-2.9.2
with the following patches applied:
Mrz 10, 2014 11:31:30 AM hudson.model.UpdateCenter doSafeRestart
Information: Scheduling Jenkins reboot
Mrz 10, 2014 11:31:48 AM hudson.model.UpdateCenter$DownloadJob run
Information: Starting the installation of Throttle Concurrent Builds Plugin on behalf of anonymous
Mrz 10, 2014 11:32:08 AM hudson.model.UpdateCenter$UpdateCenterConfiguration download
Information: Downloading Throttle Concurrent Builds Plugin
--
Apr 03, 2014 9:08:15 AM hudson.model.UpdateCenter$DownloadJob run
Information: Starting the installation of Git Parameter Plugin on behalf of anonymous
Apr 03, 2014 9:08:17 AM hudson.model.UpdateCenter$UpdateCenterConfiguration download
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'accessRequestRepository': Cannot resolve reference to bean 'jpaMapppingContext' while setting bean property 'mappingContext'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'jpaMapppingContext': Invocation of init method failed; nested exception is java.lang.StackOverflowError
at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:336) ~[spring-beans-4.0.5.RELEASE.jar:4.0.5.RELEASE]
at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveValueIfNecessary(BeanDefinitionValueResolver.java:108) ~[spring-beans-4.0.5.RELEASE.jar:4.0.5.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1456) ~[spring-beans-4.0.5.RELEASE.jar:4.0.5.RELEASE]
at org.springframework.beans.f
{
"vars": {
"@gray-darker": "lighten(#000, 13.5%)",
"@gray-dark": "lighten(#000, 20%)",
"@gray": "lighten(#000, 33.5%)",
"@gray-light": "lighten(#000, 60%)",
"@gray-lighter": "lighten(#000, 93.5%)",
"@brand-primary": "#428bca",
"@brand-success": "#5cb85c",
"@brand-info": "#5bc0de",
import org.gwtbootstrap3.client.ui.DataGrid;
import com.google.gwt.core.client.GWT;
import com.google.gwt.resources.client.ImageResource;
import com.google.gwt.user.client.ui.Widget;
import com.google.gwt.view.client.ProvidesKey;
public class BootstrapDataGrid<T> extends DataGrid<T> {
private static final int DEFAULT_PAGESIZE = 50;