Links32
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
page 21 / 80
Free Real Time Voice Changer & Modulator - Voicemod https://www.voicemod.net/
Tue Nov 27 16:19:52 2018 archive.org
thumbnail

FREE Real Time Voice Changer for Online Games
Voicemod works with VRChat, Discord, Overwatch, Fortnite, PUBG, Skype & CSGO. Use it for April Fools' Day o Halloween pranks too!

Voicemod is the best free voice changer & soundboard software for Windows (coming soon for Linux and Mac OSX). An online voice modifier with effects capable of converting your voice into robot, female or girl online. It’s great for games and chatting as an app.
DOWNLOAD NOW

Windows 7/8/8.1/10 (64-bit)

For Feedback and Support: Contact us here.
Do you need Voicemod Windows SDK for your app? Contact with Sales
Screenshot - Voicemod Live Voice Changer for Discord, VRChat, PUGB and online games

voice voicechanger
AimBooster http://www.aimbooster.com/
Mon Nov 26 16:22:16 2018 archive.org

Gamer reflex training ;)
gamer tool reflex with your mouse

gamer tool reflex mouse
Spybot Identity Monitor - Spybot Anti-Malware and Antivirus : Spybot Anti-Malware and Antivirus https://www.safer-networking.org/products/spybot-identity-monitor/
Thu Nov 22 13:19:12 2018 archive.org
thumbnail

Reviews
October 29, 2018
Martin Brinkmann: A look at Spybot Identity Monitor for Windows

Spybot Identity Monitor is a simple program to monitor email addresses and usernames against the Have I Been Pwned database of leaked account information.

The program offers a better overview in my opinion as you can add as many accounts as you like to it and get information about all of them in the interface. The option to rerun checks on logon is useful if you are particularly worried about accounts.

spybot monitor secu
QTTabBar http://qttabbar.sourceforge.net/
Mon Nov 19 19:53:30 2018 archive.org
windows tweak explorer clover
Firefox Monitor https://monitor.firefox.com/
Sun Nov 18 12:02:10 2018 archive.org
thumbnail

C’est maintenant que commence votre droit d’être à l’abri du piratage informatique.

Firefox Monitor met à votre disposition des outils pour conserver vos informations personnelles en toute sécurité. Découvrez quelles sont les données personnelles accessibles aux cybercriminels et apprenez à vous protéger.
Voyez si vous avez été impliqué dans une fuite de données.
L’adresse électronique doit être valide.

firefox monitor hack
Fliqlo Flip Clock Screensaver for Windows & Mac - Screensavers https://fliqlo.com
Thu Nov 15 14:47:25 2018 archive.org
thumbnail

Fliqlo Flip Clock

A flip clock screensaver for Windows and Mac OS X that tells the time against a black background in either a 12-hour or 24-hour format. Along with the format, the size of the old-fashioned flip clock can also be customized, from 25% to 125% of the original size.

Mac : https://fliqlo.com/download/fliqlo_171.dmg
Windows: https://fliqlo.com/download/fliqlo_133.zip

wallpaper clock time windows screensaver
UI Themes - SR | Portfolio http://stefrosselli.com/en/themes
Tue Nov 13 14:20:53 2018 archive.org
skin firefox thunderbird
Photopea | Online Image Editor https://www.photopea.com/
Mon Nov 12 18:36:38 2018 archive.org

Like photoshop but FREE and on the Web only

PHOTO editor FREE web editor image photoshop
30 Seconds of CSS https://30-seconds.github.io/30-seconds-of-css/
Tue Nov 6 14:42:27 2018 archive.org
css github
Geolocalisation app ios chrome ... https://echosystem.fr/_img/info_app_geolocalisation.png
Thu Nov 1 20:45:05 2018 archive.org
thumbnail

https://echosystem.fr/_img/info_app_geolocalisation.png

https://echosystem.fr/_img/info_app_geolocalisation.png

geolocalisation app
[MINI TUTO facile] Mise à jour d'une radio avec le dernier firmware 2.1.x et récupérer D8 & LR12 [frskytaranis.forumactif.org] http://frskytaranis.forumactif.org/t2985-mini-tuto-facile-mise-a-jour-d-une-radio-avec-le-dernier-firmware-2-1-x-et-recuperer-d8-lr12
Wed Oct 24 18:08:27 2018 archive.org
thumbnail

http://frskytaranis.forumactif.org/t2985-mini-tuto-facile-mise-a-jour-d-une-radio-avec-le-dernier-firmware-2-1-x-et-recuperer-d8-lr12

taranis eu lbt fpv
Responsive Design Checker [responsivedesignchecker.com] http://responsivedesignchecker.com/
Fri Oct 19 15:42:38 2018 archive.org

RESPONSIVE WEB DESIGN CHECKER
HOW RESPONSIVE IS YOUR WEBSITE?

responsive-screen screen responsive
Installing and running Node Solid Server | Solid [solid.inrupt.com] https://solid.inrupt.com/docs/installing-running-nss
Wed Oct 17 11:22:53 2018 archive.org
thumbnail

Installing and running Node Solid Server

The primary implementation offered of Solid is written in Javascript based on Node.js. It should run on versions later than version 8. It is being developed on Github and is released with the liberal MIT license to NPM. To give it a spin, you can download Node.js, including npm, and get it running quickly. We have an extensive module README that provides an overview of the many options of the server and is very useful a development environment. For a simple single-user production installation, we provide an example for Debian systems:

Example install: Solid Server on Debian GNU/Linux

Following these instructions, we install Node.js and npm like this

$ curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
$ sudo apt-get install -y nodejs build-essential

As root, you can now install the server globally:

$ npm install -g solid-server

Now, you need to decide what is going to be your hostname, we will use your.host.example.org in the following. You should also decide where you want to keep the files the server needs to run. The configuration, data, and supporting metadata database can be kept separate if you want, but we’ll keep them together.

Since everything going on with a Solid server is encrypted, you will need a SSL key and certificate. This can be obtained from e.g. Let’s Encrypt. The easiest way to do this is to use certbot, to do this on Debian Stable, you need a backported package. To obtain that, add this line to your /etc/apt/sources.list:

$ deb http://ftp.debian.org/debian stretch-backports main

Then, certbot can be installed with:

$ apt-get update
$ apt-get -t stretch-backports install certbot

Then, request and install the certificate using:

$ certbot certonly --authenticator standalone -d your.host.example.org

Then, go,

$ solid init

You will be prompted for several things, it could look like this:

? Path to the folder you want to serve. Default is /var/www/your.host.example.org/data
? SSL port to run on. Default is 8443 443
? Solid server uri (with protocol, hostname and port) https://your.host.example.org
? Enable WebID authentication Yes
? Serve Solid on URL path /
? Path to the config directory (for example: /etc/solid-server) /var/www/your.host.example.org/config
? Path to the config file (for example: ./config.json) /var/www/your.host.example.org/config.json
? Path to the server metadata db directory (for users/apps etc) /var/www/your.host.example.org/.db
? Path to the SSL private key in PEM format /etc/letsencrypt/live/your.host.example.org/privkey.pem
? Path to the SSL certificate key in PEM format /etc/letsencrypt/live/your.host.example.org/fullchain.pem
? Enable multi-user mode No
? Do you want to have a CORS proxy endpoint? Yes
? Serve the CORS proxy on this path /proxy
? Do you want to set up an email service? No
config created on /root/config.json

Then, you need to create the paths that you entered. You would also need to copy the config.json file to where you indicated it should be.

You should be able to start the server now with:

$ solid start

However, we recommend that you use e.g. systemd to automatically start and stop the server.
Since it is a security risk to run the server as root, you should create a user for it, with e.g.

$ adduser --system --ingroup www-data --no-create-home solid

Then, create a file /lib/systemd/system/solid.service containing

[Unit]
Description=solid - Social Linked Data
Documentation=https://solid.inrupt.com/docs/
After=network.target

[Service]
Type=simple
User=solid
WorkingDirectory=/var/www/your.host.example.org
ExecStart=/usr/bin/solid start -v
Restart=on-failure

[Install]
WantedBy=multi-user.target

Then, symlink that:

$ ln -s /lib/systemd/system/solid.service /etc/systemd/system/multi-user.target.wants/

Now, make the directories owned by the user:

$ cd /var/www/your.host.example.org/
$ chown solid:www-data config/ data/ .db/

You may also need to make the config.json file readable to the unprivileged user.

Now, starting the server should be done by:

$ systemctl start solid.service

You should now also have the other facilities provided by systemd available, and it should start automatically after the machine is booted.

The certificate needs to be renewed every few months, and you should modify your Let’s Encrypt setup to use the webroot plugin, which is better to use when the server is running. To do so, modify the file /etc/letsencrypt/renewal/your.host.example.org.conf . Make sure the authenticator line reads:

authenticator = webroot

Also set:

webroot_path = /var/www/your.host.example.org/data
[[webroot_map]]
your.host.example.org = /var/www/your.host.example.org/data

Then, create a cron job by creating a file in /etc/cron.daily/ that contains:

#!/bin/bash
certbot renew -w /var/www/your.host.example.org/data/

Now, you should have a working Solid server! Enjoy!

solid
Dégooglisons Internet [degooglisons-internet.org] https://degooglisons-internet.org/fr/list/
Mon Oct 15 16:47:16 2018 archive.org
thumbnail

Dégooglisons Internet

Liste des services

framasoft list services
Le Web underground en France : sous le sceau de la vigilance - the_french_underground_fr_web.pdf http://www.trendmicro.fr/media/image/the_french_underground_fr_web.pdf
Wed Oct 3 13:26:56 2018 archive.org
thumbnail

Le Web underground en France : sous le sceau de la vigilance -

the_french_underground_fr_web.pdf

Web underground darkweb deepweb
Sonic Robots http://sonicrobots.com/
Sat Sep 22 12:21:20 2018 archive.org
music robot
Adrien Mauduit Films sur Vimeo https://vimeo.com/user38192176
Thu Sep 13 13:35:44 2018 archive.org
thumbnail

Adrien Mauduit Films
Plus
49 Vidéos3 851 abonnés114 mentions J'aime

French astrophotographer and nature cinematographer, I specialize into astro time-lapse to make the invisible visible and share the cosmos.En savoir plus

vimeo user photo
GALAXIES VOL. III : Voyage to the core - 4K on Vimeo https://vimeo.com/287215826
Thu Sep 13 09:52:56 2018 archive.org
thumbnail

GALAXIES VOL. III : Voyage to the core - 4K

univers timelaps galaxie
💀 Sploitus | Exploits & Tools Search Engine https://sploitus.com/?query=apache#tools
Wed Sep 12 14:25:24 2018 archive.org

MOTEUR DE RECHERCHE DES FAILLES ET TOOLS

HACK TOOLS FAILLE EXPLOITS
The iPhone Cheat Sheet: Every iOS Shortcut You Should Know About https://www.makeuseof.com/tag/iphone-cheatsheet/
Tue Sep 11 11:20:22 2018 archive.org

iOS and Keyboard Shortcuts

Most of the keyboard shortcuts you’re used to using on your Mac will work on your iPad Pro, iPad, and iPhone. Some apps have specific keyboard shortcuts. You might want to check any official manuals for third-party apps not mentioned here to further speed up your workflow.

If you’re using the iPad Pro with Smart Keyboard, or an iPad and wireless Apple keyboard, you’re all set to go. If your Bluetooth keyboard is aimed at Windows use, you’ll need to get used to substituting particular keys.

The two most common substitutions are Ctrl in place of Apple’s Cmd, and Alt in place of Option. The layout may also be different, depending on your localization. Apple keyboards place the @ symbol on Shift + 2, for example. This is different than the standard UK layout.

Some of these shortcuts may not work, or may only work on the iPad Pro. In particular, the iPad Pro has a useful shortcut where holding down the Cmd key shows all available shortcuts for a given app. Try it in Safari, on the Home screen, or even in a third-party app like Slack.
Touch-Based iOS Shortcuts

Touch Shortcut Description
Navigation Shortcuts
Tap time/status bar Quickly scroll to the top of the page or list
Swipe from top of screen Access Today screen/Notification Center
Swipe from bottom of screen (not iPhone X) Access Control Center
3D Touch and swipe from left Access the app switcher

Typing Shortcuts
Double-tap Space Insert space with period
3D Touch and scroll keyboard Move cursor with precision
Tap and hold key Access alternate symbols or characters
Double-tap Shift Enable caps lock
Tap and hold emoji/language key Access keyboard settings, orientation, and languages
3D Touch "Send" button Access "Send with effect" menu (iMessage only)

