2020年6月15日 星期一
台灣健保虧損的原因在普遍性的浪費
台灣健保虧損的原因在普遍性的浪費,未落實大病到大醫院,小病到衛生所和區域醫院的政策。健保必須嚴格控制不重複開藥,或者乾脆實施醫藥分流,拿醫生處方去藥局自購。如未經診家醫安排轉診去看專科醫生的話,只有符合醫院急診條件的情況,才會被醫院接受做醫療。非急診的狀況,必須由家醫轉診安排專科醫生,等不急的可自費直接看診。若用健保卡支付專科醫生的看診,只可有醫材等級的差別,沒有各家醫院自訂收費的差別。如此既可保障同等級醫材的品質,也不會讓醫生受健保給付的限制。
2020年3月14日 星期六
2020年3月2日 星期一
2020年2月19日 星期三
1 Bitmap bitmapOrg = BitmapFactory.decodeByteArray(rawData, 0, rawData.length); 2 Bitmap bitmapNew = bitmapOrg.copy(Config.ARGB_8888, true); 3 if(bitmapNew == null)
1 Bitmap bitmapOrg = BitmapFactory.decodeByteArray(rawData, 0, rawData.length); 2 Bitmap bitmapNew = bitmapOrg.copy(Config.ARGB_8888, true); 3 if(bitmapNew == null) 4 return; 5 for(int i = 0;i<bitmapNew.getWidth();i++) 6 { 7 for(int j =0;j<bitmapNew.getHeight();j++) 8 { 9 int col = bitmapNew.getPixel(i, j); 10 int alpha = col&0xFF000000; 11 int red = (col&0x00FF0000)>>16; 12 int green = (col&0x0000FF00)>>8; 13 int blue = (col&0x000000FF); 14 int gray = (int)((float)red*0.3+(float)green*0.59+(float)blue*0.11); 15 int newColor = alpha|(gray<<16)|(gray<<8)|gray; 16 } 17 }
2020年2月12日 星期三
2020年2月7日 星期五
2020年1月29日 星期三
UDFs (“user-defined functions”) are not new and have been a part of the InterBase API for a long time. But it’s one of those features that helped make InterBase incredibly versatile and popular, so writing an article on InterBase without mentioning UDFs would be unthinkable...
UDFs (“user-defined functions”) are not new and have been a part of the InterBase API for a long time. But it’s one of those features that helped make InterBase incredibly versatile and popular, so writing an article on InterBase without mentioning UDFs would be unthinkable... |