Skip to content
View danielemassaiu's full-sized avatar

Block or report danielemassaiu

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. adwords-ads-performance-report adwords-ads-performance-report Public

    Forked from bgmop/adwords-ads-performance-report

    using airflow, calls adwords api for various ads performance reports, and perform basic transformation using Hive

    Python

  2. oculi oculi Public

  3. orchestra orchestra Public

    Forked from google/orchestra

    Python

  4. selenium-docker selenium-docker Public

    Run Selenium with firefox inside a docker container

    Python

  5. tensorflow tensorflow Public

    Forked from tensorflow/tensorflow

    Computation using data flow graphs for scalable machine learning

    C++

  6. Bash script that turn off the vm if ... Bash script that turn off the vm if no user is connected and CPU load is below 50%, run this using cron
    1
    #!/bin/bash
    2
    # Turn off the server if no user is connected and CPU load is below 50%
    3
    users=$(who -T | tr -s ' ' | cut -d ' ' -f 1-2 | sort -u | wc -l)
    4
    cpu_average=$(cat /proc/loadavg | cut -d ' ' -f 2)
    5
    cpu_average=$(awk -vx=$cpu_average 'BEGIN{ print x*100}')