1 .Using wget
!wget http://your_domain/your_file.zip
- Mounting Google Drive locally
drive.mount(‘/content/gdrive’)
<?php | |
class MyDB extends SQLite3 | |
{ | |
function __construct() | |
{ | |
$this->open('test.db'); | |
} | |
} | |
$db = new MyDB(); | |
if(!$db){ |
<?php | |
class MyDB extends SQLite3 | |
{ | |
function __construct() | |
{ | |
$this->open('test.db'); | |
} | |
} | |
$db = new MyDB(); | |
if(!$db){ |
<?php | |
class MyDB extends SQLite3 | |
{ | |
function __construct() | |
{ | |
$this->open('test.db'); | |
} | |
} | |
$db = new MyDB(); | |
if(!$db){ |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>homebrew.mxcl.jenkins-lts</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/usr/local/opt/openjdk@11/bin/java</string> | |
<string>-Dmail.smtp.starttls.enable=true</string> |
package learnmavenone; | |
import org.springframework.context.annotation.Bean; | |
import org.springframework.context.annotation.Configuration; | |
import org.springframework.web.servlet.mvc.Controller; | |
import org.springframework.web.servlet.view.InternalResourceViewResolver; | |
@Configuration | |
public class ApplicationContextConfiguration { | |
def searchIndex(self,arr,target): | |
low,high=0,len(arr)-1 | |
while low<=high: | |
mid=low+int((high-low)/2) | |
if arr[mid][1]>target: | |
high=mid-1 | |
else: | |
low=mid+1 | |
return max(0,low-1) | |
1 .Using wget
!wget http://your_domain/your_file.zip
drive.mount(‘/content/gdrive’)