Windows 12 to arrive in 2024.
First, insert cricket sound here./
Second, those guys can't be trusted. They said 5 years ago or so that Windows (10) was the last Windows version that would ship, and they used this ever since in order to force updates down the throat of every single licensed user on the planet (windows updates cannot be refused, they can only be pushed a couple days later). And yet, here we are with so-called "major" releases again.
Third, everyone knows that Microsoft can't ship anything without breaking features, drivers, etc. So IT Admins must scramble again at the idea that this will again have major deployment effects across the enterprise.
Last but not least, the bozos working at Redmond do not believe in their own shit, so they keep cancelling what they have introduced before. So expect changes to the user interface again...
All this while what the majority of Windows users want is a stable OS. A freaking S T A B L E OS and nothing else.
|  |  | Posted on 16-July-2022 19:24 | Category: anti-Microsoft | comment[0] | trackback[0] Lorsque l'ouest france titre "Gaz, électricité, fuel… Comment la France cherche à éviter une pénurie", j'aimerai leur proposer un titre plus journalistique comme "Gaz, électricité, fuel… Comment la France cherche à éviter de payer les conséquences de l'embargo qu'elle a mis en oeuvre".
Juste question de ne pas travestir l'histoire.
|  |  | Posted on 13-July-2022 15:12 | Category: France | comment[0] | trackback[0] Build 4.9.0.29 of xlsgen adds support for reading and displaying electrocardiograms. Electrocardiograms (data) Electrocardiograms (charts)xlsgen can import electrocardiograms for data and visual analysis purposes. This is expected to streamline data transfer in health related corporations. Electrocardiograms are the result of placing electrodes on someone's body (simple electrodes, holter, ...), measuring the tension in electrodes over a period of time, then analysing the peaks and lows to identify a potential pathology. The standard electrode names (called leads) are imported as well : lead I, lead II, lead aVR, ... The health practitioner saves electrocardiograms in binary files, whose file format are standardized (ISO). xlsgen can read SCP-ECG files, which are files with a .SCP suffix. From a programming standpoint, importing an electrocardiogram in xlsgen is really simple : | C++ code | xlsgen::IXlsEnginePtr engine( __uuidof(xlsgen::CoXlsEngine) );
xlsgen::IXlsWorkbookPtr wbk = engine->New( L"electro_cardiogram.xlsx"); xlsgen::IXlsWorksheetPtr wksht = wbk->AddWorksheet(L"Data"); wksht->Import->ElectroCardiogram->ImportFile(L"sample.scp"); wbk->Close();
|
Doing so imports the table of electrode data over time in the current worksheet, and creates another worksheet for the associated charts. |  |  | Posted on 11-July-2022 09:34 | Category: xlsgen, Excel generator | comment[0] | trackback[0] Fed up with this auto update nonsense in Mozilla Firefox and Thunderbird ?
Ok. Just do this :
- quit Firefox and Thunderbird - open the registry editor (Windows+R and then regedit.exe) - manually expand HKEY_LOCAL_MACHINE / SOFTWARE / Policies - right-click on Policies and choose Create a new key, name it Mozilla - right-click on Mozilla and choose Create a new key, name it Firefox - right-click on Mozilla and choose Create a new key, name it Thunderbird - click on Firefox, then on the right panel right-click and choose create a new DWORD value, name it DisableAppUpdate, set its value to 1 (instead of 0) - click on Thunderbird, then on the right panel right-click and choose create a new DWORD value, name it DisableAppUpdate, set its value to 1 (instead of 0) - quit the registry editor
You're officially out of this auto-update nonsense. Now you can start Firefox or Thunderbird, go in the Help / About box and it will say this : "Updates disabled by your system administrator". This ridiculous chicken game is now over.
|  |  | Posted on 10-July-2022 10:17 | Category: News | comment[0] | trackback[0] Build 4.9.0.28 of xlsgen adds support for AutoIt, a scripting language that is very much like VBScript, supports COM/Automation. | AutoIt code | Local $engine = ObjCreate("ExcelGenerator.ARsTdesign")
$workbook = $engine.New("sample.xlsx")
$worksheet = $workbook.AddWorksheet("Sheet1")
$worksheet.Label(2, 3) = "Hello world!"
$workbook.Close
$engine = 0
Exit
|
|  |  | Posted on 06-June-2022 10:00 | Category: xlsgen, Excel generator | comment[0] | trackback[0] Build 4.9.0.27 of xlsgen adds read and write support for 14 new functions, introduced in the subscription-based Excel version earlier in May 2022 by Microsoft. | TEXTBEFORE | Returns text that’s before delimiting characters | | TEXTAFTER | Returns text that’s after delimiting characters | | TEXTSPLIT | Splits text into rows or columns using delimiters | | VSTACK | Stacks arrays vertically | | HSTACK | Stacks arrays horizontally | | TOROW | Returns the array as one row | | TOCOL | Returns the array as one column | | WRAPROWS | Wraps a row array into a 2D array | | WRAPCOLS | Wraps a column array into a 2D array | | TAKE | Returns rows or columns from array start or end | | DROP | Drops rows or columns from array start or end | | CHOOSEROWS | Returns the specified rows from an array | | CHOOSECOLS | Returns the specified columns from an array | | EXPAND | Expands an array to the specified dimensions |
|  |  | Posted on 05-June-2022 08:54 | Category: xlsgen, Excel generator | comment[0] | trackback[0] Question provocatrice peut-être, mais je me demande si la fin de Twitch approche car devoir supporter jusqu'à 6 publicités en enfilade lors de la diffusion en live, régulièrement genre toutes les 30 minutes, ça me fait plus penser au fait que je regarde une chaîne de télévision à l'ancienne qu'autre chose.
Le bombardement publicitaire, merci mais très peu pour moi.
Difficile de croire que je suis le seul à le penser.
Dommage aussi qu'il n'y ait pas, à ma connaissance, limitée sur ce sujet, de moyen d'auto-diffusion d'un live vidéo. Soit chez soi, grâce à la fibre survoltée, ou chez un hébergeur européen proposant ce service moyennant finance raisonnable.
|  |  | Posted on 03-June-2022 09:36 | Category: France | comment[0] | trackback[0] Build 4.9.0.26 of xlsgen fixes a problem related to committing changes to a table object under certain circumstances.
|  |  | Posted on 28-May-2022 19:58 | Category: xlsgen, Excel generator | comment[0] | trackback[0] Build 4.9.0.25 of xlsgen introduces support for dynamic arrays. Dynamic arrays is a formula mode meant to replace the array formula mode. Microsoft calls the old array formula mode, the one with {...} curly braces (obtained by hitting Ctrl+Shift+Enter on the keyboard), legacy array formulas. Legacy array formulas are still available for compatibility reasons in Excel but dynamic arrays are now the preferred mode. Dynamic arrays are much easier to use in practice because there is no surrounding or escape symbol. Dynamic arrays are automatically created whenever the calculation engine encounters a formula result holding more than one value, i.e. a vector of values or a matrix of values. When this occurs the resulting values are spilled in other cells near the current cell. In Excel the formula bar shows the formula greyed out in all cells but the first one, making it possible to understand where the values in cells come from. Dynamic arrays were introduced in fall 2018 in the subscription-based Excel version. And got ported to a licensed version, namely Excel 2021. xlsgen adds it too. Example : =SORT(A2:A10), this SORT() formula returns the a range of same size than the input range, and as such is a perfect example of dynamic array formula. Dynamic array formula may appear just about everywhere where a formula result in a cell is more than one literal value. Dynamic array formulas are not compatible with Excel version earlier than Excel 2021 so in those previous versions they appear as legacy array formulas but with a potential breaking behavior because calculating a dynamic array formula and a legacy array formula isn't the same : the first is cell-based, the other is range-based. In either case, Microsoft chose not to support dynamic array formulas in XLS files. In other words this is for XLSX, XLSB and their variants (XLSM, XLTM, ...) Because dynamic array formulas may not be suitable in some scenarios, xlsgen provides a property (at the workbook level called DynamicArray) which can disable it altogether. Dynamic arrays are on by default because they provide an inherently better mechanism for working with formulas than legacy array formulas. |  |  | Posted on 27-May-2022 09:41 | Category: xlsgen, Excel generator | comment[0] | trackback[0] Annoncer et célébrer la victoire de l'Ukraine à l'eurovision sans exprimer le moindre doute, c'est l'honneur du journalisme français !!! Plus aligné avec les intérêts américains tu ne peux pas !! carpettes !!!!
|  |  | Posted on 15-May-2022 14:46 | Category: France | comment[0] | trackback[0] You kow the IT industry is getting too far when they are announcing 480 hz refresh rate displays. What kind of crazy world are we getting in ?
Those specs are not supported by human's eye capabilities. So why even bother ?
|  |  | Posted on 14-May-2022 11:24 | Category: News | comment[0] | trackback[0] This is a rant against open source software.
The general opinion is that open source software is cool. It is valuable because you can recompile and rebuild the software in question, so as a community eventually this means always improved software.
Well, let's take Mozilla Thunderbird, the email client, as a perfect counter-example of this.
Someone I am willing to help migrate from Outlook to Thunderbird. Because you know Thunderbird may not be nearly as bad performing email authentication correctly or be as much tied to the Windows operating system version as Outlook is.
Guess what? Downloading and installing Thunderbird is where it shines. Really simple. Then that's where it starts to be of no use at all. When Thunderbird starts, it makes it possible to import anything, or a fraction of, what was used in the previous email client, that is, emails, address book, account parameters.
Except it does not. It keeps insisting that Outlook is not there even though it is. Installing a version of Thunderbird that matches Outlook bitness, that is 32-bit and 32-bit, does not help either. So where do we go then ?
This is my tiny real world usage of open source software. And the morale to the story is, keep using proprietary software.
|  |  | Posted on 11-May-2022 21:32 | Category: News | comment[0] | trackback[0] Build 4.9.0.24 of xlsgen is a fix pack including the following :
- preservation of cell/value metadata in XLSX and XLSB files
- better writing of array formulas in XLSB files. Under certain circumstances, the writing is incorrect and it corrupts the file.
- preservation of font single/double accounting underline option in XLSB files.
|  |  | Posted on 09-May-2022 22:58 | Category: xlsgen, Excel generator | comment[0] | trackback[0] Build 4.9.0.23 of xlsgen has a fix for a number of calculated functions (SORT, SORTBY, UNIQUE, FILTER) which is needed to address dynamic array support.
|  |  | Posted on 08-May-2022 18:45 | Category: xlsgen, Excel generator | comment[0] | trackback[0] J'ai toujours pensé que Twitter était une merde infâme. Rien ne va avec cette plateforme.
Et ça c'était au début des années 2000, avant que Twitter ne commence à censurer sans passer par un juge.
Pour moi, dès lors, Twitter, ce n'est rien du tout, en tout cas rien d'autre qu'une plateforme promotionnelle et commerciale. Bref de la merde.
Et puis... et puis...
Elon Musk rachète cette merde avec l'argent factice qu'il a en trop.
Pourquoi pas ? mais je reste réservé sur la survie de cette merde, de cette fausse plateforme. En fait pour moi, c'est toujours la même histoire, Twitter peut survivre si cette censure est levée. Comment ? en listant les personnes qui sont à l'origine de la censure, en d'autres termes, en dénonçant les délateurs. En les affichant, notamment pour que celui qui est censuré de manière arbitraire puisse savoir qui le censure. Et éventuellement, si nécessaire, donner la possibilité au censuré de rendre public les délateurs, de façon à ce qu'on sache selon les sujets censurés, les pays, etc., si la censure est un phénomène massif partagé par tous (ce que je ne crois pas), ou le fait d'une petite minorité très active dont Twitter a, de manière non transparente, donné les rennes de l'attelage, pour le pire (à mon sens).
On verra bien. On le verra rapidement en tout cas. Et si ce n'est pas le cas, alors bon débarras, ça fera au pire un canal promotionnel et commercial de moins. Déjà en soi c'est pas mal.
(d'ailleurs, on pourrait éteindre Twitter rien que pour des raisons écologiques, en calculant ce que Twitter fait produire comme CO2 sur chaque poste client).
A bon entendeur......
|  |  | Posted on 27-April-2022 16:18 | Category: France | comment[0] | trackback[0] Elections présidentielles 2022 : plutôt que de se demander qui sera en face de Macron au second tour, ce serait quand même plus cool que la gauche vote utile au premier tour pour un seul candidat, que la droite fasse de même. Et ainsi, pourquoi pas, empêcher Macron d'être au second tour. Chiche ?
|  |  | Posted on 25-March-2022 19:59 | Category: France | comment[0] | trackback[0] Chaque jour on apprend l'attaque informatique malveillante d'organisations, d'institutions, de matériels sensibles tels que des hopitaux, des centrales, etc.
Je m'en étonne. Comment se fait-il qu'un bâtiment sensible puisse être connecté à internet sachant la passoire que c'est pour ce qui est de la sécurité d'accès ?
L'irresponsable dans cette histoire c'est moins le hacker, fusse-t-il malveillant, que celui qui a validé le fait de relier le bâtiment à internet. Les bras m'en tombent.
En fait, il faudra, à ce rythme là, bientôt créer un label internet-free sous-entendu une garantie sur le papier que le bâtiment n'est pas relié à internet, bref que l'on peut garantir un fonctionnement prévu à l'avance et ne pas subir de désagréments de l'extérieur.
A bon entendeur...
|  |  | Posted on 04-March-2022 20:13 | Category: France | comment[0] | trackback[0] Les réseaux sociaux américains en première ligne, comme d'habitude.
On le savait déjà, mais pour twitter, facebook, google apple microsoft, etc. ainsi que les réseaux bancaires visa, mastercard, etc. les règles de censure politique habituelles ne s'appliquent pas en ce moment puisque les pro-ukrainiens peuvent dire ce qu'ils veulent, montrer ce qu'ils veulent, alors que les pro-russes ne peuvent rien dire et rien montrer.
Le propre d'une plateforme de contenu est d'être neutre. Sinon elle n'est en fait rien de tel, mais uniquement un bras armé d'un pouvoir. Par honnêteté intellectuelle ces réseaux sociaux et autres réseaux bancaires devraient arborer à côté de leur logo un drapeau du pouvoir auquel ils et elles se soumettent.
|  |  | Posted on 02-March-2022 12:15 | Category: France | comment[0] | trackback[0] Alors même que Twitch n'hésite pas une seconde à bannir des streams qui osent ne serait-ce qu'une seconde tenter le politiquement incorrect, on trouve aujourd'hui pléthore de streams sur ukraine, que ce soit des live cams, ou pire, carrément des gens qui viennent défendre la cause, voire demander de l'argent.
Mais que fait Twitch ?
Ce n'est pas le fliquage habituel. Pourquoi une telle mansuétude ?
Pourquoi est-ce que, comme par hasard, lorsque ça sert les intérêts de la ligne dominante, c'est acceptable et même suggéré ?
Ce n'est pas ça du tout la liberté d'expression.
|  |  | Posted on 26-February-2022 11:07 | Category: France | comment[0] | trackback[0] Si vous démarrez votre carrière de journaliste en ce moment, c'est une magnifique opportunité pour documenter la propagande de masse à l'oeuvre dans les médias français. Les mêmes arguments et théories complotistes sont à l'oeuvre que pour la libye, la syrie, l'irak. Et même pour la guerre des balkans, là où bizarrement il fallait bombarder une population pour rendre possible la création d'un état indépendant comme le kosovo. Chose refusée ici pour l'est de l'ukraine alors que c'est pourtant la même logique. Et les même experts auto-proclamés.
Journalistes français, sauvez l'honneur de la france. Documentez !
|  |  | Posted on 26-February-2022 11:04 | Category: France | comment[0] | trackback[0] <-- previous page
|
This site Home Articles
DevTools
CPU-Z
EditPlus
ExplorerXP
Kill.exe
OllyDbg
DependencyWalker
Process Explorer
autoruns.exe
Araxis
COM Trace injection
CodeStats
NetBrute
FileMon/Regmon
BoundsChecker
AQTime profiler
Source monitor
GDI leaks tracking
Rootkit revealer
Rootkit removal
RunAsLimitedUser(1)
RunAsLimitedUser(2)
Liens
Le Plan B
Un jour à Paris
Meneame
Rezo.net (aggr)
Reseau voltaire
Cuba solidarity project
Le grand soir
L'autre journal
Le courrier suisse
L'Orient, le jour
Agoravox (aggr)
|