Configure your Provisioning settings for the Namely/Okta SCIM Integration as follows:
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
var PranaSnippet = { | |
triggerOn: false, | |
alreadyTriggered: false, | |
currentlyInTriggerArea: false, | |
Model: {}, | |
Controller: {}, | |
View: {} | |
} |
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
♥ sudo lsof -i:80 | |
Password: | |
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME | |
httpd 822 root 5u IPv6 0xa2d943d26f90cbaf 0t0 TCP *:http (LISTEN) | |
httpd 826 _www 5u IPv6 0xa2d943d26f90cbaf 0t0 TCP *:http (LISTEN) | |
httpd 858 _www 5u IPv6 0xa2d943d26f90cbaf 0t0 TCP *:http (LISTEN) | |
httpd 859 _www 5u IPv6 0xa2d943d26f90cbaf 0t0 TCP *:http (LISTEN) | |
httpd 860 _www 5u IPv6 0xa2d943d26f90cbaf 0t0 TCP *:http (LISTEN) | |
Google 1743 myusername 234u IPv4 0xa2d943d273b69ff7 0t0 TCP 192.168.101.110:61990->a23-45-65-19.deploy.static.akamaitechnologies.com:http (ESTABLISHED) |
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
<Directory "/Users/samuelowens/Development/"> | |
Options Indexes MultiViews | |
AllowOverride None | |
Order allow,deny | |
Allow from all | |
</Directory> |
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
# | |
# This is the main Apache HTTP server configuration file. It contains the | |
# configuration directives that give the server its instructions. | |
# See <URL:http://httpd.apache.org/docs/2.2> for detailed information. | |
# In particular, see | |
# <URL:http://httpd.apache.org/docs/2.2/mod/directives.html> | |
# for a discussion of each configuration directive. | |
# | |
# Do NOT simply read the instructions in here without understanding | |
# what they do. They're here only as hints or reminders. If you are unsure |
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
Users | |
Name(text_field) | |
Permissions(integer) | |
GitHub_id(text_field) | |
Issues | |
Description(text_field)[character limited] | |
Resolved(boolean) | |
user_id | |
timestamp |
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
# ----------------------- # | |
# Main Configs # | |
# ----------------------- # | |
url: http://samueldowens.github.io | |
title: Traversing the Internets | |
subtitle: Web Development in NYC | |
author: Samuel Owens | |
simple_search: http://google.com/search | |
description: |
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
# # config.ru | |
require 'sinatra' | |
get '/' do | |
"Hello Sinatra!" | |
end | |
get '/hello/:name' do |n| | |
"Hello #{n}!" |
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
class Database | |
@@db = SQLite3::Database.new('articles.db') | |
@@db.execute("CREATE TABLE if NOT EXISTS articles(id INTEGER PRIMARY KEY ASC, title TEXT UNIQUE, url TEXT, parent_url TEXT, points INTEGER);") | |
def self.insert(array) | |
array.each do |article| | |
sql = "REPLACE INTO articles(title, url, parent_url, points) VALUES (?,?,?,?)" | |
@@db.execute(sql, article.title, article.url, article.parent_url, article.points) | |
end |
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
#get list of links to crawl | |
require 'nokogiri' | |
require 'open-uri' | |
require 'pry' | |
require 'sqlite3' | |
main_page = Nokogiri::HTML(open('http://students.flatironschool.com/')) | |
students_list = main_page.css('.home-blog ul') | |
student_list_item = students_list.css('.blog-thumb a') |
NewerOlder