4355 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 47 / 218
Newer►
  • thumbnail
    IAM Policies and Bucket Policies and ACLs! Oh, My! (Controlling Access to S3 Resources) | AWS Security Blog

    Easy one?
    Not even close

    24 mars 2017 à 12:24:51 UTC+1 - permalink - archive.org - https://aws.amazon.com/blogs/security/iam-policies-and-bucket-policies-and-acls-oh-my-controlling-access-to-s3-resources/
    iam policy s3
  • Managing LDAP from the Command Line on Linux | Linux.com | The source for Linux information
    24 mars 2017 à 11:22:05 UTC+1 - permalink - archive.org - https://www.linux.com/learn/managing-ldap-command-line-linux
    ldap
  • willfarrell/crontab - Docker Hub

    alternative to ofelia

    23 mars 2017 à 11:06:06 UTC+1 - permalink - archive.org - https://hub.docker.com/r/willfarrell/crontab/
    cron docker
  • Casque Circum-aural à Réduction du Bruit Bose QuietComfort 25: Amazon.fr: High-tech
    23 mars 2017 à 10:54:17 UTC+1 - permalink - archive.org - https://www.amazon.fr/Casque-Circum-aural-R%C3%A9duction-Bose-QuietComfort/dp/B00M1NEUKK/ref=sr_1_1?ie=UTF8&qid=1490262841&sr=8-1&keywords=Bose+QC+25
    casque hardware
  • How to: Debug SSL certificate problems from the shell prompt

    openssl s_client -connect www.cyberciti.biz:443

    21 mars 2017 à 15:45:48 UTC+1 - permalink - archive.org - https://www.cyberciti.biz/tips/debugging-ssl-communications-from-unix-shell-prompt.html
    debug ssl
  • thumbnail
    Get the short git version hash - Stack Overflow

    git rev-parse --short HEAD

    17 mars 2017 à 10:54:33 UTC+1 - permalink - archive.org - http://stackoverflow.com/questions/5694389/get-the-short-git-version-hash
    git rev short
  • i3 - improved tiling wm
    16 mars 2017 à 14:16:23 UTC+1 - permalink - archive.org - https://i3wm.org/screenshots/
    window_manager
  • Jessie Frazelle's Blog: Docker Containers on the Desktop
    16 mars 2017 à 11:35:56 UTC+1 * - permalink - archive.org - https://blog.jessfraz.com/post/docker-containers-on-the-desktop/
    app crhome desktop docker gui skype
  • thumbnail
    mozart-analytics/sqsd: A simple alternative to the Amazon SQS Daemon ("sqsd") used on AWS Beanstalk worker tier instances.

    As the included diagram portrays, in a common workflow, the worker instance will consume messages sent to a specified Amazon SQS from another service (e.g.: a web server or another worker). These messages will be received by the worker via POST requests. This eliminates the necessity of configuring a worker as an always-on service, as well as having to add code for reading and consuming messages from an AWS SQS queue. In other words, the worker is implemented as a standard RESTful API/Service that will react to a message sent to it at an specific endpoint via a POST request. This is an awesome approach by Amazon to microservices and reactive design.

    The conversion of the SQS message to a POST request is executed by what AWS calls the "SQS Daemon" or "Sqsd". This is a simple daemon they pre-install in the worker tier instances that is constantly monitoring an specific AWS SQS queue (provided by configuration) for new messages. When new messages arrive, it constructs a POST request and sends it to a specific endpoint (also provided via configuration). If the endpoint consumes it without errors and returns a 2** HTTP Code in its response, the "Sqsd" deletes the message from the queue to signal that its consumption was successful.

    However, even though this approach is extremely powerful, Amazon does not provide the code of this daemon as open source. Therefore, we have reproduced its behavior by creating our own version of the "Sqsd" free for everyone to use. Moreover, we have provided lots of customization and configuration properties so that it can be molded to your specific use cases.

    16 mars 2017 à 08:31:04 UTC+1 - permalink - archive.org - https://github.com/mozart-analytics/sqsd
    aws beanstalk sqs
  • thumbnail
    Writing IAM Policies: How to Grant Access to an Amazon S3 Bucket | AWS Security Blog

    Don't give s3 full access policy to your app user
    Prefer to allow access only for specific bucket

    I wonder what's the best choice : create managed policy or simply use inline policy. I got a 1 to 1 relationship between my app-users and bucket so... inline policy looks good here

    15 mars 2017 à 11:00:52 UTC+1 - permalink - archive.org - https://aws.amazon.com/blogs/security/writing-iam-policies-how-to-grant-access-to-an-amazon-s3-bucket/
    aws policy s3
  • Note: aws auto scaling

    spoiler alert: auto scaling is far to be magical

    as usual with aws, everything is an object and for autoscaling u got several objects and several links between them
    First you define a launch configuration : what type of machine you want to laucnh
    Then an autoscaling group : it will use the launch configuration to create new EC2
    In this autoscaling group, you have to define auto scaling policies ie what to do (remove or add x instances) and link them to a cloudwatch alert (cpu is high or network or whatever cloudwatch monitors)
    the autoscaling group can also be linked to an ELB so when EC2 are added/removed, they also are registred/deregistered from ELB

    13 mars 2017 à 15:49:45 UTC+1 - permalink - archive.org - https://links.infomee.fr/?JIGagw
    auto aws scale scaling
  • Note: beanstalk consistency

    A lot of work to do..

    Example : I change the autoscaling trigger in web UI interface. After a few second, my autoscaling trigger is changed (checked).
    But if I save beanstalk environment configuration into a file, the change I made is not there :-(

    Maybe working wih UI is not the best option, but it's very convenient to test stuff without terminate/recreate env from scratch (things I have to do btw when I commit changes in files, I have to check if the behaviour is the same)

    A lot of time lost, but it's the price to have reproductible environment and 'infrastructure as a code'

    13 mars 2017 à 11:17:52 UTC+1 - permalink - archive.org - https://links.infomee.fr/?5sq-xQ
    beanstalk
  • thumbnail
    Ode To My Family

    via Doo

    10 mars 2017 à 13:08:56 UTC+1 - permalink - archive.org - https://turnoff.us/geek/ode-to-my-family/
    bd image imprimante
  • Stop and Start Your Instance - Amazon Elastic Compute Cloud

    Each time you start a stopped instance we charge a full instance hour, even if you make this transition multiple times within a single hour.

    9 mars 2017 à 09:37:58 UTC+1 - permalink - archive.org - http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Stop_Start.html
    aws pricing
  • GitHub - capitalone/cloud-custodian: Rules engine for AWS management, DSL in yaml for query, filter, and actions on resources
    7 mars 2017 à 22:30:37 UTC+1 - permalink - archive.org - https://github.com/capitalone/cloud-custodian
    aws policy
  • Github style diff in terminal with icdiff

    I'm happy with vimdiff (colorscheme Murphy) but why not!

    7 mars 2017 à 22:21:57 UTC+1 - permalink - archive.org - http://blog.owen.cymru/github-style-diff-in-terminal-with-icdiff/
    diff
  • Fix OhMyZSH Prompts in PuTTY · Brooks Garrett
    4 mars 2017 à 08:46:16 UTC+1 - permalink - archive.org - https://brooksgarrett.com/blog/fix-ohmyzsh-prompts-in-putty/
    font putty windows zsh
  • Worker Environments - AWS Elastic Beanstalk

    Elastic Beanstalk simplifies this process by managing the Amazon SQS queue and running a daemon process on each instance that reads from the queue for you. When the daemon pulls an item from the queue, it sends an HTTP POST request locally to http://localhost/ with the contents of the queue message in the body. All that your application needs to do is perform the long-running task in response to the POST. You can configure the daemon to post to a different path, use a MIME type other than application/JSON, connect to an existing queue, or customize connections, timeouts, and retries.

    2 mars 2017 à 21:15:10 UTC+1 - permalink - archive.org - http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/using-features-managing-env-tiers.html
    aws beanstalk sqs worker
  • Description détaillée d'Amazon Simple Queue Service (SQS) – Amazon Web Services (AWS)

    Cycle de vie des messages Amazon SQS

    Les messages stockés dans Amazon SQS ont un cycle de vie facile à gérer, mais qui garantit le traitement de tous les messages.

    Un système qui doit envoyer un message sélectionne une file d'attente Amazon SQS et utilise SendMessage pour lui envoyer un nouveau message.
    Un autre système traitant des messages doit traiter plus de messages : il appelle donc ReceiveMessage, et ce message est renvoyé.
    Dès lors qu'un message est renvoyé par ReceiveMessage, il ne sera pas renvoyé par une autre demande ReceiveMessage avant que le délai de visibilité ne soit expiré. Ainsi, plusieurs destinataires peuvent traiter le même message simultanément.
    Si le système de traitement des messages termine avec succès le traitement de ce message, il appelle DeleteMessage, ce qui supprime le message de la file d'attente pour que personne d'autre ne le traite. Si ce système ne réussit pas à traiter le message, il sera alors lu par un autre appel ReceiveMessage dès que le délai de visibilité sera expiré.
    Si vous avez associé une file d'attente de lettre morte à une file d'attente source, les messages seront déplacés vers la file d'attente de lettre morte lorsque le nombre de tentatives d'envoi que vous avez défini aura été atteint.
    2 mars 2017 à 21:12:54 UTC+1 - permalink - archive.org - https://aws.amazon.com/fr/sqs/details/
    amazon aws sqs
  • Tutorial: Todo-List Application — Bottle 0.12.13 documentation

    Running Bottle with a different server

    As said above, the standard server is perfectly suitable for development, personal use or a small group of people only using your application based on Bottle. For larger tasks, the standard server may become a bottleneck, as it is single-threaded, thus it can only serve one request at a time.

    But Bottle has already various adapters to multi-threaded servers on board, which perform better on higher load. Bottle supports Cherrypy, Fapws3, Flup and Paste.

    If you want to run for example Bottle with the Paste server, use the following code:

    from bottle import PasteServer
    ...
    run(server=PasteServer)

    This works exactly the same way with FlupServer, CherryPyServer and FapwsServer.

    2 mars 2017 à 21:09:38 UTC+1 - permalink - archive.org - https://bottlepy.org/docs/stable/tutorial_app.html#server-setup
    bottle python
Links per page: 20 50 100
◄Older
page 47 / 218
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation