kind:app , kind:folder , kind:email ,kind:event (calendar event) kind:image , kind:movie , kind:email ,kind:event
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
| <a href="http://www.comicartfans.com/gallerypiece.asp?piece=1016448"SOURCE</a> | |
| <table border="0" cellpadding="5" cellspacing="0" width="100%"> | |
| <tbody><tr> | |
| <td width="40%" valign="top"> | |
| <h2 class="head">Artwork Details</h2> | |
| <table width="100%" border="0" cellspacing="0" cellpadding="3"> | |
| <tbody><tr> | |
| <td width="1%" style="height:18px; text-align:right" nowrap=""><b>Title:</b></td> | |
| <td><b>VEBER Les maisons sont des visages 1899</b></td> |
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
| { | |
| "name": "bbtools-ng", | |
| "version": "0.0.0", | |
| "dependencies": { | |
| "angular": "^1.3.0", | |
| "json3": "^3.3.0", | |
| "es5-shim": "^4.0.0", | |
| "bootstrap-sass-official": "^3.2.0", | |
| "angular-animate": "^1.3.0", | |
| "angular-aria": "^1.3.0", |
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
| --step 3 user recieves report for selected rubric: | |
| -- rubric_pks for a course can be gotten via: | |
| -- select r.pk1 as rubric_pk1, r.title | |
| -- from rubric r where r.course_pk1 = [course_pk1] | |
| -- sample output: | |
| -- rubric_pk1 title | |
| -- 2515 'Individual Assignment' | |
| -- NOTE THIS QUERY BRANCHES BASED ON WHETHER THE RUBRIC IS | |
| -- ASSOCIATED WITH AN INDIVIDUAL OR GROUP ASSIGNMENT AND THE |
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
| /* | |
| Pinal Dave's Basics of Joins (T-SQL) | |
| translated to @table from #table, no adventureworks, comment column for ease of comparison | |
| http://blog.sqlauthority.com/2009/04/13/sql-server-introduction-to-joins-basic-of-joins/ | |
| */ | |
| declare @table1 TABLE (ID INT, Value VARCHAR(10)) | |
| INSERT INTO @table1 (ID, Value) | |
| SELECT 1,'First' | |
| UNION ALL |
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
| Declare @Users_PK1 INT | |
| Declare @User_ID varchar(50) | |
| Set @User_ID = 'username' -- User name here, e.g. bobsmith | |
| Select @Users_PK1 = PK1 from users where user_id = @User_ID | |
| --Delete Module Preferences from Users | |
| DELETE from PORTAL_EXTRA_INFO where portal_viewer_pk1 in ( | |
| Select pk1 from PORTAL_VIEWER where USERS_PK1 = @Users_PK1 |
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 pdf_join { | |
| join_py="/System/Library/Automator/Combine PDF Pages.action/Contents/Resources/join.py" | |
| read -p "Name of output file > " output_file && "$join_py" -o $output_file $@ && open $output_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
| select 'bb_bb60.db' as db,name | |
| from bb_bb60.sys.procedures | |
| union | |
| select 'bb_bb60_stats.db' as db, name | |
| from bb_bb60_stats.sys.procedures | |
| order by name |
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_stats | |
| -- TODO - can this be re-written (e.g. against uses first) so that | |
| -- -- students with no data will still get a listing | |
| -- -- only the most recent item is reported (most recent of every type of activity is currently reported | |
| -- TODO parameterize studentID list | |
| --DECLARE @IDlist TABLE(studID nvarchar(10) NOT NULL) | |
| --INSERT INTO @IDlist | |
| -- SELECT |
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
| -- 2 unioned ACTIVITY_ACCUMULATOR queries, 1st [bb_bb60_stats] then [bb_bb60] | |
| --DECLARE @Term varchar | |
| DECLARE @TermName nvarchar(100) | |
| DECLARE @CoursePK1 INT | |
| DECLARE @StatsMax datetime | |
| DECLARE @TimeMin datetime | |
| DECLARE @TimeMax datetime | |
| SET @TermName = 'Fall 2014' -- term name |