01:08
) to begin playing00:53
) to begin playing00:53
) to begin playing41:33
) to begin playing[1 votes, 2/2 needed]
!about
- shows info about the bot
!ping
- checks the bot's latency
!settings
- shows the bots settings
Music:
!lyrics [song name]
- shows the lyrics of a song
!nowplaying
- shows the song that is currently playing
!play <title|URL|subcommand>
- plays the provided song
!playlists
- shows the available playlists
!queue [pagenum]
- shows the current queue
!remove <position|ALL>
- removes a song from the queue
!search <query>
- searches Youtube for a provided query
!scsearch <query>
- searches Soundcloud for a provided query
!seek [+ | -] <HH:MM:SS | MM:SS | SS>|<0h0m0s | 0m0s | 0s>
- seeks the current song
!shuffle
- shuffles songs you have added
!skip
- votes to skip the current song
DJ:
!forceremove <user>
- removes all entries by a user from the queue
!forceskip
- skips the current song
!movetrack <from> <to>
- move a track in the current queue to a different position
!pause
- pauses the current song
!playnext <title|URL>
- plays a single song next
!repeat [off|all|single]
- re-adds music to the queue when finished
!skipto <position>
- skips to the specified song
!stop
- stops the current song and clears the queue
!volume [0-150]
- sets or shows volume
Admin:
!prefix <prefix|NONE>
- sets a server-specific prefix
!queuetype [linear|fair]
- changes the queue type
!setdj <rolename|NONE>
- sets the DJ role for certain music commands
!setskip <0 - 100>
- sets a server-specific skip percentage
!settc <channel|NONE>
- sets the text channel for music commands
!setvc <channel|NONE>
- sets the voice channel for playing music
The !stop doesn't work meh06:08
) to begin playing (edited)01:39
) to the queue at position 1BAD END THEATER OST - BAD END THEATER - true end ver. (feat. Eleanor Forte Lite)
could not be found! Try entering the song name manually (lyrics [song name]
)bad end theater ost
could not be found!01:32
) to begin playing01:40
) to begin playing02:57
) to begin playing (edited)30:46
) to the queue at position 103:03
) to the queue at position 2 (edited)30:46
) to the queue at position 1 [1 votes, 2/2 needed]
06:02
) to the queue at position 1 (edited)01:42
) to the queue at position 104:05
) to the queue at position 2 (edited)[1 votes, 1/1 needed]
10:07
) to the queue at position 104:21
) to the queue at position 2 (edited)01:41
) to the queue at position 1 (edited)01:23
) to the queue at position 1 (edited)01:23
) to begin playing (edited)05:20
) to begin playingAll creatures of our God and King Hymn - Westminster Abbey
could not be found! Try entering the song name manually (lyrics [song name]
)04:44
) to begin playing (edited)03:17
) to the queue at position 103:17
| Fair
1.
[03:17]
Violin Partita No. 3 in E Major, BWV 1006: III. Gavotte en rondeau - @¹⁰⁰⁰‰ vixen =^•~•^= /ワ.03:08
) to begin playing (edited)03:02
) to begin playing03:02
) to begin playing15:31
) to begin playingone sharing later
(() => {
// whatever...
})();
(() => {
// whatever...
})();
/**
Ctrl
Shift
G
i thinktotal += random - 1
test = 1
for i in range(10):
print(test)
test = ((test + 1) % 2)
1
0
1
0
1
0
1
0
1
0
test = 1
for i in range(10):
print(test)
test = ((test + 1) % 2) + 1
1
1
1
1
1
1
1
1
1
1
test = 1
for i in range(10):
print((test + i) % 2 + 1)
for i in testGrid:
for j in i:
print(f'{currentBit} | {j} => {currentCount}')
if j == currentBit:
currentCount += 1
else:
currentBit = ((currentBit + 1) % 2 )+ 1
seedlist.append(currentCount)
print(f"added count to stack at {currentCount}")
currentCount = 0
^
? (edited)num1 ^ num2
BigInt
?picross.js
/**
* Returns the hint numbers for a given row/column.
* @param {Array[]} solution The state of the board.
* @param {String} direction The direction to go in. x (horizontally) by default.
* @returns
*/
getHints: function (solution, direction = "x") {
let hints = [];
let primaryDimension, secondaryDimension, cellValueGetter;
if (direction === "y") {
primaryDimension = this.get('dimensionWidth');
secondaryDimension = this.get('dimensionHeight');
cellValueGetter = (i, j) => solution[j][i]; // Vertical
} else {
primaryDimension = this.get('dimensionHeight');
secondaryDimension = this.get('dimensionWidth');
cellValueGetter = (i, j) => solution[i][j]; // Horizontal
}
for (let i = 0; i < primaryDimension; i++) {
let streak = 0;
hints[i] = [];
for (let j = 0; j < secondaryDimension; j++) {
let cellValue = cellValueGetter(i, j);
if (cellValue >= 2) { // Skip painted and highlighted tiles
streak++;
continue;
}
if (streak > 0) {
hints[i].push(streak);
streak = 0;
}
}
if (streak > 0) {
hints[i].push(streak);
}
}
return hints;
},
(edited)/* Example puzzle */
// Row hints
'[[1,1,1,4,1,6,1,2],[2,1,6,6,2,2],[1,1,3,1,1,1,2,6],[3,2,1,1,3,1,3,1,2],[3,2,1,3,1,1,1,1,2],[3,3,3,2,4,1,2],[1,2,3,1,3,1,3,1],[1,1,2,1,5,3,3],[1,1,1,1,1,1,1,4],[1,3,1,1,1,2,4,2,1],[1,1,1,3,8,2,2,2],[3,2,1,2,1,1,1,1,1],[1,1,2,1,1,1,3,2],[4,3,1,1,1,3,3],[1,1,3,8,2,2,2],[3,2,1,2,1,1,2,1],[2,2,1,1,2,2,5,1],[7,1,1,2,1,1,1],[2,5,2,1,1,1,3,1],[2,1,2,1,1,1,1,2],[1,2,2,1,1,1,1,1],[1,1,1,2,4,3,4,3],[2,1,6,2,2,1,1],[1,3,3,1,1,2,2,1],[1,1,1,2,1,2,3,2,2],[3,2,1,5,2,1,1],[4,1,2,1,1,3,1],[1,2,1,6,1,1,3],[5,1,1,1,1,2,2,1],[1,2,5,1,1,1,2,1]]'
// Column hints
'[[1,1,2,2,3,1,2,1,2],[4,1,1,3,2,2,2,1],[6,1,2,1,1,2,3,1],[1,1,1,1,4,1,1,2,3],[3,2,1,3,1,1,1,2],[2,3,1,2,4,1,4],[2,1,1,1,5,2,1,1,1,1],[2,1,2,2,2,2,1,1,1,1],[4,1,1,1,3,7,1],[2,1,1,2,1,1,1,3,1,1],[2,2,2,2,2,1,1,1,1,1],[2,2,1,2,1,3,1,3],[6,2,2,3,2,1,1],[1,1,1,2,1,3,1,1],[5,6,1,1,1,1,2],[1,3,5,1,4],[2,1,3,2,1,1,4,1,3],[2,1,2,2,1,2,3],[4,3,2,2,3,1],[2,2,2,5,1,1,3],[1,2,1,3,2,2,1,2],[3,2,1,1,1,2,1,1,2],[1,1,3,2,1,1,1,1,2,1],[5,3,1,4,2,1,1],[2,3,5,1,2],[3,1,3,5,6],[1,4,1,1,2,2,1,1],[1,1,2,1,1,2,1,1,1,3],[1,4,1,2,1,1,4],[4,3,3,2,2,1]]'
insert other congratulatory/proud exclamation here
z
is more angular change my mind /jcur
file format and it SHOULD WORK but the mouse is inverting itself and being transparent for some reasonprint("hello world")
Console.log("hello world");
#include <stdio.h>
int main(void) {
printf("hello world");
}
class main {
public static void main(String []args) {
System.out.println("hello world");
}
};
like this
print("hello world")
if go:
print("eat")
else:
print("don't eat")
print("hello world")
<body>
<p>get the programming socks on</p>
</body>
if (dontCare):
print("I DON'T CARE")
else:
pass
(edited)malloc
in my code i immediately am resigning /jfrom chempy import Substance
import tkinter as tk
window = tk.Tk()
window.title("Molar Mass Bullshit")
window.geometry("1000x300")
window.config(padx = 10,
pady = 10)
y = 0
compoundvar = tk.StringVar()
def cari_massa():
if not compoundvar.get():
output_molar.config(text = "Field must not be empty")
else:
compound_molar = compoundvar.get()
molar_mass = round(Substance.from_formula(compound_molar).molar_mass(),3)
output_molar.config(text = "The molar mass of " + Substance.from_formula(compound_molar).unicode_name + " is " + str(molar_mass))
label_compound = tk.Label(window,
text = "Input the molecule",
font = ("Comic Sans MS", 32, "bold"))
input_compound = tk.Entry(window,
textvariable = compoundvar,
font = ("Comic Sans MS", 32, "bold"))
submit = tk.Button(window,
text = "Submit",
font = ("Comic Sans MS", 32, "bold"),
width = 20,
command = cari_massa)
output_molar = tk.Message(window,
text = "",
font = ("Comic Sans MS", 16, "bold"),
width = 900)
label_compound.grid(row = 1,
column = 0,
padx = 5,
pady = 5)
input_compound.grid(row = 1,
column = 1,
padx = 5,
pady = 5)
submit.grid(row = 2,
column = 1,
padx = 5,
pady = 5)
output_molar.grid(row = 3,
column = 0,
columnspan = 2)
window.mainloop()
Jun 5, 2009