180 links
  • BigBrainBag
  • Home
  • Login
  • RSS Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 2 / 9
Newer►
  • VPN over SSH? The SOCKS Proxy. Some resources on the internet might be… | by Cory Chu | Mar, 2021 | GWLab
    ssh -NTCD 12345 SSH_remote_host_IP
    Mon Mar 29 16:24:24 2021 * - permalink -
    QRCode
    - archive.org - https://blog.gwlab.page/vpn-over-ssh-the-socks-proxy-8a8d7bdc7028
    proxy socks ssh
  • Charts.css
    Wed Mar 17 19:49:25 2021 - permalink -
    QRCode
    - archive.org - https://chartscss.org/
    chart charts css
  • CSS - Positioning - Tutorialspoint
    Mon Mar 15 18:28:53 2021 - permalink -
    QRCode
    - archive.org - https://www.tutorialspoint.com/css/css_positioning.htm
    course css free online php tutorial
  • mount - I can't -o "remount,rw" a usb drive - Unix & Linux Stack Exchange


        First, make sure that you have hfsprogs installed. Example installation >command:

        sudo apt-get install hfsprogs

        Next, mount or remount the HFS+ drive; commands need to be as follows:

        sudo mount -t hfsplus -o force,rw /dev/sdXY /media/mntpoint

        or

        sudo mount -t hfsplus -o remount,force,rw /mount/point ...

        Finally, if the drive was improperly unmounted or has otherwise become >partially corrupted run fsck.hfsplus ... as such:

        sudo fsck.hfsplus -f /dev/sdXY
    Sun Mar 14 16:43:41 2021 - permalink -
    QRCode
    - archive.org - https://unix.stackexchange.com/questions/332083/i-cant-o-remount-rw-a-usb-drive
    hfs mount remount rw
  • HTML option selected Attribute
    Sat Mar 13 19:15:48 2021 - permalink -
    QRCode
    - archive.org - https://www.w3schools.com/tags/att_option_selected.asp
    dropdown html select
  • terminal - How to read console/user input in PHP? - Stack Overflow


    If you don't have readline installed, -or- you're writing a library, you should do this:

    if (!function_exists('readline')) {
        function readline($question)
        {
            $fh = fopen('php://stdin', 'r');
            echo $question;
            $userInput = trim(fgets($fh));
            fclose($fh);

            return $userInput;
        }
    }

    $age = readline('What is your age? ');
    echo "You are $age years old.\n";

    Fri Mar 12 17:57:29 2021 - permalink -
    QRCode
    - archive.org - https://stackoverflow.com/questions/23622141/how-to-read-console-user-input-in-php
    input php readline shell
  • command line - How to run a shell script in background? - Ask Ubuntu


    How can I run a shell script in background?
    scripts
    command-line
    Share
    Improve this question
    Follow
    edited Jun 24 '12 at 22:18
    pl1nk
    5,53955 gold badges2424 silver badges4545 bronze badges
    asked Dec 15 '11 at 21:00
    erkan şentürk
    90711 gold badge88 silver badges1111 bronze badges
    Add a comment
    3 Answers
    127

    Depending on what you are wanting, just add a & to the end of the command

    script.sh &
    command &

    If you are running it in a terminal, and you want to then close the terminal, use nohup or disown

    nohup

    nohup script.sh &

    disown

    script &
    disown
    Fri Mar 12 11:16:55 2021 - permalink -
    QRCode
    - archive.org - https://askubuntu.com/questions/88091/how-to-run-a-shell-script-in-background
    background exec shell
  • linux - Mount cifs Network Drive: write permissions and chown - Unix & Linux Stack Exchange
    sudo mount -t cifs -o username=${USER},password=${PASSWORD},uid=$(id -u),gid=$(id -g) //server-address/folder /mount/path/on/ubuntu

    sudo mount -t cifs -o username=${USER},password=${PASSWORD},uid=$(id -u),gid=$(id -g),forceuid,forcegid, //server-address/folder /mount/path/on/ubuntu
    Thu Mar 11 18:47:31 2021 - permalink -
    QRCode
    - archive.org - https://unix.stackexchange.com/questions/68079/mount-cifs-network-drive-write-permissions-and-chown
    cifs mount samba smb
  • WinSSHTerm
    Sun Mar 7 10:09:07 2021 - permalink -
    QRCode
    - archive.org - https://winsshterm.blogspot.com/
    kitty putty ssh windows winscp
  • Dos.Zone
    Sat Mar 6 21:26:47 2021 - permalink -
    QRCode
    - archive.org - https://dos.zone/en
    browser dos games
  • How to convert a video to GIF using ffmpeg, with reasonable quality – iTecTec
    Fri Mar 5 17:20:34 2021 - permalink -
    QRCode
    - archive.org - https://itectec.com/superuser/how-to-convert-a-video-to-gif-using-ffmpeg-with-reasonable-quality/
    convert gif to video
  • PHP Tutorial - Tutorialspoint
    Thu Mar 4 21:44:03 2021 - permalink -
    QRCode
    - archive.org - https://www.tutorialspoint.com/php/index.htm
    php tuturials
  • PHP: base64_encode - Manual
    A function I'm using to return local images as base64 encrypted code, i.e. embedding the image source into the html request.

    This will greatly reduce your page load time as the browser will only need to send one server request for the entire page, rather than multiple requests for the HTML and the images. Requests need to be uploaded and 99% of the world are limited on their upload speed to the server.

    <?php
    function base64_encode_image ($filename=string,$filetype=string) {
        if ($filename) {
            $imgbinary = fread(fopen($filename, "r"), filesize($filename));
            return 'data:image/' . $filetype . ';base64,' . base64_encode($imgbinary);
        }
    }
    ?>

    used as so

    <style type="text/css">
    .logo {
        background: url("<?php echo base64_encode_image ('img/logo.png','png'); ?>") no-repeat right 5px;
    }
    </style>

    or

    <img src="<?php echo base64_encode_image ('img/logo.png','png'); ?>"/>
    Thu Mar 4 17:00:57 2021 - permalink -
    QRCode
    - archive.org - https://www.php.net/manual/en/function.base64-encode.php
    base64 encode image
  • Create animated GIF and WebP from videos using FFmpeg | Matt Joseph
    Mon Mar 1 12:26:26 2021 - permalink -
    QRCode
    - archive.org - https://mattj.io/posts/2021-02-27-create-animated-gif-and-webp-from-videos-using-ffmpeg/
    convert ffmpeg gif
  • How To Change Git Remote Origin – devconnected
    git remote set-url origin git@github.com:user/repository.git
    Sun Feb 28 11:12:22 2021 - permalink -
    QRCode
    - archive.org - https://devconnected.com/how-to-change-git-remote-origin/
    git init source
  • How To Use chmod and chown Command in Linux - nixCraft
    Sun Feb 28 11:09:10 2021 - permalink -
    QRCode
    - archive.org - https://www.cyberciti.biz/faq/how-to-use-chmod-and-chown-command/
    chmod chown permissions
  • ssh - sign_and_send_pubkey: signing failed for RSA key; from agent: agent refused operation - Unix & Linux Stack Exchange


    Make sure the permissions of the key directory and keys are correct on the client. The ~/.ssh directory should only have execute, read and write permissions for the user. If not then change them:

    User can execute, read and write

    chmod 700 ~/.ssh

    For the private keys and also the id_rsa, user can read and write

    chmod 600 ~/.ssh/id_rsa

    For the public keys, user can read and write, others can read

    chmod 644 ~/.ssh/*.pub
    Sun Feb 28 00:27:20 2021 - permalink -
    QRCode
    - archive.org - https://unix.stackexchange.com/questions/626143/sign-and-send-pubkey-signing-failed-for-rsa-key-from-agent-agent-refused-oper
    keys permissions ssh
  • How to Mount SMB Share on Linux
    sudo mount -t cifs -o username=user_name //server_name/share_name /mnt/data
    Sat Feb 27 21:18:03 2021 - permalink -
    QRCode
    - archive.org - https://linoxide.com/how-tos/howto-mount-smb-filesystem-using-etcfstab/
    cifs linux mount smb
  • Knives Out YIFY subtitles
    Wed Feb 17 12:06:04 2021 - permalink -
    QRCode
    - archive.org - https://yifysubtitles.org/movie-imdb/tt8946378
    srt subs subtitle
  • Bumblebee untertitel Deutsch | 4 Untertitel
    Wed Feb 17 12:05:22 2021 - permalink -
    QRCode
    - archive.org - https://www.opensubtitles.org/de/search/sublanguageid-ger/idmovie-602197
    srt subs subtitle
Links per page: 20 50 100
◄Older
page 2 / 9
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation