1. This course is good gauge of one's progress in learning to code. I skimmed through most of the course, even the advanced topics, with ease.
a, b, c = 10, 20, 30
from dotenv import load_dotenv, find_dotenv | |
from linkedin_api.clients.restli.client import RestliClient | |
import json | |
import os | |
import sys | |
""" | |
ACCESS_TOKEN must available either as a system variable or in .env in the same folder as this script | |
In order to generate the access token, you have to register a LinkedIn app. |
he: | |
devise: | |
confirmations: | |
confirmed: "חשבונך אושר בהצלחה. כעת הנך מחובר." | |
send_instructions: "בדקות הקרובות יגיע אליך אימייל עם הנחיות כיצד לאשר את הרשמתך." | |
send_paranoid_instructions: "אם חשבונך נמצא במסד הנתונים, תקבל בדקות הקרובות אימייל עם הנחיות אישור הרשמתך" | |
link: "לא קיבלת הנחיות לאישור ההרשמה?" | |
errors: | |
messages: | |
already_confirmed: "כבר אומת, אנא נסה להתחבר שוב" |
"***************************************************************************** | |
"" CPC NEOVIM CONFIGURATION | |
"" Maintainer: Alexander JK Garber | |
"***************************************************************************** | |
"***************************************************************************** | |
"" Vim-PLug core | |
"***************************************************************************** | |
let vimplug_exists=expand('~/.config/nvim/autoload/plug.vim') |
#!/bin/bash | |
echo "Setting up my required packages." | |
echo "Need sudo..." | |
sudo echo "Now I have sudo." | |
sudo pacman -Syu git xclip | |
git clone https://aur.archlinux.org/yay-git.git | |
cd ~/yay-git | |
makepkg -si |
# This bashrc will source files from any profilerc directories | |
# linked into users home. | |
# | |
# Unique configuration for different profiles should be placed | |
# in that profiles respective profilerc directory. | |
# | |
# For example, default will contain the directory .profilerc_default | |
# with any files that should be sourced within it. | |
# | |
for profilerc in $(ls -d ~/.profilerc_*/*); do |
call plug#begin('~/.vim/plugged') | |
" Declare the list of plugins. | |
Plug 'preservim/nerdtree' | |
Plug 'Xuyuanp/nerdtree-git-plugin' | |
Plug 'https://github.com/tiagofumo/vim-nerdtree-syntax-highlight.git' | |
Plug 'ryanoasis/vim-devicons' | |
Plug 'junegunn/fzf', { 'do': './install --bin' } | |
Plug 'junegunn/fzf.vim' |
#2. #print does not include a carriage return.
#3. Parallel variable assignment.
a = 10 b = 20 c = 30
var express = require('express'); | |
var app = express(); | |
var htmlController = require("/controllers/htmlController") | |
var apiController = require("/controllers/apiController") | |
var port = process.env.PORT || 1337; | |
app.use('/assets', express.static(__dirname + '/public')); |
html_file = ARGV[0] | |
css_file = "app/assets/stylesheets/css_output.css" | |
class_array = Array.new | |
open_html_file = File.readlines(html_file) | |
open_css_file = File.open(css_file, "w+") | |
open_html_file.each do |line| | |
search_string = /class="[a-z]*"/ |