This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TAMS is the perfect school for me. Not only will it give me an amazing education, but also will allow me to make connections with other intelligent, like-minded individuals. I would like to be challenged academically and wish to improve my skills in technology and computers. | |
TAMS is full of intelligent people smarter than me. I no longer want to feel detached from everyone else because nobody shares my interests in math or science. TAMS has been known for producing winners in the Intel Science Talent Search, an event that I really look forward to participating in. I will be able to collaborate and work on high-level projects with others as the people at TAMS know what they’re doing. TAMS is not for slackers but for hard-working, dedicated individuals like me. | |
TAMS, with its university facilities and staff, will allow me to accomplish greater tasks. I would be able to work on research projects with more advanced facilities than I have at home or at school. I could ask actual professors for input on projects an |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* To change this template, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package com.simplyian.iconomystore; | |
import com.iConomy.iConomy; | |
import com.nijiko.permissions.PermissionHandler; | |
import com.nijikokun.bukkit.Permissions.Permissions; | |
import java.io.File; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pyramid.config import Configurator | |
from pyramid.authentication import AuthTktAuthenticationPolicy | |
from pyramid.authorization import ACLAuthorizationPolicy | |
from apogee.security import groupfinder | |
from sqlalchemy import engine_from_config | |
from .models import DBSession |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* To change this template, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package com.crimsonrpg.professions; | |
/** | |
* | |
* @author simplyianm | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd C:\Users\simplyianm\Desktop\spout\Opencraft; "JAVA_HOME=C:\\Program Files\\Java\\jdk1.7.0" "\"C:\\Program Files\\NetBeans 7.0.1\\java\\maven\\bin\\mvn.bat\"" -Dexec.classpathScope=runtime "-Dexec.args=-classpath %classpath org.opencraft.client.OpencraftStandalone" "-Dexec.executable=C:\\Program Files\\Java\\jdk1.7.0\\bin\\java.exe" process-classes org.codehaus.mojo:exec-maven-plugin:1.2:exec | |
Scanning for projects... | |
------------------------------------------------------------------------ | |
Building Opencraft 0.0.1-SNAPSHOT | |
------------------------------------------------------------------------ | |
[nativedependencies:copy] | |
Saving natives in C:\Users\simplyianm\Desktop\spout\Opencraft\target\natives | |
G:org.lwjgl.lwjgl - A:lwjgl-platform - C:natives-windows |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pyramid.httpexceptions import HTTPNotFound | |
from pyramid.view import AppendSlashNotFoundViewFactory | |
def notfound_view(context, request): | |
return HTTPNotFound('It aint there, stop trying!') | |
custom_append_slash = AppendSlashNotFoundViewFactory(notfound_view) | |
config.add_view(custom_append_slash, context=HTTPNotFound) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pyramid.httpexceptions import HTTPNotFound | |
from pyramid.view import ( | |
AppendSlashNotFoundViewFactory, | |
view_config | |
) | |
def notfound_view(context, request): | |
return HTTPNotFound('It aint there, stop trying!') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23:51:00 [SEVERE] Could not load 'plugins\CrimsonPlugin-1.0-SNAPSHOT.jar' in fo | |
der 'plugins': | |
java.lang.reflect.InvocationTargetException | |
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method | |
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source | |
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown So | |
rce) | |
at java.lang.reflect.Constructor.newInstance(Unknown Source) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
KeyError: 'users' | |
sieve errorTraceback (most recent call last): | |
File "core\main.py", line 94, in do_sieve | |
return sieve(bot, input, func, type, args) | |
File "plugins\ignore.py", line 8, in ignore | |
if input.chan in input.users.channels: | |
File "core\main.py", line 56, in __getattr__ | |
return self[key] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* To change this template, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package com.crimsonrpg.magicrpg.spell; | |
import com.crimsonrpg.magicrpg.MagicRPG; | |
import com.crimsonrpg.magicrpg.SpellInfo; | |
import com.crimsonrpg.magicrpg.VisualFX; | |
import org.bukkit.Bukkit; |
OlderNewer