Skip to content

Instantly share code, notes, and snippets.

View anchetaWern's full-sized avatar
🏠
Working from home

Wern Ancheta anchetaWern

🏠
Working from home
View GitHub Profile
@anchetaWern
anchetaWern / devnews
Created March 30, 2015 00:22
devnews.sql
-- phpMyAdmin SQL Dump
-- version 4.0.10deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Mar 28, 2015 at 01:44 AM
-- Server version: 5.5.41-0ubuntu0.14.04.1
-- PHP Version: 5.5.9-1ubuntu4.6
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
@anchetaWern
anchetaWern / responsive-voice.js
Created May 16, 2015 09:44
responsive-voice.js
//Look for other responsivevoice instances
/*if (window.parent != null) {
var iframes = window.parent.document.getElementsByTagName('iframe');
for (var i = 0; i < iframes.length; i++) {
//iframes[i].style.width = "300px"
}
}*/
if (typeof responsiveVoice != 'undefined') {
console.log('ResponsiveVoice already loaded');
@anchetaWern
anchetaWern / speech-recognition.js
Created May 16, 2015 09:49
speech-recognition.js
var recognition;
function startRecognition() {
recognition = new webkitSpeechRecognition();
recognition.onstart = function(event) {
updateRec();
};
recognition.onresult = function(event) {
var text = "";
for (var i = event.resultIndex; i < event.results.length; ++i) {
@anchetaWern
anchetaWern / .htaccess
Created August 28, 2015 04:53
.htaccess
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
@anchetaWern
anchetaWern / Attendance-System.md
Last active April 21, 2016 10:55
Attendance System

#Attendance System

Create a web application that allows teachers to easily track the attendance of students. There are 2 types of users that can use the system: admin and teacher

the admin is responsible for:

  • creating teacher account
  • creating students
  • change email and password of his own account
  • logout
@anchetaWern
anchetaWern / video-uploader.md
Last active November 22, 2015 12:18
VideoUploader

#VideoUploader

Create an application that would allow a user to upload videos to Youtube. The uploaded videos should be searchable. There are 3 types of users that can use the system: admin, content providers & viewers.

The admin is responsible for:

  • creating accounts for uploaders

The uploader is responsible for:

@anchetaWern
anchetaWern / quiz-maker.md
Last active July 3, 2023 05:31
Quiz Maker

#Quiz Maker

Create a web application that allows a teacher to create a quiz. The quiz can then be taken by students. There are 3 types of users: admin, teacher, student. Of the 3 types, only the student doesn't have an account. The ID number is used to determine the student.

The admin is responsible for:

  • Creating account for teacher
  • Adding students

The teacher is responsible for:

@anchetaWern
anchetaWern / file-requester.md
Last active November 22, 2015 12:19
FileRequester

#FileRequester

Create an app that would allow the user to request files from users. There are 3 types of users: admin, teacher and student

the admin is responsible for:

  • creating teacher accounts
  • creating students

the teacher is responsible for:

-- phpMyAdmin SQL Dump
-- version 4.4.13.1deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Dec 10, 2015 at 12:31 PM
-- Server version: 5.6.27-0ubuntu1
-- PHP Version: 5.6.11-1ubuntu3.1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
@anchetaWern
anchetaWern / sp_store.sql
Created April 12, 2016 07:01
sp store database
-- phpMyAdmin SQL Dump
-- version 4.4.13.1deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Apr 12, 2016 at 03:01 PM
-- Server version: 5.6.28-0ubuntu0.15.10.1
-- PHP Version: 5.6.11-1ubuntu3.1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";