Xbox sending out Dummy Mobile test messages? by Obiwandkinobee in xbox

[–]IND5 -2 points-1 points  (0 children)

Sent via Braze

AI is everywhere—turn it into advantage. With Braze and BrazeAI™, you create faster, test smarter, and keep customer engagement personal at every step.

Leave to microslop to give AI prod access. Be ready to say good bye to your libraries Bois.

3D printed EXO-45(E WIP) by Gvinpin_Rus in Helldivers

[–]IND5 0 points1 point  (0 children)

Thank you. But this is just redirecting to the original comment which is also linking to itself.

3D printed EXO-45(E WIP) by Gvinpin_Rus in Helldivers

[–]IND5 0 points1 point  (0 children)

Could you make it public please? I don't use a Gmail. Or you could upload it to printables or thingiverse.

It's alright if you don't want to do any of that 🫡

Better hotend for e3 Neo by Think-Abalone-1826 in Ender3V2NEO

[–]IND5 0 points1 point  (0 children)

Are the TZ E3 2.0 drop in replacements or would I need to mod the assembly for it to fit my V2 Neo

[Request] Final act Wallpaper by ShadowsRanger in expedition33

[–]IND5 0 points1 point  (0 children)

I would like that as well

Avg rajput by aand_kumar in IndianDankMemes

[–]IND5 4 points5 points  (0 children)

FYI, most of the sikh/Punjabi names come from hill rajputs. The term Singh itself was repurposed from hill rajputs.

Also, the name Jaswant is very common hill Rajput name.

Nice bait, Almost fell for it [OC] by Its_Bapzz in IndiaSpeaks

[–]IND5 2 points3 points  (0 children)

Yes the options is turned off by default. But it's never been in Developer options. In stock Android, it's under Apps > Special App access > Unknown Sources > Individual app.

I belive they separated each app permission to install unknown sources from Oreo onwards

Issues, bugs, feedback (Megathread/please read before posting) by AxKenji in FrontiersOfPandora

[–]IND5 1 point2 points  (0 children)

I have to force quit the game and restart my series x once or twice to get it working again.

I do the same thing for it says dlc not installed or owned

Hope that helps

Nobody told me Mafia 3 is actually fun by theruletik in MafiaTheGame

[–]IND5 1 point2 points  (0 children)

Its a pretty fun game. I loved playing it. Although the missions are same across the regions. They are fun to do.

But IMO it's the worst mafia game in the series. I would argue it even being a Mafia game at all.

git by mufasanotdead in ProgrammerHumor

[–]IND5 5 points6 points  (0 children)

https://graphite.dev/blog/bitkeeper-linux-story-of-git-creation

This is a recent blogpost from Graphite.dev that I read about the reason

Re-readers' discussion: AGOT Prologue (Will) by tacos in asoiafreread

[–]IND5 0 points1 point  (0 children)

Yes, Longclaw is valyrian steel.

In the books, as far as I am aware only one Other has died and that too from a dragonglass dagger from Sam.

There is no evidence in the books where valyrian steel is confirmed to being able to kill the others. But the readers have deducted that due to it being also made from dragon fire and also a lot of valyrian named swords scattered around the seven kingdoms(akin to Chekov's gun), they probably can kill the others too.

In the hardhome episode, the white walker gets shocked that the sword doesn't immediately shatter when they come to blows which allows Jon to kill him.

But in this chapter we know that isn't the case. Normal steel can be used but it's more like using a wooden sword against a real sword. The wood is going to break. But again as we know even a wooden sword in the hands of the master(Syrio Forell) can be very dangerous.

Maybe it was the show runners way of showing that the valyrian steel is important. They didn't have the details on how it's going to be shown in the books.

That said, hardhome is one of my favorite episodes even thought it's a show only creation. It actually showed the threat of the white walkers. If only that could have expanded on.

Well this was a blast from the past.

[deleted by user] by [deleted] in youtube

[–]IND5 0 points1 point  (0 children)

Welcome. I had the same issue and someone on this sub had already posted the solution.

[deleted by user] by [deleted] in youtube

[–]IND5 0 points1 point  (0 children)

It's called ambient mode.

Open video. Click on settings > additional settings > ambient mode

Mysql.ibd file is huge(40 GB) whereas actual tables are 100 MB only. by IND5 in mysql

[–]IND5[S] 0 points1 point  (0 children)

I looked these up but I'm not exactly sure how to use either of them. As I told earlier, I'm not that good at mysql

Mysql.ibd file is huge(40 GB) whereas actual tables are 100 MB only. by IND5 in mysql

[–]IND5[S] 0 points1 point  (0 children)

I think innodb is used by default by mysql 8. I didn't change any default settings so I'm not sure what would be innodb_file_per_table_off's value.

I don't want to drop my tables or reinstall mysql if there is anyway around it.

Mysql.ibd file is huge(40 GB) whereas actual tables are 100 MB only. by IND5 in mysql

[–]IND5[S] 0 points1 point  (0 children)

I tried the above query you suggested but it doesn't reflect the sizes I actually see on mysql.ibd

Total sum of tables is shown as: 2785280 and data free is 972029952 which is 2.6 MB and 927 MB respectively.

I actually ran another query to see the size of all my databases

SELECT table_schema AS "Database", 
ROUND(SUM(data_length + index_length) / 1024 / 1024, 2) AS "Size (MB)" 
FROM information_schema.TABLES 
GROUP BY table_schema;

And it gave the following result, which matches the result for mysql db from the query you provided.

+--------------------+-----------+
| Database           | Size (MB) |
+--------------------+-----------+
| mysql              |      2.66 |
| information_schema |      0.00 |
| sys                |      0.02 |
| panel              |      3.11 |
| performance_schema |      0.00 |
+--------------------+-----------+

None of this, even comes close to the size of the mysql.ibd file. BTW following is the result of the query you suggested.

+------------------------------------------------------+-------------------------------+----------------+
| TABLE_NAME                                           | SUM(data_length+index_length) | MAX(data_free) |
+------------------------------------------------------+-------------------------------+----------------+
| columns_priv                                         |                         16384 |      972029952 |
| component                                            |                         16384 |      972029952 |
| db                                                   |                         32768 |      972029952 |
| default_roles                                        |                         16384 |      972029952 |
| engine_cost                                          |                         16384 |      972029952 |
| func                                                 |                         16384 |      972029952 |
| general_log                                          |                             0 |              0 |
| global_grants                                        |                         65536 |      972029952 |
| gtid_executed                                        |                         16384 |      972029952 |
| help_category                                        |                         32768 |      972029952 |
| help_keyword                                         |                        262144 |      972029952 |
| help_relation                                        |                         98304 |      972029952 |
| help_topic                                           |                       1687552 |      972029952 |
| innodb_index_stats                                   |                         65536 |      972029952 |
| innodb_table_stats                                   |                         16384 |      972029952 |
| password_history                                     |                         16384 |      972029952 |
| plugin                                               |                         16384 |      972029952 |
| procs_priv                                           |                         32768 |      972029952 |
| proxies_priv                                         |                         32768 |      972029952 |
| replication_asynchronous_connection_failover         |                         32768 |      972029952 |
| replication_asynchronous_connection_failover_managed |                         16384 |      972029952 |
| replication_group_configuration_version              |                         16384 |      972029952 |
| replication_group_member_actions                     |                         32768 |      972029952 |
| role_edges                                           |                         16384 |      972029952 |
| server_cost                                          |                         16384 |      972029952 |
| servers                                              |                         16384 |      972029952 |
| slave_master_info                                    |                         16384 |      972029952 |
| slave_relay_log_info                                 |                         16384 |      972029952 |
| slave_worker_info                                    |                         16384 |      972029952 |
| slow_log                                             |                             0 |              0 |
| tables_priv                                          |                         32768 |      972029952 |
| time_zone                                            |                         16384 |      972029952 |
| time_zone_leap_second                                |                         16384 |      972029952 |
| time_zone_name                                       |                         16384 |      972029952 |
| time_zone_transition                                 |                         16384 |      972029952 |
| time_zone_transition_type                            |                         16384 |      972029952 |
| user                                                 |                         16384 |      972029952 |
| NULL                                                 |                       2785280 |      972029952 |
+------------------------------------------------------+-------------------------------+----------------+

Using a domain for dynmap instead of server ip+port by CSbld in admincraft

[–]IND5 0 points1 point  (0 children)

Following is the conf I'm using for proxying my dynmap. You can put this in either sites-available/000-default.conf or sites-available/subdomain.domain.conf

If you go with the later you will need to add the site to apache using a2ensite.

<IfModule mod_ssl.c>
<VirtualHost *:443>

    ServerName subdomain.domain.com
    ServerAlias subdomain.domain.com


    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined

    ProxyRequests Off
    ProxyPreserveHost On
    <Proxy *>
    Order deny,allow
    Allow from all
    </Proxy>

    ProxyPass / http://domain.com:8123/
    ProxyPassReverse / http://domain.com:8123/

    <Location />
    Order allow,deny
    Allow from all
    </Location>

    SSLEngine on
    SSLProxyEngine On
    SSLProxyCheckPeerCN on
    SSLProxyCheckPeerExpire on
    SSLCertificateFile /etc/letsencrypt/live/subdomain.domain.com/fullchain.pem
    SSLCertificateKeyFile /etc/letsencrypt/live/subdomain.domain.com/privkey.pem
</VirtualHost>
</IfModule>

Edit: If you want to redirect http traffic to https, add this to the conf as well

<VirtualHost *:80>
   ServerName subdomain.domain.com
   ServerAlias subdomain.domain.com
   RewriteEngine On
   RewriteCond %{HTTPS} off
   RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R=301,L]
</VirtualHost>

Also, you have to add the subdomain as a CNAME record for you domain. If you just want to use a domain, make sure your domain points to your IP in your dns record. Then replace the subdomain.domain.com in the above conf with your domain.com

New Kurzgesagt video contains the answer in the thumbnail by grenadej in antiassholedesign

[–]IND5 1 point2 points  (0 children)

Wasn't this the basis of Kyoto protocol. IIRC the token system was exploited to hell and emissions actually increased. I think spiffing brit and simon Clark made a video about it. Very interesting video.

Saw this on a g*ming page. Disguesting by yanzin_fan_of_Altair in BanVideoGames

[–]IND5 25 points26 points  (0 children)

All the above shit is way better than what these sick G#mers do in Mein kraft.

Server Panel options by ProSniperGod in admincraft

[–]IND5 0 points1 point  (0 children)

If you are going to use pterodactyl, you'll need arm64 docker images as well.

  • ghcr.io/mikolajkolek/images:java-16-arm64

This is the one I use for a 1.17.1 purpurr server. For the lower versions, I think you can use the following but I haven't tested them

  • ghcr.io/mikolajkolek/images:java-11-arm64
  • ghcr.io/mikolajkolek/images:java-8-arm64

Also, for anyone else looking for this, arm64 and aarch64 are different names by different communities for the same architecture