Signal changelog
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearFE
    feecoomeeq
    Now 100%

    I'm actually pretty disappointed with the development of new features. SMS integration was great and now gone. And what they introduced in the last fwo years? Messages formating, planned-send and editing.

    I had to use telegram few times in the last weeks and the bots, emojis, pools or location sharing make it feel pretty powerful.

    2
  • As if the tip actually goes to the dashers.
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearFE
    feecoomeeq
    Now 79%

    If I'm not happy I should drive for it myself? If you're not happy go change your job

    The problem are not the customers, it's the employers.

    Also keep that attitude up - people ordering less, driving by themselves because of the expected tips and you end up redundant.

    20
  • Reddit Falls Short of Ad Growth Targets Ahead of Likely 2024 IPO
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearFE
    feecoomeeq
    Now 100%

    Reddit was like the StackOverflow for life

    ..sometimes coding too We're like regressing to friend's or known in person people's opinions, because Internet will be full of bot and sponsored content and opinions. Either way, double money for corporations, sponsored content ->more sales; people not trusting reviews and trying out stuff just to find out it's rubbish ->more sales

    19
  • venture capitalism goes brrr
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearFE
    feecoomeeq
    Now 100%

    Discord is the same problem for the internet as the Facebook grups were. Its hermetic, the info stays there, its hard to search thus the same problem is being asked over and over. StackOverflow and Reddit strength is that's they are indexed and easy accessed

    22
  • Youtube for iOS without ads
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearFE
    feecoomeeq
    Now 100%

    And they don't work. I tried uBlock on my IPad Air 2 and no add blocked. PopUpBlocker Strict was also important for me, but also doesn't work. DarkReader seemed to work.

    I created a NextDNS account and configured the app, still ads on YouTube in Firefox.

    The only two for me that work are Brave and Vivaldi. As I really don't like what Brave does I'll stick with Vivaldi.

    iOS is such an uncomfortable and greedy ecosystem...

    Edit: Just now I created a piped account and installed Yattee and is it the closest you can get on non-jailbroken iOS?

    Here's the configuration https://www.reddit.com/r/Yattee/comments/zedv9x/comment/k2q8p0o/

    3
  • [question] Docker .yml file to start mariadb-php-apache
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearFE
    feecoomeeq
    Now 100%

    SOLVED After watching videos about ngnix, I thought - ok, I have mariadb, phpMyAdmin to manage the DB and "web" with PHP, but where's the apache actually or ngnix in this config to handle the traffic? I added image: php:8.2-apache instead of image: php:8.2-cli and voila - hello world in browser.

    2
  • [question] Docker .yml file to start mariadb-php-apache
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearFE
    feecoomeeq
    Now 100%

    while having web: image: php:8.2-cli I was getting prod_maria-php-apache-web-1 exited with code 0 but after changing it to web: image: php:8.2-fpm it's not giving errors anymore. Still haven't found the solution for the test.php being not accessible

    1
  • [question] Docker .yml file to start mariadb-php-apache
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearFE
    feecoomeeq
    Now 100%

    sadly it did not help, http://192.168.1.208:8081/test.php is unreachable by the browser.

    also after making changes to the .yml I cannot restart the containers with sudo docker compose restart. Web container restarts ok, but two of them give me "permission denied".

    How about if I dont need phpMyAdmin (I'll access the database through heidiSQL, but I want of course the php to work), can I change the container to be php-fpm? Or maybe changing the config to use nginx?

    1
  • Hello. I bought a HP t630 and wanted to learn some ubuntuServer+Docker. My file structure looks like this: ``` /home/bg/docker_stacks (main folder) /home/bg/docker_stacks/prod_php-maria-apache (this project folder) /home/bg/docker_stacks/prod_php-maria-apache/docker-compose.yml /home/bg/docker_stacks/prod_php-maria-apache/apache/ /home/bg/docker_stacks/prod_php-maria-apache/html/ /home/bg/docker_stacks/prod_php-maria-apache/html/test.php /home/bg/docker_stacks/prod_php-maria-apache/php/ /home/bg/docker_stacks/prod_php-maria-apache/php/php.ini empty ``` **inside test.php there's** ``` ``` **inside docker-compose.yml there's:** ``` GNU nano 6.2 docker-compose.yml web: image: php:8.2-cli ports: - '80:80' volumes: - /home/bg/docker_stacks/prod_maria-php-apache/apache:/etc/apache2/sites-enabled - /home/bg/docker_stacks/prod_maria-php-apache/html:/var/www/html - /home/bg/docker_stacks/prod_maria-php-apache/php/php.ini:/usr/local/etc/php/php.ini depends_on: - mariadb extra_hosts: - 'ax710.test:127.0.0.1' # - 'some-other-host.test:127.0.0.1' networks: - dev-env phpmyadmin: image: phpmyadmin:latest ports: - 8080:80 environment: - PMA_ARBITRARY=1 - PMA_HOST=mariadb depends_on: - mariadb volumes: - /home/bg/docker_stacks/prod_maria-php-apache/php/php.ini:/usr/local/etc/php/php.ini networks: - dev-env mariadb: image: mariadb:latest restart: always environment: MYSQL_ROOT_PASSWORD: '123' MYSQL_USER: 'bg' MYSQL_PASSWORD: '123' MYSQL_DATABASE: 'db' volumes: - mysqldata:/var/lib/mysql ports: - 3306:3306 networks: - dev-env volumes: mysqldata: {} networks: dev-env: {} ``` When on my laptop I open: 192.168.1.208:9090 - cockpit works fine 192.168.1.208:8080 - phpMyAdmin works fine heidiSQL - at 192.168.1.208 opens the database without problems 192.168.1.208:80/test.php or 192.168.1.208/test.php does not work Any ideas how can I make test.php open in my browser? Any other suggestions are appreciated as I'am newbie in Docker.

    3
    4
    Starlink lost another 43 satellites last night. Over 300 satellites have burned up since July 16th. NOAA has 3 job openings for space forecaster.
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearFE
    feecoomeeq
    Now 91%

    Woah, that vid has 2 minutes of initial intro/sponsor crap.

    Ltdw Besides he just reads two articles saying that the failure rate is alarming, cause unknown but also the userbase is over 2 milion people, and doubled since January 2023 where it was around 1 milion. A life expectancy of the satellites are 5 years, so the early editions launched in 2019 should still be operational.

    He also said that June magnetic storm that hit the satellites caused 100 milion loss with 40 satellites burned. As there are 4500 starlinks in orbit already, their cost estimates for 11,12 billion USD.

    Edit. Spelling

    10
  • It wasn't worth it anyway
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearFE
    feecoomeeq
    Now 100%

    Firefox with uBlock - "daily driver" Firefox Focus - just to quick open a link and forget about it not having to close the tab KiwiBrowser - kind of power user browser with all Chrome add-ons available to install, so uBlock and ViolentMonkey work fine.

    5
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearFU
    My bike lock key broke - made a print, then a second with wider walls and turned out not bad

    https://lensdump.com/a/9lia7/?sort=title_asc&page=1 Long live Lemmy.

    2
    0
    lensdump.com

    Hello Lemmies. album with photos in order 1-7: https://lensdump.com/a/9Atmx/?sort=title_asc&page=1 EDIT: Direct links may be more convinient pic 1-7 https://i.lensdump.com/i/CbGQ5c.jpeg https://i1.lensdump.com/i/CbGJv1.jpeg https://i.lensdump.com/i/CbGtcQ.jpeg https://i1.lensdump.com/i/CbGrOM.jpeg https://i1.lensdump.com/i/CbGEDk.jpeg https://i3.lensdump.com/i/CbGTse.jpeg https://i2.lensdump.com/i/Cw2uL9.jpeg I am new to 3d printing as I bought a used Ender3PRO. After initial problems with no adhesion I leveled the bed a couple of tiems. My method is to pinch the paper between the bed and the nozzle to grab and feel a strong friction taking out the paper-sheet. Then in PrusaSlicer I set the Z-offset to 0.2mm and it started printing fine-ish (pic.1, 2, 3 and 4). I made some printer vibrations dampener and figures (around 14 prints ~1,5h each). Next I printed a PS4 Slim Stand (pic.5) and separations between layers appeared. I increased a bit the temp and run a second piece of the PS4 stand and a dissaster appeared (pic.6) and since then the adhesion to the bed is gone. One in 5 attempts with some glue the filament sticked to the bed, but the next layers have a lot of missplacements and eventually filament sticked arround the nozzle and a destroyed print. The problems I noticed since the beginning: 1. adhesion is not great. The nozzle clean line is 80% of attempts dragged with the nozzle to the center of the bed when the brim starts printing. And gets curved just outside the hotend. 2. a 1-2mm of filament is always outside the nozzle (overextrusion?). I usually clean it with my fingers - wrong? 3. the printer has a glass bed but I would like to try using the magnetic Ender sheet. The glass is glued to the printer (pic.7)? Can I place the magnetic sheet on the glass? Should I then set Z-offset on the printer settings to avoid nozzle coliding with the bed? 4. On retraction, the extruder makes a loud click and sometimes a squeak. Is it normal? 5. I had a hard time to put the filament in the tube of the extruder. Like it was missplaced and had to bend the tip of the filament. 6. I washed the magnetic sheet with dish-soap and I'll try my chances today. 7. The PLA is black, stock Ender3 filament which I suppose is not best quality, but should be sufficient for start... Im also considering moisture in filament as I don't have a sperate room for my printer. Pic.6 - can it be caused by moisture? 8. After what happender on Pic.6 the extrusion was really poor which I think was due to clogged nozzle. After heating to 240*C, pulling out the filament, needle-cleaning the nozzle the amount of filament extruded returned to what it was at start. Some settings: - 205*C and 60*C for first layer - 200*C and 55*C for the rest - retraction ON - no Z-hop (I'll try to avoid it for now, since it didn't help) - brim on - 0,2 layer height - first layer speed 20mm/s, rest ~40mm/s Any advice welcome and I'll provide more info if You have any questions.

    9
    11
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearFE
    Now
    3 32

    feecoomeeq

    lemmy.world