- Data Types
- Variables
- Functions
- Decision Making
- Loops
- Modules
http://simplyadvanced.net/blog/cheat-sheet-for-windows-command-prompt/
| /images/NASA-logosmall.gif | 2140 | |
|---|---|---|
| /images/MOSAIC-logosmall.gif | 1756 | |
| /images/USA-logosmall.gif | 1748 | |
| /images/WORLD-logosmall.gif | 1734 | |
| /images/ksclogo-medium.gif | 1727 | |
| /ksc.html | 1382 | |
| /images/KSC-logosmall.gif | 1294 | |
| / | 627 | |
| /history/apollo/images/apollo-logo1.gif | 606 | |
| /images/launch-logo.gif | 562 |
| import sys | |
| import getopt | |
| import csv | |
| import argparse | |
| def main(argv): | |
| args = getopt.getopt(argv, "") | |
| args = str(args[1][0]) | |
| print args | |
| def get_cnt(lVals): |
| require 'rails_helper' | |
| RSpec.describe TodosController, :type => :controller do | |
| context "GET index" do | |
| #context "POST create" do | |
| #context "GET show" do | |
| #context "PATCH update" do (or PUT update) | |
| #context "DELETE destroy" do | |
| #context "GET new" do |
| # This is a skeleton for testing models including examples of validations, callbacks, | |
| # scopes, instance & class methods, associations, and more. | |
| # Pick and choose what you want, as all models don't NEED to be tested at this depth. | |
| # | |
| # I'm always eager to hear new tips & suggestions as I'm still new to testing, | |
| # so if you have any, please share! | |
| # | |
| # @kyletcarlson | |
| # | |
| # This skeleton also assumes you're using the following gems: |
http://simplyadvanced.net/blog/cheat-sheet-for-windows-command-prompt/
| # Note – this is not a bash script (some of the steps require reboot) | |
| # I named it .sh just so Github does correct syntax highlighting. | |
| # | |
| # This is also available as an AMI in us-east-1 (virginia): ami-cf5028a5 | |
| # | |
| # The CUDA part is mostly based on this excellent blog post: | |
| # http://tleyden.github.io/blog/2014/10/25/cuda-6-dot-5-on-aws-gpu-instance-running-ubuntu-14-dot-04/ | |
| # Install various packages | |
| sudo apt-get update |
| from __future__ import absolute_import | |
| from __future__ import division | |
| from __future__ import print_function | |
| import os.path | |
| import re | |
| import sys | |
| import tarfile | |
| import numpy as np |
| var state_arr = new Array("Lagos", "Rivers", "FCT", "Abia", "Adamawa", "Akwa Ibom", "Anambra", "Bauchi", "Bayelsa", | |
| "Benue", "Borno", "Cross River", "Delta","Ebonyi", "Edo", "Ekiti", "Enugu", "Gombe", "Imo", "Jigawa", "Kaduna", "Kano","Katsina", "Kebbi", "Kogi", "Kwara", "Nasarawa", "Niger", "Ogun", "Ondo", "Osun", "Oyo", "Plateau", "Sokoto", "Taraba", "Yobe", "Zamfara"); |
| csv_text = File.read(Rails.root.join('lib', 'seeds', 'products.csv')) | |
| csv = CSV.parse(csv_text, :headers => true, :encoding => 'ISO-8859-1') | |
| csv.each do |row| | |
| t = Product.new | |
| t.id = row['id'] | |
| t.title = row['title'] | |
| t.brand = row['brand'] | |
| t.description = row['description'] | |
| t.main_image = row['picture'] | |
| t.condition = row['condition'] |
| url = "http://integrity.ng/index.php/units/browse" | |
| from bs4 import BeautifulSoup | |
| import requests | |
| import csv | |
| # Main Coding Sectio | |
| start = 1 | |
| with open("Units.csv", 'wb') as save: | |
| while True: | |
| try: |