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
Maintainers: | |
ivarwithoutbones: _1password, _1password, _1password | |
joelburget: _1password, _1password, _1password | |
marsam: _1password, _1password, _1password |
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
x86_64-darwin python37Packages.osmnx | |
x86_64-linux python37Packages.osmnx | |
i686-linux python37Packages.geopandas | |
x86_64-darwin python37Packages.geopandas | |
x86_64-darwin python38Packages.geopandas | |
aarch64-linux python38Packages.osmnx | |
aarch64-linux python37Packages.geopandas | |
i686-linux python38Packages.geopandas | |
x86_64-linux python38Packages.geopandas | |
x86_64-linux python38Packages.osmnx |
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
#!/usr/bin/env python | |
# coding: utf-8 | |
# ## Module 2 :- Assignment (Part B) - Neil Chapman (matriculation number = 40416167 ) | |
# ### (Models Learnt from Course) | |
# ### Import required libraries | |
import json | |
from pprint import pprint | |
import pandas as pd |
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
U-Boot 1.1.3 (Feb 26 2014 - 12:49:16) | |
Board: Ralink APSoC DRAM: 32 MB | |
enable ephy clock...done. rf reg 29 = 5 | |
SSC disabled. | |
spi_wait_nsec: 29 | |
spi device id: c2 20 16 c2 20 (2016c220) | |
find flash: MX25L3205D |
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
def map_test_cases_traditional_way(test_case: str): | |
print("The traditional calling...") | |
# Traditional if..elif..elif in Python | |
if test_case == 'Test_001': | |
test_function_001() | |
elif test_case == 'Test_002': | |
test_function_002() | |
elif test_case == 'Test_003': | |
test_function_003() | |
elif test_case == 'Test_004': |
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
diff --git a/applications/ecallmgr/src/ecallmgr_originate.erl b/applications/ecallmgr/src/ecallmgr_originate.erl | |
index efb9dfd..140fe60 100644 | |
--- a/applications/ecallmgr/src/ecallmgr_originate.erl | |
+++ b/applications/ecallmgr/src/ecallmgr_originate.erl | |
@@ -217,6 +217,7 @@ handle_cast({'build_originate_args'}, #state{originate_req=JObj | |
,action = ?ORIGINATE_PARK | |
,fetch_id=FetchId | |
,dialstrings='undefined' | |
+ ,control_pid = CtrlPid | |
}=State) -> |
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
def topological_sort(graph): | |
queue = Queue() | |
indegree_map = {} | |
for i in range(graph.num_vertices): | |
indegree_map[i] = graph.get_indegree(i) | |
#Add root node to the queue | |
if indegree_map[i] == 0: |
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
kotlin { | |
// ... | |
sourceSets { | |
// ... | |
val jvmTest by getting { | |
dependencies { | |
implementation(kotlin("test")) | |
implementation(kotlin("test-junit")) | |
} | |
} |
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
kotlin { | |
// ... | |
sourceSets { | |
// ... | |
val commonTest by getting { | |
dependencies { | |
implementation(kotlin("test-common")) | |
implementation(kotlin("test-annotations-common")) | |
} | |
} |
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
{ | |
"basics": { | |
"name": "Saxon Douglass", | |
"label": "Medical Officer", | |
"image": "https://secure.gravatar.com/avatar/32a26bc29a5369776b109f416d6f65dd", | |
"summary": "I am a post graduate year 5 medical officer who was passed the written examination for Basic Physician Training and now aspires to develop further skills in critical care.", | |
"website": "http://saxondouglass.com", | |
"email": "saxon@saxondouglass.com", | |
"location": { | |
"city": "Adelaide", |
NewerOlder