JavaScript On how i make it work on Firefox?

by Eineki, April 27, 2010 11:45

Is my previous post still p...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk

JavaScript On pb resize image

by Eineki, January 21, 2010 12:58

How is the function misbeha...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk

JavaScript On pb resize image

by Eineki, January 19, 2010 23:32

How call you the method?
W...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk
1
2
3
4
function redim_img(apodimg)
{
   // you can pass a string with the id of the
...

JavaScript On pb resize image

by Eineki, January 19, 2010 20:58

The code is quite good to m...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk
1
2
3
4
function redim_img(apodimg)
{
   // you can pass a string with the id of the
...

JavaScript On pb resize image

by Eineki, January 19, 2010 20:57

The code is quite good to m...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk

PHP On Need help decoding ZEND php...

by Eineki, January 06, 2010 14:01 Star_fullStar_fullStar_fullStar_fullStar_full

It is not a matter of nice/...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk
1
2
3
4
<?php

function array_to_csv($arraydata, $delimeter=',', $linebreak="\n", $enclosure='"') {
...

PHP On array to csv

by Eineki, December 07, 2009 19:42

I think there $arraydata is...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk
1
2
3
4
function format_money(n) {
   var str, padlen;
 
...

JavaScript On Money formatting

by Eineki, November 26, 2009 05:02

Just a divertissement.
It s...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk
1
2
3
4
int max = rand(); // or any init value
int min = rand(); // or any init value
int tmp = rand(); // or any init value
...

C On How to find max, min of thr...

by Eineki, October 05, 2009 18:33

Hi Denis,
I'd to perform ...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk
1
2
3
4
<?
/**
 * Generates a multi-column table from an array 
...

PHP On Generate table from array

by Eineki, July 24, 2009 12:36 Star_fullStar_fullStar_fullStar_fullStar_full

Just for exercise, I've rew...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk
1
2
3
4
<?php

$name = "test";
...

PHP On Std PHP Output + Variable

by Eineki, June 02, 2009 10:41

maybe you can use the comma...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk
1
2
3
4
<?php
    function am_getlatestscores($db, $cat) {
        $sql = "SELECT username, score FROM `AMCMS_highscores` JOIN `AMCMS_users` ON `primkey`=`userkey` WHERE `primkey`='$cat' ORDER BY `score` DESC LIMIT 10;";
...

PHP On Retrieve username by user I...

by Eineki, May 17, 2009 13:57 Star_fullStar_fullStar_fullStar_fullStar_full

I'm not sure that the follo...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk

Bash On Unzip large database dump d...

by Eineki, February 11, 2009 09:03

To me this solution is quit...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk
1
2
#!/bin/bash
cat - | awk '!x[$0]++'

Bash On sort | uniq alternative

by Eineki, February 08, 2009 02:06

Your problem is read. It is...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk
1
2
int x, y;
x = x > y? y : x;

C# On Which is more readable? Mat...

by Eineki, January 03, 2009 09:13

The first refactoring is, t...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk
1
2
3
#!/bin/bash
echo -e "\n I wish you a merry Christmas and an happy new year! \n"
exit(0);

Bash Multi language refactor

by Eineki, December 25, 2008 08:59, 6 refactorings

Can you rewrite this onelin...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk
1
2
3
4
<?php
ob_start();
include_once "include/config.php";
...

PHP On Login / Registration - be e...

by Eineki, December 13, 2008 15:57

I don't think you can simpl...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk
1
2
3
// line 44 while condition have to change to or you don't apply the last division 
...

Java On Factoring Integers

by Eineki, November 26, 2008 23:24

The two functions, nextFact...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk
1
2
3
4
/* Lets say we have two numbers: 27 and 145 (just two random values) into two separate variable */

int min = 27;  // 00011011 binary 8bit for 27  
...

C On How to find max, min of thr...

by Eineki, November 20, 2008 00:52 Star_fullStar_fullStar_fullStar_fullStar_full

It is quite simple, once yo...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk
1
2
3
4
int max = rand(); // or any init value
int min = rand(); // or any init value
int tmp = rand(); // or any init value
...

C On How to find max, min of thr...

by Eineki, November 18, 2008 23:55

Try this code, it was a kin...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk
1
2
3
4
<?
/*
E.g:
...

PHP On remove http from url string

by Eineki, November 11, 2008 10:49 Star_fullStar_fullStar_fullStar_full

Hi, you can use preg_replac...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk
1
2
3
4
<?php
function get_next_seat($table_id, $start_seat) {
  $player_data=$this->admin->get_player_data($table_id);
...

PHP On Get Next Turn

by Eineki, November 11, 2008 00:26

You are right, $next_seat h...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk
1
2
3
4
<?php
function get_next_seat($table_id, $start_seat) {
  $player_data=$this->admin->get_player_data($table_id);
...

PHP On Get Next Turn

by Eineki, November 08, 2008 20:34

You are right, $next_seat h...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk

PHP On Array To Tablerows

by Eineki, October 26, 2008 23:00

cool version the one liner ...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk
1
2
3
4
<?php
function array_to_tablerows($array = array(), $cols = 2) {
   if (!is_array($array) || $cols < 1) return false;
...

PHP On Array To Tablerows

by Eineki, October 26, 2008 22:57

My previous version shorten...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk