Les Partages de Memiks
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 58 / 155
[2017.12.26] Magisk v15.0 - Root & Universal Systemless Interface [Android 5.0+] https://forum.xda-developers.com/apps/magisk/official-magisk-v7-universal-systemless-t3473445
Tue Dec 26 20:57:20 2017 archive.org
QRCode
thumbnail

[2017.12.26] Magisk v15.0 - Root & Universal Systemless Interface [Android 5.0+] Magisk

How to Root your Android TV Box or Phone, root android device - Entertainment Box https://www.entertainmentbox.com/root-android-tv-box-phone/
Tue Dec 26 19:25:33 2017 archive.org
QRCode
thumbnail

How to Root your Android TV Box or Phone, One click root for Android TV boxes, easily root any android tv box or phone with Kingroot for Android TV boxes

BPMN Workflow Engine https://camunda.org/
Thu Dec 21 21:46:47 2017 archive.org
QRCode
thumbnail

Camunda is an open source platform for workflow and business process management.
You can model and execute BPMN 2.0, CMMN 1.1 and DMN 1.1.

A tester

BPM opensource ihm
mon blognal : mes notes sur l'amorçage de pkgsrc - LinuxFr.org http://linuxfr.org/users/fantome_asthmatique/journaux/mon-blognal-mes-notes-sur-l-amorcage-de-pkgsrc
Thu Dec 21 00:01:49 2017 archive.org
QRCode

URL: http://linuxfr.org/users/fantome_asthmatique/journaux/mon-blognal-mes-notes-sur-l-amorcage-de-pkgsrc
Title: mon blognal : mes notes sur l'amorçage de pkgsrc
Authors: fasthm
Date: 2017-12-20T15:21:24+01:00
License: CC by-sa
Tags: netbsd et pkgsrc
Score: 0

J'ai souhaité installer deux ou trois choses modernes sur un serveur un peu moisi sur lequel je ne suis pas administrateur. Comme je n'avais jamais utilisé pkgsrc, je me suis dit que ce serait une bonne occasion.

Au début ça a été infernal, je pose donc ici un petit memento pour le prochain malheureux qui se retrouvera dans cette misérable situation.

Il aura donc fallu:
1 - se placer dans (le volumineux) /tmp, car mon $HOME est sur un serveur distant aux perfs abyssales, et que l'on va manipuler un grand nombre de fichiers;
2 - télécharger et désarchiver le tar.gz de pkgsrc;
3 - le mettre à jour avec cvs -t update -dP (le -t avant update pour savoir où en est cvs);
4 - définir le proxy avec http_proxy=http://monproxy.pouet.pouet:3100/
5 - configurer curl avec ~/.curlrc :
ipv4 # forcer ipv4 parce que le DNS renvoie des AAAA mais le réseau est v4
proxy = monproxy.pouet.pouet:3100 # pas testé si http_proxy est utile finalement...
6 - choisir un mirroir performant parce que sinon on pleure à chaque téléchargement :
export MASTER_SITE_OVERRIDE=ftp://ftp2.fr.netbsd.org/
7 - bootstrapper avec la commande :
cd pkgsrc/bootstrap; ./bootstrap --unprivileged --prefix /home/mapomme/pkg
8 - et ensuite j'ai pu installer mes bidules avec bmake; bmake install.

Je crois que c'est tout, ça marche pas mal mais ça ramène énormément de dépendances, c'est un peu une solution de goret quand même.

pkgsrc server install package
Peercoin - Crypto-monnaie Fiable & Durable. https://peercoin.net/
Wed Dec 20 13:38:10 2017 archive.org
QRCode
thumbnail

Secure and sustainable cryptocoin.

Disable firewall with a command line | Symantec Connect Community https://www.symantec.com/connect/forums/disable-firewall-command-line
Tue Dec 19 21:35:32 2017 archive.org
QRCode
thumbnail

Here's the command to disable NTP:

smc -disable -ntp

and to reenable

smc -enable -ntp

If the SEP client UI is password protected:

smc -disable -ntp -p

FFmpeg / VidStab https://hiob.fr/ffmpeg-vidstab/
Tue Dec 19 19:26:52 2017 archive.org
QRCode
thumbnail
Délais, frais, fonctionnement : comprendre les livraisons depuis l'Asie http://www.minimachines.net/a-la-une/la-livraison-depuis-lasie-delais-prix-transporteurs-57204
Tue Dec 19 19:25:03 2017 archive.org
QRCode
thumbnail
[Firefox] Recherche dans la page - Liens en vrac de sebsauvage http://sebsauvage.net/links/?PuYiAw
Mon Dec 18 18:01:20 2017 archive.org
QRCode

Roooo, MERCI !! je ne le savais pas oO pourtant j'adore VI mais j'ai jamais pensé à tester... :p

Et oui, des fois on ferait bien de lire le manuel (RTFM !).
Dans Firefox, pressez juste « / » pour commencer une recherche > dans la page.
Et pressez juste « ' » pour rechercher dans les liens de la page.
(Souce: https://support.mozilla.org/en-US/kb/search-contents-current-page-text-or-links#w_quick-find via https://framapiaf.org/@yekcim/99168659281686356)

firefox recherche vi
Windows 10 - Manette PS3 sur ordinateur PC | NeozOne https://www.neozone.org/jeux-video/windows-10-manette-ps3-sur-ordinateur-pc/
Mon Dec 18 02:23:46 2017 archive.org
QRCode
thumbnail
Utiliser votre Dualshock 3 sur votre PC (avec ou sans bluetooth) – Tech2Tech | News, Astuces, Tutos, Vidéos autour de l'informatique https://www.tech2tech.fr/utiliser-votre-dualshock-3-sur-votre-pc-avec-ou-sans-bluetooth/
Sat Dec 16 23:32:06 2017 archive.org
QRCode
thumbnail
ps3 bluetooth pc driver
Make a Bash alias that takes a parameter? - Stack Overflow https://stackoverflow.com/questions/7131670/make-a-bash-alias-that-takes-a-parameter
Thu Dec 14 14:31:34 2017 archive.org
QRCode
thumbnail

Bash alias does not directly accept parameters. You will have to create a function and alias that.

alias does not accept parameters but a function can be called just like an alias.

For example:

myfunction() {
#do things with parameters like $1 such as
mv "$1" "$1.bak"
cp "$2" "$1"
}

myFunction xyz #calls myfunction

By the way, Bash functions defined in your .bashrc and other files are available as commands within your shell. So for instance you can call the earlier function like this

$ myfunction original.conf my.conf

bash alias parameter
Netflix : 160 siècles de vidéos regardées chaque jour http://www.clubic.com/television-tv/video-streaming/actualite-840256-netflix-160-siecles-videos-regardees.html
Wed Dec 13 00:03:27 2017 archive.org
QRCode
thumbnail

Encore un article putaclic...

car:

  • 160 siècles ça fait 140 millions d'heure
  • il y a entre 120 et 140 millions d’abonnés

Donc...
cela fait donc environ 1h 1h10 par abonné...

donc les abonnés regarde une émission / un film par jour...
ils sont abonnés quoi...

netflix clubic putaclic
Setting up devkitARM to build LövePotion on Windows, Applicable to most 3DS homebrew however · GitHub https://gist.github.com/Xtansia/253fab75708131346ade1d9a5aea5a37
Tue Dec 12 18:53:35 2017 archive.org
QRCode
thumbnail
  1. Run devkitProUpdater-1.6.0.exe, devkitARM is the only thing you need to install.

  2. Setup MSYS2: (Skip this if you already have properly setup MSYS2)

    1. Download and install MSYS2 following instructions here.
    2. Run MSYS2 64bit > MSYS2 MinGW 64 bit from Start.
    3. Run the following to install the necessary tools:
    pacman --needed -S base-devel git mingw-w64-x86_64-toolchain
  3. Run your shell (ie. MSYS2 64bit > MSYS2 MinGW 64 bit), then change into your development/working directory, ie.:

    cd /c/Users/Xtansia/Development/3ds/
  4. Build and install latest 3ds_portlibs:

    git clone https://github.com/devkitPro/3ds_portlibs
    cd 3ds_portlibs
    make zlib
    make install-zlib
    make freetype libjpeg-turbo libpng libogg
    make install
    cd ..
  5. Build and install latest ctrulib:

    git clone https://github.com/smealum/ctrulib
    cd ctrulib/libctru
    make
    make install
    cd ../..
  6. Build and install latest citro3d:

    git clone https://github.com/fincs/citro3d
    cd citro3d
    make
    make install
    cd ..
  7. Build and install latest sf2dlib:

    git clone https://github.com/xerpi/sf2dlib
    cd sf2dlib/libsf2d
    make
    make install
    cd ../..
  8. Build and install latest sfillib:

    git clone https://github.com/xerpi/sfillib
    cd sfillib/libsfil
    make
    make install
    cd ../..
  9. Build and install latest sftdlib:

    git clone https://github.com/xerpi/sftdlib
    cd sftdlib/libsftd
    make
    make install
    cd ../..
  10. Build latest LövePotion:

    git clone https://github.com/VideahGams/LovePotion
    cd LovePotion
    mkdir game
    # put your game stuff in game
    make
3ds dev devkit arm
Input/output error on sshfs · Issue #583 · borgbackup/borg · GitHub https://github.com/borgbackup/borg/issues/583
Tue Dec 12 00:46:30 2017 archive.org
QRCode
thumbnail

Hi,
I have mounted an sshfs filesystem and trying to use borg on it. every time i want to init the repository, a locking error appeared.
[root@wall-e data]# borg init --debug /data/backup/test
usin...

Recette Opéra (biscuit Joconde - crème café - ganache chocolat) - PASSION PATISSERIE http://www.passionpatisserie.fr/article-recette-opera-biscuit-joconde-creme-cafe-ganache-chocolat-102019370.html
Mon Dec 11 16:05:56 2017 archive.org
QRCode

OPERA (Pour 10 personnes) Ingrédients Biscuit Joconde 5 oeufs entiers 5 blancs d'oeufs 200g d'amande en poudre 200g de sucre 50g de farine 50g de beurre fondu Crème au beurre et café 4 jaunes d'oeufs 140g de sucre 250g de beurre mou 2 cuillères à soupe...

[TUTO] Linux sur Wii avec Wifi fonctionnel! | Siickblog https://siickblog.wordpress.com/2011/06/17/tuto-linux-sur-wii-avec-wifi-fonctionnel/
Mon Dec 4 17:56:49 2017 archive.org
QRCode
thumbnail
wii linux
How to fix/hack the Samsung CLX-3175FW, imaging unit | emperial.dk http://www.emperial.dk/?p=94
Tue Nov 28 23:25:11 2017 archive.org
QRCode
thumbnail
Hacking the Samsung CLP-315 Laser Printer http://rumburg.org/printerhack/
Tue Nov 28 23:22:53 2017 archive.org
QRCode
thumbnail

Open the printer and solder a wire to the SDA pin of the EEPROM (see video below)
Power up the printer with this line held to ground until it finishes initializing
You can use chassis near the USB port is an easy spot to ground to.

The printer will take longer than normal to initialize; don’t be alarmed

Disconnect the SDA line from ground
Print the demo page by pushing The Button until you see a slowly blinking green light (about 2 seconds)
Print the configuration page by pushing The Button until you see a rapidly blinking green light (about 6 seconds)
Turn off the power
Turn on the power, and wait for it to initialize
Print the configuration report again
All your base are belong to us

Strengths and Weaknesses Interview Questions https://www.thebalance.com/strengths-and-weaknesses-interview-questions-2061221
Tue Nov 28 17:16:21 2017 archive.org
QRCode
thumbnail

How to Answer Interview Questions About Strengths and Weaknesses

When answering questions about your strengths and weaknesses, always keep the job description in mind. When addressing questions about your strengths, focus on strengths you have that are required for the job. For example, if a job requires a lot of work on team projects, you might say that you are a clear communicator who can work with diverse groups of people.

...

forces faiblesses entretien
page 58 / 155
5001 links, including 1907 private
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn