Code Offer

Code Is Poetry!

Microsoft Releases Windows Phone 7.8 SDK — Still Due In “Early 2013″

Microsoft has released an SDK for Windows Phone 7.8 – aka the last ever update for Windows Phone 7 handsets, which have been orphaned by the company’s platform shift to Windows … Continue reading

January 24, 2013 · Leave a comment

Free Code: Android – Using Pull-To-Refresh

Activity.java // Set a listener to be invoked when the list should be refreshed. PullToRefreshListView pullToRefreshView = (PullToRefreshListView) findViewById(R.id.pull_to_refresh_listview); pullToRefreshView.setOnRefreshListener(new OnRefreshListener<ListView>() { @Override public void onRefresh(PullToRefreshBase<ListView> refreshView) { // Do … Continue reading

January 2, 2013 · Leave a comment

Faster FAST Decoder – Market Data Handler in Nanoseconds

  In this post I told a story about how I improved the FAST market data decoder to decode CME messages within nano seconds. —   My current FAST decoder … Continue reading

December 19, 2012 · Leave a comment

Android UI/UX Tips: Swiping Action

Another month, another UI/UX Tips article!  This time I looked into the swiping action between tabs, proper handling of multiple notifications, proper dialog actions, and some smart use of colors … Continue reading

December 15, 2012 · Leave a comment

Order Management in Nanoseconds

On one hand, if we compete on speed, there will only be one winner in the market. On the other hand, speed only matters if people are competing on the … Continue reading

December 2, 2012 · Leave a comment

QWFIX C++ Equities, Trading, Research and Management

QWFIX C++ Equities is the latest development of the QWFIX product line that targets the US domestic equities trading. Initially we will support five exchanges (NYSE, ARCA, NASDAQ, BATS and … Continue reading

November 21, 2012 · Leave a comment

2D Water Explained

2D Water A little while ago, I saw an impressive effect. I have no idea who invented it, but that person deserves plenty of respect, and exciting presents at christmas. … Continue reading

September 21, 2012 · Leave a comment

Free Code: Andriod – Process all display events in order

blob: 64fb27b3e18a4b4059bdf7ea4276279fba1825f4 [file history] /*  * Copyright (C) 2011 The Android Open Source Project  *  * Licensed under the Apache License, Version 2.0 (the “License”);  * you may not use … Continue reading

August 12, 2012 · Leave a comment

Simple Javascript code formatter

Description This simple Javascript function attempts to format lines within a <pre> tag. I needed a means of making blocks of code more readable when publishing snippets on this site … Continue reading

July 21, 2012 · Leave a comment

JavaScript: Water Ripple

/** * Water ripple effect. */ (function(){ var canvas = document.getElementById(‘c’), /** @type {CanvasRenderingContext2D} */ ctx = canvas.getContext(‘2d’), width = 400, height = 400, half_width = width >> 1, half_height … Continue reading

May 21, 2012 · Leave a comment