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
| [21:58:10] [Server thread/INFO]: Starting integrated minecraft server version 1.7.10 | |
| [21:58:10] [Server thread/INFO]: Generating keypair | |
| [21:58:10] [Server thread/INFO]: Converting map! | |
| [21:58:10] [Server thread/INFO]: Scanning folders... | |
| [21:58:10] [Server thread/INFO]: Total conversion count is 0 | |
| [21:58:11] [Server thread/INFO]: Preparing start region for level 0 | |
| [21:58:12] [Server thread/INFO]: Preparing spawn area: 4% | |
| [21:58:13] [Server thread/INFO]: Preparing spawn area: 6% | |
| [21:58:14] [Server thread/INFO]: Preparing spawn area: 11% | |
| [21:58:15] [Server thread/INFO]: Preparing spawn area: 17% |
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
| use bb_bb60 | |
| declare @USER_ID varchar(8); | |
| set @USER_ID= 'username' | |
| SELECT | |
| distinct cm.COURSE_NAME | |
| , COUNT(cu.USERS_PK1) OVER (PARTITION BY cu.CRSMAIN_PK1) AS Num_students | |
| FROM COURSE_USERS cu |
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
| use WebEx | |
| declare @startdate datetime; | |
| declare @enddate datetime; | |
| set @startdate = '10/1/2015' | |
| set @enddate = '11/1/2015' | |
| --- [TotalAttendee] > 1 (i.e. not someone seeing loggin in to an empty/unstarted meeting) |
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
| ## | |
| # Host Database | |
| # | |
| # localhost is used to configure the loopback interface | |
| # when the system is booting. Do not change this entry. | |
| ## | |
| 127.0.0.1 localhost | |
| 255.255.255.255 broadcasthost | |
| ::1 localhost |
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 django.contrib import admin | |
| from models import Storage, Media, ProxyUrl, TrustedSubnet | |
| class StorageAdmin(admin.ModelAdmin): | |
| list_display = ('title', 'name', 'system', 'base', 'urlbase') | |
| # http://stackoverflow.com/questions/9563935/removing-buttons-links-in-django-admin | |
| def get_actions(self, request): |
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
| (function(angular){ | |
| 'use strict'; | |
| var myModule = angular.module('myModule', []); | |
| /** | |
| * This provider adds SOAP support to the $http service | |
| * @class soap-interceptorProvider | |
| * @module myModule | |
| * @namespace myModule |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> | |
| <title>Bootstrap 101 Template</title> | |
| <!-- Bootstrap --> |
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
| $ brew gist-logs smpeg | |
| couldn't understand kern.osversion `14.3.0' | |
| https://gist.github.com/a658ad39f8e13b43054b | |
| $ which autom4te | |
| /usr/local/bin/autom4te | |
| $ brew upgrade autom4te | |
| Error: No available formula for autom4te | |
| $ /usr/bin/gcc -v | |
| Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1 | |
| Apple LLVM version 6.1.0 (clang-602.0.49) (based on LLVM 3.6.0svn) |
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
| { | |
| "type" : "crewmate", | |
| "disableWornArmor" : true, | |
| "scripts" : [ | |
| "/npcs/main.lua", | |
| "/scripts/pathing.lua", | |
| "/npcs/timers.lua", | |
| "/scripts/sensors.lua", |
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
| use bb_bb60 | |
| declare @test_pk int | |
| -- get the test_pk1 from the &content_id fragment of the url of the test in question, e.g. | |
| -- ~/webapps/assessment/take/launchAssessment.jsp?course_id=_1111_1&content_id=_7777777_1&mode=cpview | |
| set @test_pk = 7777777 | |
| declare @question_type int | |
| -- Choose the type of of question and answers that you wish to examine: | |
| -- 1=Multiple Choice, 2=True/False, 3=Multiple Anser, 4=Ordering, 5=Matching, 6=Fill In the Blank, |