I hereby claim:
- I am flare183 on github.
- I am negativeflare (https://keybase.io/negativeflare) on keybase.
- I have a public key ASAAJ3Nmw5ahPvG14Jm6f0RPlRmR_WuaSDArhaUwWHb9Jgo
To claim this, I am signing this object:
| [08Mar2023 09:27:20.153] [Server thread/INFO] [STDOUT/]: [net.minecraft.entity.player.PlayerInventory:handler$bbi000$logJetpack:1175]: Old Item: air NBT:{} | |
| [08Mar2023 09:27:20.153] [Server thread/INFO] [STDOUT/]: [net.minecraft.entity.player.PlayerInventory:handler$bbi000$logJetpack:1176]: Clientside: false | |
| [08Mar2023 09:27:20.153] [Server thread/INFO] [STDERR/]: [net.minecraft.entity.player.PlayerInventory:handler$bbi000$logJetpack:1177]: java.lang.Throwable | |
| [08Mar2023 09:27:20.153] [Server thread/INFO] [STDERR/]: [net.minecraft.entity.player.PlayerInventory:handler$bbi000$logJetpack:1177]: at net.minecraft.entity.player.PlayerInventory.handler$bbi000$logJetpack(PlayerInventory.java:1177) | |
| [08Mar2023 09:27:20.154] [Server thread/INFO] [STDERR/]: [net.minecraft.entity.player.PlayerInventory:handler$bbi000$logJetpack:1177]: at net.minecraft.entity.player.PlayerInventory.func_70299_a(PlayerInventory.java) | |
| [08Mar2023 09:27:20.154] [Server thread/INFO] [STDERR/]: [net.minecraft.entity.player.PlayerInventory:hand |
I hereby claim:
To claim this, I am signing this object:
| #include <iostream> | |
| #include <sstream> | |
| #include <string> | |
| using namespace std; | |
| string int2string(const int& number) | |
| { | |
| ostringstream oss; | |
| oss << number; | |
| return oss.str(); |
| USAGE | |
| ~~~~~ | |
| http://wiki.debian.org/MeetBot | |
| Inspired by the original MeetBot, by Holger Levsen, which was itself a | |
| derivative of Mootbot (https://wiki.ubuntu.com/ScribesTeam/MootBot), | |
| by the Ubuntu Scribes team. | |
| /usr/share/doc/supybot/GETTING_STARTED.gz (on Debian systems) provides | |
| information on configuring supybot the first time, including taking |
| class MyLaunchpad(object): | |
| """Manage an authorised user's launchpad account""" | |
| def __init__(self, project, credentials=None): | |
| if not credentials: | |
| credentials = DEFAULT_CRED % project | |
| logging.info(_("Save cache file to %s") % credentials) | |
| self._project = project | |
| self._crds = None | |
| self._cfile = credentials | |
| self._me = None |
| make -C arm7 | |
| make[1]: Entering directory `/home/jesse/Programming/NDS_Projects/dsorganize/arm7' | |
| [ -d build ] || mkdir -p build | |
| make --no-print-directory -C build -f /home/jesse/Programming/NDS_Projects/dsorganize/arm7/Makefile | |
| main.c | |
| arm-eabi-gcc -MMD -MP -MF /home/jesse/Programming/NDS_Projects/dsorganize/arm7/build/main.d -g -Wall -O2 -mcpu=arm7tdmi -mtune=arm7tdmi -fomit-frame-pointer -ffast-math -mthumb-interwork -I/home/jesse/Programming/NDS_Projects/dsorganize/arm7/include -I/home/jesse/Programming/NDS_Projects/dsorganize/arm7/build -I/opt/devkitPro//libnds/include -I/home/jesse/Programming/NDS_Projects/dsorganize/arm7/build -DARM7 -c /home/jesse/Programming/NDS_Projects/dsorganize/arm7/source/main.c -o main.o | |
| /home/jesse/Programming/NDS_Projects/dsorganize/arm7/source/main.c: In function 'startSound': | |
| /home/jesse/Programming/NDS_Projects/dsorganize/arm7/source/main.c:289: error: 'SOUND_8BIT' undeclared (first use in this function) | |
| /home/jesse/Programming/NDS_Projects/dsorganize/arm7/source/main.c:289: |
| /*************************************************************************** | |
| * * | |
| * This file is part of DSOrganize. * | |
| * * | |
| * DSOrganize is free software: you can redistribute it and/or modify * | |
| * it under the terms of the GNU General Public License as published by * | |
| * the Free Software Foundation, either version 3 of the License, or * | |
| * (at your option) any later version. * | |
| * * | |
| * DSOrganize is distributed in the hope that it will be useful, * |
| (defun area () | |
| (let (x y) | |
| (format t "Enter the x variable~%") | |
| (setf x (read)) | |
| (format t "Enter the y variable~%") | |
| (setf y (read)) | |
| (format t "The answer is~%") | |
| (values (* y x)))) |
| (defun area () | |
| (let (x y) | |
| (format t "Enter the x variable~%") | |
| (setf x (read)) | |
| (format t "Enter the y variable~%") | |
| (setf y (read)) | |
| (values (* y x)))) |