- components of a typical web application
- infrastructure:
- what is devops?
- what is cloud?
- benefits of being on the cloud:
- time to market
- elasticity
- reduced costs
This file contains 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
;;; 25 | |
(= (filter #(= (mod % 2) 1) #{1 2 3 4 5}) '(1 3 5)) | |
(= (filter #(= (mod % 2) 1) [4 2 1 6]) '(1)) | |
(= (filter #(= (mod % 2) 1) [2 2 4 6]) '()) | |
(= (filter #(= (mod % 2) 1) [1 1 1 3]) '(1 1 1 3)) | |
;;; 24 | |
(= (reduce (fn [x y] (+ x y)) [1 2 3]) 6) | |
(= (reduce (fn [x y] (+ x y)) (list 0 -2 5 5)) 8) | |
(= (reduce (fn [x y] (+ x y)) #{4 2 1}) 7) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
1) Home + Main website: - http://twinsinfotech.com/ibluebottle/ | |
2) Demo Profile: http://twinsinfotech.com/ibluebottle/demo_profile.html | |
3) Our members: http://twinsinfotech.com/ibluebottle/our_members.html | |
4) Sign Up | |
http://twinsinfotech.com/ibluebottle/index_signup_step_2.html | |
http://twinsinfotech.com/ibluebottle/index_signup_step_3.html | |
http://twinsinfotech.com/ibluebottle/index_signup_step_4.html | |
http://twinsinfotech.com/ibluebottle/index_signup_step_5.html | |
http://twinsinfotech.com/ibluebottle/index_signup_step_end.html |
This file contains 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
# zoomer_sentence_reversor.rb | |
def sentence_reversor(str=nil) | |
return "ERROR: Pass-in a string to reverse as an argument" if str.nil? | |
str.split.reverse.join(" ") | |
end | |
# puts sentence_reversor(ARGV[0]) | |
# zoomer_sentence_reversor_test.rb | |
require 'test/unit' |
This file contains 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
{"lastUpload":"2019-03-18T11:30:21.740Z","extensionVersion":"v3.2.7"} |
This file contains 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
3.9.10 |
This file contains 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
require_relative "funcs" | |
messages = get_commit_messages() | |
llm = init_llm() | |
client = init_vector_search_client(llm) | |
load_documents(client, messages) | |
query(client, "Which commits mention terraform modules?") |