Browsing Shortcuts
3D Touch link/image Open link or image to preview
Tap and hold link/image Access context menu
Tap and hold Refresh Quickly access Request Desktop Site option
Tap and hold Tabs button Access tab context menu to close or open tabs
Tap and hold Bookmarks button Quickly add item to Reading List or Bookmarks
Tap and hold Reader Mode button Enable Automatic Reader View for specific websites

Home Screen Shortcuts
Swipe down on home screen Search iPhone
Swipe right on home screen Access Today screen and widgets
Tap and hold app Move or delete apps
3D Touch app Jump to app function or share App Store link
3D Touch folder Rename folder

iPhone X Shortcuts
Swipe up from bottom of the screen Go to Home screen
Swipe up from bottom and flick right Access App Switcher
Pull down from top-right corner of screen Access Control Center
Pull down from top-left of screen Access Today/Notification Center

iPad Shortcuts
Four finger swipe right/left Switch apps right/left
Five finger pinch Access Home screen
Four finger swipe up Access app switcher
Pull keyboard apart to left and right Use split keyboard mode
Keyboard Shortcuts for iOS

Keyboard Shortcut Description
Global iOS Shortcuts
Alt + Tab Switch apps using the App Switcher
Cmd + H Go to the Home screen
Cmd + Space Search for something
Cmd (Hold) Display list of available shortcuts (iPad and iPad Pro only)

Text Shortcuts
Cmd + C Copy
Cmd + V Paste
Cmd + X Cut
Cmd + Z Undo
Cmd + Shift + Z Redo
Cmd + A Select all
Shift + Left/Right Select with cursor
Option + Left/Right Move cursor to previous/next word
Option + Shift + Left/Right Select previous/next word

General Shortcuts
Cmd + N Create new (e.g. Contact, Reminder)
Cmd + F Search within app
Cmd + I Show information
Cmd + B/I/U Bold/Italics/Underline formatting

Safari Shortcuts
Cmd + T Open new tab
Cmd + Shift + T Reopen previously closed tab
Cmd + W Close current tab
Cmd + Shift + \ Show tab overview
Cmd + L Open location/search bar
Cmd + R Reload current tab
Cmd + F Find on page
Ctrl + Tab Next tab
Ctrl + Shift + Tab Previous tab
Cmd + ] Forward
Cmd + [ Backward
Cmd + Shift + D Add to Reading List
Cmd + Shift + L Show sidebar

Mail Shortcuts
Cmd + N New message
Backspace Delete message
Ctrl + Cmd + A Archive message
Cmd + R Reply
Cmd + Shift + R Reply to all
Cmd + Shift + F Forward message
Cmd + Shift + J Mark as junk
Cmd + Shift + L Flag message
Cmd + Shift + U Mark as read/unread
Cmd + Shift + N Get new mail
Option + Cmd + F Search mailbox
Cmd + L Filter mail

Calendar Shortcuts
Cmd + N New event
Cmd + F Search events
Cmd + T Show today's events
Cmd + R Refresh
Cmd + Left/Right Go to previous/next day, week, month, year
Tab Go to next event
Shift + Tab Go to previous event
Cmd + 1/2/3/4 Go to day/week/month/year view

Notes Shortcuts
Cmd + N New note
Enter Edit note
Cmd + Enter Finish editing
Cmd + F Find in note
Option + Cmd + F Search list of notes
Cmd + B/I/U Bold/Italics/Underline formatting
Cmd + Shift T/H/B/L Title/Heading/Body/Checklist formatting
Option + Cmd + T Create table
Cmd + ] Indent text right
Cmd + [ Indent text left

News Shortcuts
Cmd + R Refresh news
Cmd + F Search
Cmd + Up Go to top of page
Cmd + 1/2/3/4/5 For You/Spotlight/Following/Search/Saved tabs
Tab Next story

Once you’ve mastered these tricks, take a look at our ultimate iOS beginner’s guide for an in-depth look at your device’s various functions. You’ll learn how to back up your device, privacy essentials, and making the most of Apple mainstays like iCloud and Siri.

ios apple shortcut
page 21 / 80
1598 links, including 7 private
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn