4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 46 / 217
Newer►
  • thumbnail
    Symfony and Monolog, how use Processor in your project: a practical example « Stefano Alletti
    March 24, 2017 at 5:09:44 PM GMT+1 - permalink - archive.org - https://stefanoalletti.wordpress.com/2017/03/09/symfony-and-monolog-how-use-processor-in-your-project/
    log monolog php symfony
  • Note: boto3 subnet sorted by name

    subnets = ec2.subnets.all()
    subnets_sorted = sorted(subnets, key=lambda k: k.tags[next(index for (index, d) in enumerate(k.tags) if d["Key"] == "Name")]['Value'])

    Well, my python level is not good enough to clearly understand this but my Google level was largely enough to build this

    March 24, 2017 at 4:02:34 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?Fn--jw
    aws boto boto3 python
  • thumbnail
    IAM Policies and Bucket Policies and ACLs! Oh, My! (Controlling Access to S3 Resources) | AWS Security Blog

    Easy one?
    Not even close

    March 24, 2017 at 12:24:51 PM GMT+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
    March 24, 2017 at 11:22:05 AM GMT+1 - permalink - archive.org - https://www.linux.com/learn/managing-ldap-command-line-linux
    ldap
  • willfarrell/crontab - Docker Hub

    alternative to ofelia

    March 23, 2017 at 11:06:06 AM GMT+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
    March 23, 2017 at 10:54:17 AM GMT+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

    March 21, 2017 at 3:45:48 PM GMT+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

    March 17, 2017 at 10:54:33 AM GMT+1 - permalink - archive.org - http://stackoverflow.com/questions/5694389/get-the-short-git-version-hash
    git rev short
  • i3 - improved tiling wm
    March 16, 2017 at 2:16:23 PM GMT+1 - permalink - archive.org - https://i3wm.org/screenshots/
    window_manager
  • Jessie Frazelle's Blog: Docker Containers on the Desktop
    March 16, 2017 at 11:35:56 AM GMT+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.

    March 16, 2017 at 8:31:04 AM GMT+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

    March 15, 2017 at 11:00:52 AM GMT+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

    March 13, 2017 at 3:49:45 PM GMT+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'

    March 13, 2017 at 11:17:52 AM GMT+1 - permalink - archive.org - https://links.infomee.fr/?5sq-xQ
    beanstalk
  • thumbnail
    Ode To My Family

    via Doo

    March 10, 2017 at 1:08:56 PM GMT+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.

    March 9, 2017 at 9:37:58 AM GMT+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
    March 7, 2017 at 10:30:37 PM GMT+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!

    March 7, 2017 at 10:21:57 PM GMT+1 - permalink - archive.org - http://blog.owen.cymru/github-style-diff-in-terminal-with-icdiff/
    diff
  • Fix OhMyZSH Prompts in PuTTY · Brooks Garrett
    March 4, 2017 at 8:46:16 AM GMT+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.

    March 2, 2017 at 9:15:10 PM GMT+1 - permalink - archive.org - http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/using-features-managing-env-tiers.html
    aws beanstalk sqs worker
Links per page: 20 50 100
◄Older
page 46 / 217
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation