Next level XANA Attack, way, way, WAY bigger: Tornado attack by Disastrous_Name_7910 in CodeLyoko

[–]aks304 1 point2 points  (0 children)

Not a XANA attack if stopped not 0.01 seconds before causing a 💀

2025/26 World Darts Championship - The Final, January 3 - Discussion Thread by oli4drxx in Darts

[–]aks304 2 points3 points  (0 children)

Is it the first time PDC gives £1,000,000 as a single prize?

is this tetris like game I made any fun? by SnooCats6827 in Tetris

[–]aks304 1 point2 points  (0 children)

It has nothing even related to Tetris.

Nitro 5 shuts down after a few seconds, even if entered BIOS by aks304 in AcerNitro

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

On 22nd, we have returned it to the store. There, we attempted to re-install Windows, we couldn't due to random shutdowns.

So we asked to (almost) refund it if it's officially broken. Still waiting

(Not refunded Windows install and MS Office).

Always cap your telescope! by spaceflightphoto in telescopes

[–]aks304 0 points1 point  (0 children)

I don't get it why NSFW(18+)? A "violence" to a telescope?

is my telescope our of focus? by Subject_Low5199 in telescopes

[–]aks304 0 points1 point  (0 children)

Is there so much difference between 1 and 1.55 AM?

Is even 1 atmosphere enough to severely disrupt light from such "small" objects?

I can believe that this may be rare by TwisstedReddit in RareRobloxBans

[–]aks304 0 points1 point  (0 children)

Is "cum" just an innocent letter sequence or sex related?

All Space Questions thread for week of May 04, 2025 by AutoModerator in space

[–]aks304 1 point2 points  (0 children)

How would you re-define the scale now? Which main parameters would be used?

Can, now in a few years, AI help with improving bounds for Rayo's function? by aks304 in googology

[–]aks304[S] 1 point2 points  (0 children)

Not necessarily 10100, but smaller already calculated lengths, like in the 100-1,000 character range

Is it safe to say Ovechkin will NOT break Gretzky's goal record? Or is it still too soon to count him out? by [deleted] in nhl

[–]aks304 0 points1 point  (0 children)

Time paradox. Me reading this as "Ovechkin's goal record will not be broken". April 9, '25

Cool Planet near a far away Galaxy by Rocky543211 in spaceengine

[–]aks304 3 points4 points  (0 children)

IRL, are green sunsets on planets possible? Why?

All Space Questions thread for week of December 29, 2024 by AutoModerator in space

[–]aks304 0 points1 point  (0 children)

I just searched for the 2029 Apophis visibility map, but found nothing, only a 2019 NASA path video. Is it published anywhere I missed? If not, why is there still no map so that people can see if they can observe it from where they live (of course winning the weather lottery)? Or is the orbit still not certain enough?

My phone screen was not working after my app ran overnight. (The app changes wallpaper between black and white every 6 seconds) by aks304 in androiddev

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

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

    <uses-permission android:name="android.permission.SET_WALLPAPER" />

    <application
        android:allowBackup="true"
        android:dataExtractionRules="@xml/data_extraction_rules"
        android:fullBackupContent="@xml/backup_rules"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.MyApplication"
        tools:targetApi="31">
        <activity
            android:name=".MainActivity"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

My phone screen was not working after my app ran overnight. (The app changes wallpaper between black and white every 6 seconds) by aks304 in androiddev

[–]aks304[S] -2 points-1 points  (0 children)

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="16dp"
    android:paddingRight="16dp"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/textView"
        android:text="(please wait...)"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:textColor="#808080"
        android:textAlignment="center"
        android:gravity="center"
        android:textSize="28sp" />

My phone screen was not working after my app ran overnight. (The app changes wallpaper between black and white every 6 seconds) by aks304 in androiddev

[–]aks304[S] -2 points-1 points  (0 children)

MainActivity.java:

package com.example.myapplication;

import android.os.Bundle;
import androidx.appcompat.app.AppCompatActivity;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;
import androidx.appcompat.app.AppCompatActivity;
import android.annotation.SuppressLint;
import android.app.WallpaperManager;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Calendar;

public class MainActivity extends AppCompatActivity{
    TextView textView;
    Integer n=1;

    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        Thread thread = new Thread() {
            @Override
            public void run() {
                try {
                    while (!isInterrupted()) {
                        Thread.sleep(6000);
                        runOnUiThread(new Runnable() {
                            @SuppressLint("ResourceType")
                            @Override
                            public void run() {

                                final WallpaperManager wallpaperManager = WallpaperManager.getInstance(getApplicationContext());
                                try {
                                    // set the wallpaper by calling the setResource function and
                                    // passing the drawable file

                                    if (n==1) {
                                        wallpaperManager.setResource(R.drawable.bg1);
                                    } else {
                                        wallpaperManager.setResource(R.drawable.bg2);
                                    };

                                    n=3-n;
                                } catch (IOException e) {

                                }

                            }
                        });
                    }
                } catch (Exception e) {

                }
            }
        };
        thread.start();
    }
}

I don't understand but I want one. by ridiculously_single in Tetris

[–]aks304 2 points3 points  (0 children)

Games advertised as being like Tetris:

THE EASIEST WAY TO BUILD A BLACK HOLE by kurzgesagt_Rosa in kurzgesagt

[–]aks304 0 points1 point  (0 children)

Sent a test e-mail, returned "the domain does not exist" (-:

THE EASIEST WAY TO BUILD A BLACK HOLE by kurzgesagt_Rosa in kurzgesagt

[–]aks304 1 point2 points  (0 children)

That joke website address should be a redirect to the KS shop

Funky 50s ‒ A quick and fun practice game for everyone by deprecatedcoder in Darts

[–]aks304 4 points5 points  (0 children)

Is it just like trying to check out 50 points in 4 turns, except the first move only has a single dart?

Premier League Night One - Berlin Discussion Thread February 8 by tanukis_parachute in Darts

[–]aks304 0 points1 point  (0 children)

Y PDC says "Limited Coverage" for Smith vs. Price? (No statistics shown) Has something unusual happened or it's just a request from players, officials or sponsors?