Skip to content

Instantly share code, notes, and snippets.

View flashingcursor's full-sized avatar

Gil Rutkowski flashingcursor

View GitHub Profile

Supported Currencies

Name Unit Is Zelcore Supported Is Ledger Supported Itegrated Ledger Address Itegrated Ledger Sending Is Trezor Supported Itegrated Trezor Address Itegrated Trezor Sending
Algorand ALGO
Anon ANON
Avax C-Chain AVAX-C
Avax P-Chain AVAX-P
Avax X-Chain AVAX-X
Axe AXE

Keybase proof

I hereby claim:

  • I am flashingcursor on github.
  • I am flashingcursor (https://keybase.io/flashingcursor) on keybase.
  • I have a public key ASB7Ca7DRl3BeXH4al_tN1hP2OZozYx8dIQFHpvYqqMmhgo

To claim this, I am signing this object:

@flashingcursor
flashingcursor / 1 web.xml
Last active December 25, 2015 01:39
Jersey API and jQuery CORS (Cross Origin Resource Sharing) for IE8+
<init-param>
<param-name>com.sun.jersey.spi.container.ContainerResponseFilters</param-name>
<param-value>com.domandtom.api.web.security.ResponseCorsFilter</param-value>
</init-param>
@flashingcursor
flashingcursor / gist:6235935
Last active December 21, 2015 02:38
Seeking: Mid-to-Senior level web developer.

We're looking for a Mid-to-Senior level Open Source developer (or two) with a passion for code.

We're not just looking for someone "Good" -- We're looking for someone that loves being good at what they do.

Direct applicants only. Interviews starting Tuesday, 7/23. GitHub or other open source software project participation, and code samples, are required.

About D&T:

In 2009, Dom & Tom, Inc. was founded by twin brothers as a mobile and web development studio, specializing in emerging technologies. Three years later, D&T has grown into 25+ full-time employees spanning three major cities. Based in Manhattan and Chicago with a satellite office in Las Vegas.

@flashingcursor
flashingcursor / gist:5194011
Last active December 15, 2015 03:28
Seeking some passionate web developers - Chicago or New York

Wanted:

A Mid-to-Senior level Open Source developer (or two) with a passion for code. We're not just looking for someone "Good" -- We're looking for someone that loves being good at what they do.


About D&T:

In 2009, Dom & Tom, Inc. was founded by twin brothers as a mobile and web development studio, specializing in emerging technologies. Three years later, D&T has grown into 25+ full-time employees spanning three major cities. Based in Manhattan and Chicago with a satellite office in Las Vegas.

Dom & Tom has built amazing relationship with companies like Tyson, Herst Media, Fitch Research, Bloomberg and dozens of other heavy hitters which is great for hot up and coming developers that don't want to work a 60 hour week doing grunt work -- instead, you'll have the opportunity to shine in the big leagues.

We hire based on ability, drive, innovative critical thinking, and the desire to do good work. Experience is an obvious must, but you don't need have 10 years -- if you're good and you kn

@flashingcursor
flashingcursor / remove_hentry.php
Created October 8, 2012 06:28
Strip hentry from WordPress posts...
<?php
/**
* Remove the hentry class from posts in WordPress - could really remove any class using various class filters,
* like body_class using this technique.
*
* @param array $classes
* @return array
*/
add_filter( 'post_class', 'fc_remove_hentry', 20 );
@flashingcursor
flashingcursor / gist:3259625
Created August 4, 2012 20:02
Creating a default template for WordPress custom post types with Theme override. This is broken down to limit it to a single view, but could also be modified for a default archive view, etc...
<?php
add_filter( 'template_include', 'default_mycpt_template', 100 );
/**
* Setup a default template for your CPT if the current theme doesn't already have one.
* @return void
*/
function default_mycpt_template( $template )
{
@flashingcursor
flashingcursor / gist:3259590
Created August 4, 2012 19:55
Change "Enter Title Here" text in WordPress Custom Post Types
<?php
add_filter( 'enter_title_here', 'hwp_enter_title_here' );
function hwp_enter_title_here( $title ){
$screen = get_current_screen();
if ( 'custom_post_type' == $screen->post_type ) {
$title = 'Custom Post Type Title Text';
}
@flashingcursor
flashingcursor / gist:3259586
Created August 4, 2012 19:53
Use Transients API for Caching in Wordpress
<?php
function hwp_cached_query() {
if ( false === ( $hwp_query_results = get_transient( 'hwp_query_results' ) ) ) {
$hwp_query_results = new WP_Query( 'cat=5&order=random&tag=tech&post_meta_key=thumbnail' );
set_transient( 'hwp_query_results', $hwp_query_results, 60*60*24 );
}
while ( $hwp_query_results->have_posts() ) : $hwp_query_results->the_post();
echo '<li>';