La Billetterie

Un peu de tout saupoudré délicatement

Affichage des articles publiés par jmdesp

http://gcc.gnu.org/onlinedocs/gcc/Option-Index.html#Option-Index
http://gcc.gnu.org/onlinedocs/gcc/Invoking-GCC.html

Pour le prépocesseur :
http://gcc.gnu.org/onlinedocs/gcc/Preprocessor-Options.html#Preprocessor-Options

Un outil .Net qui permet de faire cela tourné vers la création de sprite CSS :
http://spritesheetpacker.codeplex.com/

Pour éditer des gif animés, les extraire vers une liste de fichier, puis réassembler ensemble toutes les images :
http://www.lcdf.org/gifsicle/

Un tour des solutions : http://eternal-donut.blogspot.com/2008/03/tip-1-blob-load-methods.html
SQLLoader est probablement le plus efficace : http://www.oracle-base.com/articles/10g/LoadLobDataUsingSqlLoader.php
The lob_test_data.txt file contains regular data and references to the files holding the CLOB and BLOB data.

1,one,01-JAN-2006,clob_test1.txt,blob_test1.doc
2,two,02-JAN-2006,clob_test2.txt,blob_test2.doc

Next, we define the SQL*Loader controlfile, called lob_test.ctl, that will allow us to load the data.

LOAD DATA
INFILE ‘lob_test_data.txt’
INTO TABLE lob_tab
FIELDS TERMINATED BY ‘,’
(number_content CHAR(10),
varchar2_content CHAR(100),
date_content DATE « DD-MON-YYYY » « :date_content »,
clob_filename FILLER CHAR(100),
clob_content LOBFILE(clob_filename) TERMINATED BY EOF,
blob_filename FILLER CHAR(100),
blob_content LOBFILE(blob_filename) TERMINATED BY EOF)

Notice that the filename columns in the datafile are marked as FILLERs, so they are not loaded into the table, but they are used in the LOBFILE definition to identify the loacation of the LOB information.

The data is then loaded using the following SQL*Loader command, run from the command line in the same directory as files.

sqlldr userid=test/test@db10g control=lob_test.ctl log=lob_test.log bad=lob_test.bad

As listed in ‘man 8 signal’, any signal with the action listed as ‘core’ will force a core dump (mais à condition que l’erreur ne soit pas gérée par le processus). Some examples are:
[sourcecode light= »true »]SIGQUIT 3 Core Quit from keyboard
SIGILL 4 Core Illegal Instruction
SIGABRT 6 Core Abort signal from abort(3)
SIGFPE 8 Core Floating point exception
SIGSEGV 11 Core Invalid memory reference
[/sourcecode]
Make sure that you enable core dumps:
[sourcecode light= »true » language= »bash »]ulimit -c unlimited
[/sourcecode]
L’option -c de ulimit est celle qui règle la taille maximale en octet autorisée pour un fichier core.
Elle permet de s’assurer que la création d’un core soit autorisée ! Si elle est réglée à 0, les processus n’ont pas le droit de créer de fichier core.

L’utilisation de SHA-1 est codé en dur dans le code :
http://groups.google.fr/group/mozilla.dev.tech.crypto/msg/7a15dafef963fe20
https://mxr.mozilla.org/comm-central/source/mailnews/extensions/smime/src/nsMsgComposeSecure.cpp#496

Mais le message suivant dit que la couche correct est utilisée ?
http://groups.google.fr/group/mozilla.dev.tech.crypto/msg/c442455aacd7eba7
Soit nsCMSMessage :
http://mxr.mozilla.org/comm-central/ident?i=nsCMSMessage
depuis mozilla/security/manager/ssl/src/nsCMS.cpp ???

A investiguer …

http://www.shirky.com/weblog/2010/04/the-collapse-of-complex-business-models/
The ATT guys, […] understood that the income from $20-a-month customers wouldn’t pay for good web hosting. […] the industry solution was to offer hosting that wasn’t very good.
[…] “If you want something to be 10 times cheaper, take out 90% of the materials.” Making media is like that now except, for “materials”, substitute “labor.” […] Murdoch of News Corp said “Web users will have to pay for what they watch and use.” […] The most watched minute of video made in the last five years shows baby Charlie biting his brother’s finger. (Twice!) That minute has been watched by more people than the viewership of American Idol, Dancing With The Stars, and the Superbowl combined […] the logic of the old media ecoystem, where video had to be complex simply to be video, is broken

http://kristinmaschka.wordpress.com/2010/01/22/busting-stereotypes-about-families-and-money/
In 1970 families spend ONE HALF their single income on fixed expenses.
In 2003, families spent THREE QUARTERS of their two incomes [on it]

http://www.netpme.fr/fiscalite-entreprise/443-fiscalite-entreprises-france-est-elle-competitive.html

A investiguer et à voir en parallèle avec DXR :
http://findbugs.sourceforge.net/

De toute les théorie économiques celles-ci est probablement l’une des plus amusante. Son objectif est de comprendre comment une organisation absolument, définitivement, totalement bordélique, et rétive à toute forme d’organisation rationnelle peut malgré tout arriver à résoudre un certain nombre de problème :
http://en.wikipedia.org/wiki/Garbage_can_model

Bon, la page a été supprimée, alors à la place :
http://faculty.washington.edu/krumme/gloss/g.html
http://almaweb.unibo.it/cio/0.pdf

http://www.pcinpact.com/actu/news/55527-microsoft-outlook-pst-specifications-techniques-documentation.htm
http://blogs.msdn.com/interoperability/archive/2010/02/19/New-Office-Documentation-Now-Publicly-Available.aspx
Outlook Personal Folders File Format (.pst) Structure Specification

Windows Phone Developer Tools CTP
Brief Description
The same powerful and easy to use Visual Studio integrated developer environment (IDE) handles from design to testing of Windows Phone 7 Series phone applications.

Selon ce que vous possédez déjà, le kit de développement installera :
* Visual Studio 2010 Express pour Windows Phone CTP
* Windows Phone Emulator CTP
* Silverlight pour Windows Phone CTP
* XNA 4.0 Game Studio CTP

CTP signifie ici Community Technology Preview, ce qui indique que ce n’est pas une bêta, mais une simple préversion destinée aux développeurs. Vista ou Windows 7 sont nécessaires, de même qu’une carte graphique DirectX 10.

xda-developers : WMP7 Unlocked Emulator

http://regex.info/blog/2006-09-15/247#comment-18269
Back in the old days, I designed a system that used incredible amounts of PostScript.
One thing that made it easier for us was a C-like syntax to PS compiler, done by a fellow at the Turning Institute. We licensed it and used it heavily, and I extended it a bit to be able to handle uneven stack-armed IF, and added varieties of inheritance.
The project was called PdB and eventually it folded, and the author left and went to First Person Software, where he wrote a very similar language syntax for something called Oak, and it compiled to bytecodes instead of PostScript. Oak got renamed Java.

http://cs.gmu.edu/~sean/stuff/java-objc.html
L’histoire est très amusante, mais la vérité est plutôt Objective C d’après Patrick Naughton

http://fr.wikipedia.org/wiki/Br%C3%A8de_mafane
http://ja.wikipedia.org/wiki/%E3%82%AD%E3%82%AF%E7%A7%91
http://www.ars-grin.gov/~sbmljw/cgi-bin/taxon.pl?311860
http://www.tela-botanica.org/eflore/BDNFM/2006.01/nn/115
http://www.plantnames.unimelb.edu.au/Sorting/Acmella.html#oleracea
http://ci.nii.ac.jp/naid/110006440806/en

Sur google code :
http://code.google.com/intl/fr/apis/chart/docs/gallery/qr_codes.html
La librairie que Google utilise sur portable :
http://code.google.com/p/zxing/
Un français qui s’investit là dedans :
http://www.y01.fr/logiciels-lecture-code-barre-2d-datamatrix-qr-code.php

zxing est utilisé par plusieurs appli Android ?
L’application test de google pour lire un bar code :
http://knol.google.com/k/alec-go/modifying-the-android-barcode-scanner/2vd5zn6va2fqd/2#

Démontrateur URL, texte, tél sms : http://qrcode.kaywa.com/
Génération de contact : http://www.quickmark.com.tw/En/diy/?qrVCard

Message : « Impossible d’identifier le serveur de publication de cette connexion distante. Voulez-vous vraiment vous y connecter ? »

Ce n’est pas la NLA (Network Level Authentication) car la NLA authentifie le client auprès du serveur, et requiert un serveur 2008 au minimum.

Il faut plutôt voir la documentation technet Configure Server Authentication and Encryption Levels

Aide de la connexion à distance : Que sont les options d’authentification serveur ?
Les ordinateurs distants exécutant Windows Server 2003 avec Service Pack 1 (SP1) ou des systèmes d’exploitation d’une version antérieure ne peuvent pas fournir leur identité à des fins de vérification.

Travis
Description complete sur MDC


Description : TraceVis: performance visualization for TraceMonkey
hg clone http://hg.mozilla.org/users/dmandelin_mozilla.com/tracevis/
the patch that instruments TM with activity counters and a bunch of Python scripts for processing the outputs. The image generation scripts require PIL (Python Imaging Library).

http://hacks.mozilla.org/2009/07/tracemonkey-overview/

Seasideet Pharo
– fini les templates
– prise en charge du workflow, composants réellement réutilisables,
– vrai debugger
– coder, modifier, debugger live, sans redémarrer régulièrement le serveur
– pas besoin de bases pour les applications simples
– un fichier à copier pour déployer

node.js
un environnement Javascript côté serveur qui utilise le moteur V8. modèle événementiel, lecture d’un fichier se fera par défaut de manière asynchrone plus de details
100 k connections simultanées avec node.js

Cours d’économie publique :
http://obs.rc.fas.harvard.edu/chetty/slides/public_economics_lectures.pdf

Ce que l’occident peut faire pour dévelloper l’Afrique :

http://www.nyu.edu/fas/institute/dri/Easterly/File/can%20the%20west%20save%20africa.pdf

Recommandé par Joi ito, écrit par un américain qui a été reporter du Yomiuri en charge de couvrir les affaires criminelles :
http://joi.ito.com/weblog/2010/02/24/tokyo-vice-an-a.html

Guide d’UI pour portable :
http://almaer.com/blog/feeling-touchy-learning-how-to-build-great-touch-ui

Toutes les méthodes et techniques de refactoring :
http://sourcemaking.com/refactoring
On peut aussi s’efforcer de les suivre dès le départ pour tout simplement, mieux écrire !