Posts

Featured post

sass - Issue with CSS3 transition flow -

i have setup background transition on this page . the first area of page "il blog - leggi tutti gli articoli" , "gli eventi - leggi tutti gli eventi" shows list of different post types in tiles. when hovering on 1 of them, transition start. when moving out mouse, other transition start. until there everything's fine. the problem shows when move mouse out of tile before transition completed. i trying figure out what's missing in css can't find it. i know solve problem moving transition jquery script, prefer using css approach. here scss excerpt of involved elements: article { @include box-shadow(0 0 2px $primary-color); @include transition(all 1s ease-in-out); @include border-radius(2px); background-image: url('../images/concrete_wall.png'); &:hover { @include box-shadow(0 0 4px $primary-color); background-image: url('../images/concrete_wall_2.png'); } } here's produced cs

excel - Libre Office Calc row limit increase -

i need view 1 lakh (100,000) rows in libre office cal, row size limited. how can increase row size? or tool view 1 lakh lines. want data mining these records. file contain 1 lakh customer records. single file in csv format. 1 lakh rows , 40 columns need view. i'm using libre office version 3. the row limit of libre office depends on version using: pre 3.3.3: limit 65 536 rows 3.3.3 , later: 1 048 576 rows (1m)

sql server - Changing the Column data type that exists in more than one table -

i'm using sql server , have column asset_serial exists in more 1 table. the problem when wanted change type got this: msg 5074, level 16, state 1, line 1 object 'pk_assets' dependent on column 'asset_serial'. msg 5074, level 16, state 1, line 1 object 'fk_assigned_assets_assets' dependent on column 'asset_serial'. msg 4922, level 16, state 9, line 1 alter table alter column asset_serial failed because 1 or more objects access column. any suggestions...? asset_serial primary key of current table , foreign key table first should drop 2 constraint , alter field in both tables , @ last create constraints again if (object_id('fk_constraintname', 'f') not null) begin //drop constraint alter table [tablename] drop constraint [fk_constraintname] alter table [tablename] drop constraint [pk_constraintname] //alter table change column alter table alter column asset_serial //create cont

ios - Draw the frame on the button edge -

i have buttons. need mark of them. make frames. can realize it? can draw frame on buttons edge? add quartzcore framework project. modify buttons follows: #import <quartzcore/quartzcore.h> ......... button.layer.borderwidth = 5.0f; button.layer.bordercolor = [[uicolor blackcolor] cgcolor]; button.layer.cornerradius = 5.0; //optional, if need rounded corners

I want To take registration Fee in Opencart -

i developing e-commerce website using opencart framework , want take registration fee $25 while registering user , how can implement or 1 have extension that. please me . in advance. the simplest solution: make registered customers inapproved - administrator has approve them. display each customer's id on "after-register" confirm page information registration fee has payed , while using id payment variable symbol (you format id code 000000001 , 000012456 , 0124578963 , etc.). after customer pays approve him within administration... automated solution: let registering user decide how pay registration fee (paypal, transfer, other services). after registration, while new customer still not approved , redirect pay service (if applicable). after successful payment (still using customer's id variable symbol) automatically approve user within payment callback. if bank transfer available you'd still have approve them manualy in case of unsucce

c - Dealing with buf between user space and kernel -

i'm making simple device driver capable of receiving , sending characters using uart. my read , write functions follows: unsigned char uart_read(void){ unsigned int buf; while( ( ( inb(uart_lsr + uart) ) & uart_lsr_dr ) == 0 ){ schedule(); } buf = inb(uart); return (char)buf; } ssize_t serp_read(struct file *filep, char __user *buf, size_t count, loff_t *offp){ ssize_t cnt, ret; char *buffer; unsigned char data; int i; buffer = kmalloc(count * sizeof(char), gfp_kernel); printk("\nthis kernel, read called , count %zd\n", count); while(1){ buffer[i] = uart_read(); if(buffer[i] == '\n') break; i++; } buffer[strlen(buffer) - 1] = '\0'; if( (cnt = (copy_to_user(buf, buffer, strlen(buffer)))) != 0 ) printk("error in copy_to_user() cnt %d\n", cnt); ret = s

wso2 - How to byepass a older version jar with new? -

i have written class mediator , used in wso2 esb uses ehcache-core-2.6.6 jar have put jar in \esb_home\repository\components\lib folder here twist, have jar ehcache_1.5.0.wso2v3 jar in esb_home\repository\components\plugins. jar comes wso2 esb. when run proxy containing class mediator, takes refrence of ehcache_1.5.0.wso2v3 jar instead of ehcache-core-2.6.6 jar due getting error as: [2013-05-14 17:10:59,898] error - nativeworkerpool uncaught exception java.lang.nosuchmethoderror: net.sf.ehcache.cachemanager.newinstance(ljava/lang/string;)lnet/sf/ehcache/cachemanager; @ tempuri.data.cachable.cachedata.cachedata(cachedata.java:32) @ tempuri.data.cachable.cachedata.mediate(cachedata.java:26) @ org.apache.synapse.mediators.ext.classmediator.mediate(classmediator.java:78) @ org.apache.synapse.mediators.abstractlistmediator.mediate(abstractlistmediator.java:71) @ org.apache.synapse.mediators.base.sequencemediator.mediate(sequencemediator.java:11