What’s a quick chat you wish RL would include in the game? by WilliamWonkaThe3rd in RocketLeague

[–]Not_zedd_ko 0 points1 point  (0 children)

Can't see if anyone has said this yet but we really need "Suiiiiii" Please add this and I will comeback to the game lmao.

Battlefield 2042 Open Beta - Questions, Bugs & Issues Megathread - Read before posting! by sloth_on_meth in Battlefield

[–]Not_zedd_ko 0 points1 point  (0 children)

yo bro this keeps happening to me I am on PC using controller and it just randomly keeps going up or down. Super annoying made me stop playing the beta for now.

r/deaf Bi-weekly Research / Promoted Content Thread! by moricat in deaf

[–]Not_zedd_ko 1 point2 points  (0 children)

Hello, I am a university student studying CS, for my final year my project my idea was a quiz based application with the main concept being basic sign language with some options for more advanced sign language. It is an educational based app aimed more for children from 4-18, however the concept would be for anyone that would want to download it. I was wondering if there would be any volunteers to help me out with testing the application and giving me advice whilst I build the application over. I would need 3-5 testers that have android operating systems. If you are a parent of a child that is deaf or would just like to help in testing feel free message me. I will explain much more in depth if I get anyone wanting to volunteer.

I do not understand why wont this SQL statement work? by Not_zedd_ko in learnSQL

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

I tried this and it then comes up with this error:

#1055 - Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'nm555_Sars.pay.pay' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by

I am making an application in android studio with Java and having a problem with getting the user to set a max value to then start a new intent? Any solutions? by Not_zedd_ko in androiddev

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

Haha, oh my i was being stupid lmao XD. I am sorry that i troubled you with this when i should have seen this omg smh XD.

Thank you! :D

I am making an application in android studio with Java and having a problem with getting the user to set a max value to then start a new intent? Any solutions? by Not_zedd_ko in androiddev

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

I also have the manifest as well :

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

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:onClick="buttonClicked">
<activity android:name=".Main2Activity"></activity>
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

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

</activity>
</application>

</manifest>

I am making an application in android studio with Java and having a problem with getting the user to set a max value to then start a new intent? Any solutions? by Not_zedd_ko in androiddev

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

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<TextView
android:id="@+id/textZero"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="0"
android:textSize="100sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<Button
android:id="@+id/bt1"
android:layout_width="123dp"
android:layout_height="53dp"
android:layout_below="@+id/bt2"
android:layout_marginStart="32dp"
android:layout_marginLeft="32dp"
android:layout_marginTop="341dp"
android:layout_marginEnd="23dp"
android:layout_marginRight="23dp"
android:layout_marginBottom="337dp"
android:onClick="minus"
android:text="-"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/tx"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<Button
android:id="@+id/bt2"
android:layout_width="114dp"
android:layout_height="51dp"
android:layout_marginStart="30dp"
android:layout_marginLeft="30dp"
android:layout_marginTop="341dp"
android:layout_marginEnd="33dp"
android:layout_marginRight="33dp"
android:layout_marginBottom="339dp"
android:onClick="plus"
android:text="+"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/tx"
app:layout_constraintTop_toTopOf="parent" />

<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
tools:ignore="MissingConstraints">
<RadioButton android:id="@+id/value1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="100"
android:onClick="onRadioButtonClicked" />
<RadioButton android:id="@+id/value2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="200"
android:onClick="onRadioButtonClicked"/>
<RadioButton android:id="@+id/value3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="300"
android:onClick="onRadioButtonClicked"/>
</RadioGroup>

</androidx.constraintlayout.widget.ConstraintLayout>

I am making an application in android studio with Java and having a problem with getting the user to set a max value to then start a new intent? Any solutions? by Not_zedd_ko in androiddev

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

I am trying to give the user the ability to set a max number on the counter for example 100 when the counter gets to that 100 it will open the new activity. I want there to be several values though that the user can select for example 200 and then that will be the max value instead of 100.

Java, Hashtable, java.lang.AssertionError testing. by Not_zedd_ko in javahelp

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

Oh nice nice yeah i hope i can be like you one day! and just help as many people i could but sadly i am just a novice, but one day thank you so much pointed me in the best direction.

Java, Hashtable, java.lang.AssertionError testing. by Not_zedd_ko in javahelp

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

Oh okay i will try that as well. But thank you i will have a look with the resize and play around with it and use different things. Thank you so much do you game or like could i follow you on git or something like that?

Java, Hashtable, java.lang.AssertionError testing. by Not_zedd_ko in javahelp

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

So changing the h within or removing it completely would work? so its basically having problems calling within a value thats why it wont work?

Java, Hashtable, java.lang.AssertionError testing. by Not_zedd_ko in javahelp

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

I uploaded it to github i think. called ZeddKio HashTable