Comment savoir si ce site marchand fait du dropshipping ?
Par ShevAbam, le 28 Septembre 2021 à 08:30
marketing web ecommerce
Le dropshipping est une méthode répandue qui consiste à ce qu'un site marchand vende des produits sans en avoir le stock et que son fournisseur livre directement au client. Les prix sont généralement bien plus élevés que si vous trouvez les produits par vous-même sur un autre site. Mais comment savoir si un site marchand pratique le dropshipping ?
C'est une méthode qui présente ses intérêts mais généralement, pour le client, c'est une fausse bonne affaire. En effet, les promotions ou prix barrés affichés sur les sites de dropshipping sont très souvent faux, incitant les consommateurs à passer à l'achat. D'aileurs, les publicités présentes sur les réseaux sociaux sont très souvent liées à du dropshipping.
Mais comment savoir si on achète un article 3 ou 4 fois son prix ? La plupart des marchands faisant du dropshipping s'approvisionnent sur AliExpress ou autre site ecommerce chinois. Les prix sont très bas et il n'est pas rare qu'un site de dropshipping propose les mêmes articles bien plus chers.
C'est là qu'intervient le site AntiDrop. Si vous avez un doute, copiez l'adresse du site suspect et insérez-la sur le site AntiDrop. Après quelques instants, le résultat tombe et vous saurez si vous avez failli payer bien plus cher un article !
The easiest way to create aREADME
Our simple editor allows you to quickly add and customize all the sections you need for your project's readme
Tools🛠 For Web Developer 👨💻 to keep in check in 2021
Nerd Fonts – Les meilleurs polices pour les développeurs
@Korben — 19 août 2021
Les polices de caractères, c’est cool, mais ce n’est pas forcement adapté à tous nos usages de nerds… Parfois, notre police (ou font) préférée manque de certains symboles et ça fait des carrés chelous dans nos terminaux ou nos IDE.
Heureusement, il existe un super projet collaboratif qui s’appelle Nerd Fonts et qui vise à patcher les polices de caractères les plus appréciées des développeurs et autres informaticiens en y ajouter un grand nombre de glyphs (icones) en provenance de projets que vous connaissez tous :
Powerline Extra Symbols
Font Awesome
Font Awesome Extension
Material Design Icons
Weather Icons
Devicons
Octicons
Font Logos (Formerly Font Linux)
Pomicons
IEC Power Symbols
Seti-UI + Custom
MAP view random from street view
HTML Code Generator
Blog focus on generating custom front-end code to use in your web application or blog. This blog works as a html code generator. You can customize the application and generate html code. This blog generates html, css, javascript, jquery or any other javascript libraries code, depends on requirement. For example, if you want to use html table generator, There you can customize table style and automatically generates html and css code. In this blog, Desktop/Mobile view also available.
All tuto for webmaster.
tools and more info
GIT !
Quelle est mon adresse IPv4 / IPv6 publique ?
Quelle est mon IPv4 / IPv6 publique ?
Téléchargements de toutes tailles IPv4 / IPv6
Tester votre connectivité IPv4 et IPv6
Tester la neutralité de votre accès à internet
Scripts pour traiter IPv4 et IPv6
Forum LaFibre.info
Quelle est mon adresse IPv4 / IPv6 publique ?
Connectivité IP : Bienvenue dans l’internet du futur !
The /bin/true Command and Copyright
by John Chambers
One of the fun examples among all the copyright fuss is the extreme example of copyright claims made by AT&T some time in the 1980s. It's the /bin/true program. This is a "dummy" library program whose main function is to make it easy to write infinite loops (while true do ...) in shells scripts. The "true" program does nothing; it merely exits with a zero exit status. This can be done with an empty file that's marked executable, and that's what it was in the earliest unix system libraries. Such an empty file will be interpreted as a shell script that does nothing, and since it does this successfully, the shell exits with a zero exit status. But AT&T's lawyers decided that this was worthy of copyright protection.
The earliest copyrighted version of /bin/true that I've found so far dates from 1984:
# Copyright (c) 1984 AT&T | # All Rights Reserved | |
---|---|---|
# THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T | ||
# The copyright notice above does not evidence any | ||
# actual or intended publication of such source code. | ||
#ident "@(#)cmd/true.sh 50.1" |
That's the entire file. I've added the initial "| " so that you can see the exact contents. Note that it only contains blank lines and a comment (the #ident line identifying it as the "true" command). That's right; AT&T claimed copyright on three blank lines. So if you use blank lines in any of your files, you are in blatant violation of AT&T's copyright claim.
Lest you think that this is a fluke that was quickly corrected, here is the /bin/true program from AT&T's Sys/V libraries as of 1990:
# Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T | # All Rights Reserved | |
---|---|---|
# THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T | ||
# The copyright notice above does not evidence any | ||
# actual or intended publication of such source code. | ||
#ident "@(#)true.sh 1.6 93/01/11 SMI" / SVr4.0 1.4 / |
Note that there is still nothing in this script except three blank lines and a copyright notice, plus the #ident line that now identifies it as version 1.6.
It might also be noted that, since I am "publishing" the entire contents of an AT&T program I am in blatant violation of AT&T's copyright claim. I've pointed this out publicly on numerous occations, in various technical forums, since the early 1980's. So far I haven't heard a word from any AT&T lawyers. Anyone have any idea why they are ignoring such a violation?
We might also note that linux systems avoid violating this copyright by replacing /bin/true with a compiled binary. This also runs a lot faster than the above shell script, since it avoids firing up a second unrelated program (/bin/sh) to do nothing. This is yet another reason that linux outperforms unix. And they were apparently forced into this efficiency improvement by AT&T's copyright claim. ;-)
Addendum:
AT&T isn't the only company to do such things. Here's the same program on a Solaris system in 1993:
$ cat /usr/bin/true | #!/usr/bin/sh | # Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T | # All Rights Reserved |
---|---|---|---|
# THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T | |||
# The copyright notice above does not evidence any | |||
# actual or intended publication of such source code. | |||
#ident "@(#)true.sh 1.6 93/01/11 SMI" / SVr4.0 1.4 / |
Note that there is one less blank line here; it has been replaced by the #! line. But otherwise it is identical. Sun has merely passed on the copyright notice. I wonder if Sun has written permission from AT&T to use blank lines in their code? And I'm a bit disappointed that Sun didn't replace "AT&T" with "Sun Microsystems" throughout. Maybe their lawyers advised not to do this.
Meanwhile, the nice folks at GNU have handled this issue by reimplementing the "true" command in C. This program isn't just smaller and faster than the old shell script, which requires firing up a new shell process to successfully do nothing. They also added some important command-line options:
--help display this help and exit
--version output version information and exit
Presumably these options were added so they could claim that this wasn't just a stolen copy of the AT&T code; the GNU version actually contains code that does something. Those GNU folks do have a sense of humor. Here's the result of the --version option on a handy linux (knoppix) system in 2007. Note that it's up to version 5.94. Note also the claim that there is no warranty, which in this case presumably means that if the program actually does something, you can't sue them. And note that this version does something that's almost unknown in the software business: It includes an attribution giving the programmer's name.
$ /bin/true --version | true (GNU coreutils) 5.94 | Copyright (C) 2006 Free Software Foundation, Inc. | This is free software. You may redistribute copies of it under the terms of | the GNU General Public License . | There is NO WARRANTY, to the extent permitted by law. |
---|---|---|---|---|---|
Written by Jim Meyering. | |||||
$ |
The /bin/true (or /usr/bin/true) command is now nearly obsolete, because most extant shells now have a builtin "true" command. But it's still useful occasionally, for various silly reasons, and the attempts to copyright it are still a good source of absurdist humor. It's especially fun to note that GNU has reason to copyright their version. This prevents AT&T, Sun or SCO from taking the GNU code, claiming it as their own, and suing the linux crowd for infringement. Copyright © John Chambers, 1990, 1993, 2003, 2007, 2009 ;-)
awesome font icon html
#
Installation
#
Homebrew
If you use macOS and Homebrew, you can install ijq with
brew install gpanders/tap/ijq
#
Download a release
Select the version you want to download from sourcehut and download one of the precompiled releases from that page. Then extract the archive and copy the binary and, optionally, the man page to the correct location.
Example:
wget https://git.sr.ht/~gpanders/ijq/refs/v0.2.3/ijq-v0.2.3-linux-x86_64.tar.gz
tar xf ijq-v0.2.3-linux-x86_64.tar.gz
cd ijq-v0.2.3
cp ijq /usr/local/bin
mkdir -p /usr/local/share/man/man1
cp ijq.1 /usr/local/share/man/man1
Keyboard shortcuts in Windows
Windows 10 Windows 8.1 Windows 7
Learn more about screenshots with Snip & Sketch
If you are trying to take a screenshot or screengrab, see How to take and annotate screenshots on Windows 10.
Jen Gentleman
Hibiscus
@JenMsft
May 30, 2020
Helpful Hotkeys
A collection of some of my favourite lesser known keyboard shortcuts :)
Photo via @JenMsft
Bon je grogne contre Mozilla, mais Mozilla, je t'aime !, parce que t'es l'un des seuls éditeurs de navigateur à faire une page comme ça: Comment empêcher Firefox d'établir automatiquement des connexions sans ma permission. Et ça, c'est très bien. (Il manque juste un paragraphe sur le préfetching DNS).
Voir aussi: https://lehollandaisvolant.net/?d=2020/01/02/11/28/39-ma-liste-des-tweaks-aboutconfig-dans-firefox
Réglage du cache
Par défaut, Firefox garde en cache les éléments des pages. Il utilise un cache mémoire et un cache disque (entrez about:cache dans la barre d'adresse). Si vous avez beaucoup de mémoire (>8 Go) il est possible de désactiver le cache disque et d'avoir un cache exclusivement en mémoire. En éliminant ainsi les I/O liées au disque, cela permet d'avoir un affichage des pages plus réactif (et cela économise aussi votre SSD).
Dans about:config, faire:
browser.cache.disk.enable = false : Couper le cache disque.
browser.cache.memory.capacity = 512000 : Augmenter le cache mémoire à 512 Mo.
browser.cache.memory.max_entry_size = 50000 : Augmenter la taille maximal des objets gardés en cache (50 Mo au lieu de 5 Mo par défaut).
Personnellement, je couple également cela à un cache DNS local avec un TTL forcé (voir cette page).
Contrepartie: Quand vous fermez Firefox, le cache est vidé. Mais quand on a Firefox ouvert toute la journée, ce n'est pas un problème.
(Et si vous vous posez la question: Non on ne peut pas désactiver le cache disque de Chrome/Chromium: Il continuera à faires des I/O disque comme un gros goret. Conseil: Mettez votre répertoire cache de Chrome/Chromium en tmpfs pour régler le problème.)
Retirer l'avertissement sur les formulaires http
Depuis quelques versions, Firefox affiche un avertissement sur les formulaires de login qui ne sont pas en HTTPS. Même si je comprend la motivation, c'est carrément pénible sur un intranet ou pour des tests en local. Voici comment supprimer cet avertissement.
security.insecure_field_warning.contextual.enable = false
signon.autofillForms.http = true
Astrofox – Générez de jolis clips musicaux pour vos morceaux
@Korben —
8 octobre 2020
Si vous êtes producteur de musique, et que vous souhaitez la diffuser sous la forme de vidéos sur Youtube par exemple, voici une application hyper cool qui va vous permettre d’animer à partir d’un son, des effets, des images, un spectre sonore…etc.
Les musiciens vont être heureux !