UNDERSTANDING BLOCKCHAIN TECHNOLOGY: BENEFITS AND CHALLENGES IN 2024

Understanding Blockchain Technology

Blockchain technology has evolved significantly since its inception with Bitcoin. Today, it powers everything from financial systems to supply chain management.

LOAD A FILE AND PRINT OUT LINES IN A RANDOM ORDER

 public static void main(String args\[\]) throws IOException{  
  List<String\> lines \= Files.readAllLines(Paths.get("test.txt"));  
  Random r \= new Random();  
  while(!lines.isEmpty()){       
   String nextLine \= lines.get(r.nextInt(lines.size()));  
   System.out.println(nextLine);  
   lines.remove(nextLine);     
  }    
 }  

DARK THEME FOR ECLIPSE KEPLER

https://github.com/guari/eclipse-ui-theme

GMAIL NOTIFICATIONS NOT WORKING AFTER LATEST UPDATE ON ANDROID/NEXUS 4

Settings–>Applications–>GMail, force stop, clear data/cache fixed this for me :-)

MONEY IN, MONEY OUT

Design and development of a real time matching engine to provide insights into liquidity for funding forecasts and regulatory requirements.

TOO MUCH TECHNOLOGY

“Healthcare companies today are solving the medical problems that our technological society has created. Diabetes, heart disease, and obesity. The cure isn’t more technology and medicine…the cure is that these people need a reason to live.”

DOWNLOADING MAVEN SETTINGS FROM NEXUS

mvn org.sonatype.plugins:nexus-maven-plugin:settings-download

http://www.sonatype.com/books/nexus-book/reference/settings-sect-downloading.html

ECLIPSE VIBRANT INK SEARCH RESULTS HEADACHE

The Eclipse color theme plugin makes its simply to switch to the Vibrant Ink theme. However, when doing a search (eg. find references) highlighted matches are a little tricky to see! To change this:

RISK AND TRIBAL LANGUAGE / COUNTERPARTY CREDIT RISK

Whenever you start on a new project there’s always a certain amount of tribal language to decode. A colleague of mine kept talking about a system that “calculates IRC”. When I asked what IRC was, he didn’t know….

AUTO CREATE BUILDER PATTERN CODE IN ECLIPSE

Looking at legacy code with lots of unwiedly constructors. Whilst mocking needing something to create all the boiler plate builder code and found this plugin that works with Juno too. http://code.google.com/p/bpep/