Twitter iPhone pliant OnePlus 11 PS5 Disney+ Orange Livebox Windows 11

14.1

53 réponses
Avatar
Doug713705
Slackware 14.1 est de sortie avec au menu :
- Linux 3.10.17 (LTS)
- XFCE 4.10.1
- KDE 4.10.5
- gcc 4.8.2
- glibc 2.17
- LLVM
- Clang
- efibootmgr
- elilo (support uefi)
- grub-2 (!)

Et tout un tas d'autres trucs qui font que Slackware reste une
référence.

Bon appétit :-)

ftp://ftp.osuosl.org/pub/slackware/slackware64-14.1/ANNOUNCE.14_1
ftp://ftp.osuosl.org/pub/slackware/slackware64-14.1/CHANGES_AND_HINTS.TXT
ftp://ftp.osuosl.org/pub/slackware/slackware64-14.1/UPGRADE.TXT
ftp://ftp.osuosl.org/pub/slackware/slackware64-14.1/PACKAGES.TXT

--
Doug - Linux user #307925 - Slackware64 roulaize ;-)
Without freedom of choice there is no creativity.
-- Kirk, "The return of the Archons", stardate 3157.4

10 réponses

2 3 4 5 6
Avatar
william
On 2013-11-11, Emmanuel Florac wrote:
Le Mon, 11 Nov 2013 10:40:23 +0000, william a écrit:


45, ca parait beaucoup quand meme ...



Non, si tout les outils que tu codes tu les ranges proprement dans des
paquets, dans un petit repo bien propre.



on doit pas avoir la même utilisation, je fais juste des script shells et
encore, c'est juste pour faire mumuse (conversion carnet d'adresse au format
abook), j'arrive péinblement a 8 ou 9 scripts
Avatar
Emmanuel Florac
Le Fri, 08 Nov 2013 20:19:50 +1100, Doug713705 a écrit:

- glibc 2.17



Vive Drepper!

--
Don't worry about people stealing your ideas. If it's original, you'll
have to ram it down their throats.
Howard Aiken, creator of the IBM/Harvard Mark 1 Computer
Avatar
JKB
Le 13 Nov 2013 21:58:03 GMT,
Emmanuel Florac écrivait :
Le Fri, 08 Nov 2013 20:19:50 +1100, Doug713705 a écrit:

- glibc 2.17



Vive Drepper!



Ah non !

--
Si votre demande me parvient sur carte perforée, je titiouaillerai très
volontiers une réponse...
=> http://grincheux.de-charybde-en-scylla.fr
=> http://loubardes.de-charybde-en-scylla.fr
Avatar
Tonton Th
On 2013-11-13, Emmanuel Florac wrote:

- glibc 2.17



Vive Drepper!



Arggggghhhh...

--
http://la.buvette.org/photos/myrys/g/avec_gmic.html
Avatar
Emmanuel Florac
Le Thu, 14 Nov 2013 11:31:14 +0000, Tonton Th a écrit:

On 2013-11-13, Emmanuel Florac wrote:

- glibc 2.17



Vive Drepper!



Arggggghhhh...




Ah ah ah ah mon troll diabolique a marché :)


--
The fact that a believer is happier than a sceptic is no more to the
point than the fact that a drunken man is happier than a sober one.
The happiness of credulity is a cheap and dangerous quality.
George Bernard Shaw
Avatar
Tonton Th
On 2013-11-14, Emmanuel Florac wrote:

- glibc 2.17



Vive Drepper!



Arggggghhhh...




Ah ah ah ah mon troll diabolique a marché :)




Celui là ?

================================================================ #include <stdio.h>
#include <string.h>
int main(int argc, char *argv[])
{
int bcle;
char chaine[100];
char *cptr;
strcpy(chaine, "abcde");
for (bcle=0; bcle<1000000; bcle++)
{
cptr = strfry(chaine);
printf("%9d %sn", bcle, chaine);
}
return 0;
}
================================================================
Oui, là, il y a du level ;)

--
http://la.buvette.org/photos/myrys/g/avec_gmic.html
Avatar
Moreira David
Tonton Th writes:

On 2013-11-14, Emmanuel Florac wrote:

======================== ========================= ================
#include <stdio.h>
#include <string.h>
int main(int argc, char *argv[])
{
int bcle;
char chaine[100];
char *cptr;
strcpy(chaine, "abcde");
for (bcle=0; bcle<1000000; bcle++)
{
cptr = strfry(chaine);
printf("%9d %sn", bcle, chaine);
}
return 0;
}
======================== ========================= ================

Oui, là, il y a du level ;)


Effectivement:

bash$ gcc -Wextra -Wall yolo.c -oyolo
yolo.c: In function ‘main’:
yolo.c:11:9: warning: implicit declaration of function ‘strfry⠀™ [-Wimplicit-function-declaration]
yolo.c:11:14: warning: assignment makes pointer from integer without a cast [enabled by default]
yolo.c:7:10: warning: variable ‘cptr’ set but not used [-Wu nused-but-set-variable]
yolo.c:3:14: warning: unused parameter ‘argc’ [-Wunused-par ameter]
yolo.c:3:26: warning: unused parameter ‘argv’ [-Wunused-par ameter]


Comme ca c'est mieux:

========================= ========================= ===============
#include <stdio.h>
#include <string.h>
int main(void)
{
int bcle;
const char* chaine = "abcde";

for (bcle = 0; bcle < 1000000; ++bcle)
{
printf("%9d %sn", bcle, chaine);
}
return 0;
}
========================= ========================= ===============


--
David Moreira
perso:
Avatar
Tonton Th
On 2013-11-15, Moreira David wrote:

for (bcle=0; bcle<1000000; bcle++)
{
cptr = strfry(chaine);
printf("%9d %sn", bcle, chaine);
}

Oui, là, il y a du level ;)


Effectivement:



C'est surtout le troll (hop, en charte) qui tourne autour
de cette fonction qui est importan^Wpathétique :

http://sourceware.org/bugzilla/show_bug.cgi?idD03


--
http://la.buvette.org/photos/myrys/g/avec_gmic.html
Avatar
Moreira David
Tonton Th writes:

On 2013-11-15, Moreira David wrote:

for (bcle=0; bcle<1000000; bcle++)
{
cptr = strfry(chaine);
printf("%9d %sn", bcle, chaine);
}

Oui, là, il y a du level ;)


Effectivement:



C'est surtout le troll (hop, en charte) qui tourne autour
de cette fonction qui est importan^Wpathétique :

http://sourceware.org/bugzilla/show_bug.cgi?idD03


Effectivement, sur un aussi petit example, 25% c'est ENAURME !
--
David Moreira
perso:
Avatar
Nicolas George
Moreira David , dans le message , a écrit :
Comme ca c'est mieux:



Vous avez tous les deux des styles d'indentation hideux.
2 3 4 5 6