Welcome to Incels.is - Involuntary Celibate Forum

Welcome! This is a forum for involuntary celibates: people who lack a significant other. Are you lonely and wish you had someone in your life? You're not alone! Join our forum and talk to people just like you.

LifeFuel what is your fight song ?

owly

owly

Banned
-
Joined
Oct 26, 2018
Posts
2,294
after seeing that video of dan cilley being threatened by 2 white knight cucks, in shiny soy armor,
I got an idea for a simple app to boost up the incel fighting spirit.

as the app activates it loop plays your favorite fight song, pumping you up with extra energy to break through said soylents face. :

on android studio :

1 start a new project
2 add a raw names directory in the res folder and paste fighto.mp3 in there
3 paste this code in the Main.java file (don't delete the 1st line (package line))

Code:
import android.media.MediaPlayer;
import android.os.Handler;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.SeekBar;

import java.io.IOException;

public class MainActivity extends AppCompatActivity {
    MediaPlayer mediaPlayer;
    SeekBar seekCbBar;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        mediaPlayer = MediaPlayer.create(this, R.raw.fighto);
        mediaPlayer.setLooping(true);
        mediaPlayer.start();
    }
}

enable dev mode with debug
run the app with your phone connected

use the app when you need to, simply activate it with one click and you are ready to go (that's why the code is in the onCreate methode)

here is my current fight song :



what's yours ?
 
My fight song is Scarface theme
 
I’m pretty sure there’s a song that’s actually called ”This is my fight song” but it’s by a foid
 
Nirvana - Tourette's
 
I“pumped up kicks” by foster the people. Almost every other answer in this thread is shit.
after seeing that video of dan cilley being threatened by 2 white knight cucks, in shiny soy armor,
I got an idea for a simple app to boost up the incel fighting spirit.

as the app activates it loop plays your favorite fight song, pumping you up with extra energy to break through said soylents face. :

on android studio :

1 start a new project
2 add a raw names directory in the res folder and paste fighto.mp3 in there
3 paste this code in the Main.java file (don't delete the 1st line (package line))

Code:
import android.media.MediaPlayer;
import android.os.Handler;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.SeekBar;

import java.io.IOException;

public class MainActivity extends AppCompatActivity {
    MediaPlayer mediaPlayer;
    SeekBar seekCbBar;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        mediaPlayer = MediaPlayer.create(this, R.raw.fighto);
        mediaPlayer.setLooping(true);
        mediaPlayer.start();
    }
}

enable dev mode with debug
run the app with your phone connected

use the app when you need to, simply activate it with one click and you are ready to go (that's why the code is in the onCreate methode)

here is my current fight song :



what's yours ?

Sasuke is based though. Blackpilled chad.
 

keep fighting
 


This one is really good

This is also really good and it starts from 1:20 sort of makes you feel like being a Ukrainian gangster running about with a hammer and a ski mask
 
I modified the code to lock the screen orientation, so the song doesn't restart when you flip the phone

Code:
import android.content.pm.ActivityInfo;
import android.media.MediaPlayer;
import android.os.Handler;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.SeekBar;

import java.io.IOException;

public class MainActivity extends AppCompatActivity {
    MediaPlayer mediaPlayer;
    SeekBar seekCbBar;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
        mediaPlayer = MediaPlayer.create(this, R.raw.fighto);
        mediaPlayer.setLooping(true);
        mediaPlayer.start();
    }
}
 
I added some code to start the app with maximum volume for extra beat up the white knight effect:

Code:
import android.content.pm.ActivityInfo;
import android.media.AudioManager;
import android.media.MediaPlayer;
import android.os.Handler;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.SeekBar;

import java.io.IOException;

public class MainActivity extends AppCompatActivity {
    MediaPlayer mediaPlayer;
    SeekBar seekCbBar;
    // var to access volume jutsu :
    private AudioManager mAudioManager;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
// set volume to maximum after app loads :
        mAudioManager = (AudioManager) getSystemService(AUDIO_SERVICE);
        mAudioManager.setStreamVolume(
                AudioManager.STREAM_MUSIC, // Stream type
                15, // Index
                AudioManager.FLAG_SHOW_UI // Flags
        );
        mediaPlayer = MediaPlayer.create(this, R.raw.fighto);
        mediaPlayer.setLooping(true);
        mediaPlayer.start();
    }
}

hadouuuuken !
 
Last edited:

Similar threads

owly
Replies
11
Views
832
Deleted member 250
Deleted member 250

Users who are viewing this thread

shape1
shape2
shape3
shape4
shape5
shape6
Back
Top