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 | ✅ | ❌ | ❌ | ❌ | ✅ | ❌ | ❌ |
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:
<init-param> | |
<param-name>com.sun.jersey.spi.container.ContainerResponseFilters</param-name> | |
<param-value>com.domandtom.api.web.security.ResponseCorsFilter</param-value> | |
</init-param> |
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.
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.
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
<?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 ); |
<?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 ) | |
{ |
<?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'; | |
} |
<?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>'; |