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
import requests | |
for i in range(558798): | |
pic_url = "https://wallpaperaccess.com//full/" + str(i + 1) + ".jpg" | |
with open("pic/" + str(i) + ".jpg", 'wb') as handle: | |
response = requests.get(pic_url, stream=True) | |
if not response.ok: | |
print (str(response)) | |
else: |
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
import java.util.Objects; | |
class List { | |
private static int size; | |
private ListElement head; | |
// appends the specified element to the end of this list. | |
public void append(String data) { |
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
using System; | |
using System.IO; | |
using System.Text; | |
public class Program | |
{ | |
static void Main(string[] args) | |
{ | |
// Имена файлов для ввода и вывода данных | |
string fNameIn, fNameOut; |
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
<section class="footer"> | |
<div class="footer-wrapp"> | |
<div class="footer-map" id="map"></div> | |
<div class="footer-main"> | |
<div class="container footer-main__bg"> | |
<div class="row"> | |
<div class="col-lg-12 "> | |
<div class="media "> | |
<img class="mr-3 " src="https://cdn1.iconfinder.com/data/icons/hawcons/32/699332-icon-6-mail-envelope-closed-128.png" alt=""> | |
<div class="media-body"> |
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
<section> | |
<div class="block"> | |
<div class="container"> | |
<div class="row align-items-center"> | |
<div class="col-4"> | |
<div class="bio-info"> | |
<div class="modern-title"> <i>About Me</i> <h3>Personal Information</h3> </div> | |
<ul class="info-list"> | |
<li><i>Name</i> <span>Mark Willams</span></li> | |
<li><i>Age</i> <span>25</span></li> |
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
public class Key { | |
public static void main(String[] args) { | |
System.out.println("\uD834\uDD1E"); | |
} | |
} |
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
public class Quadrat_problem { | |
static int berechnenQuadrat (int num){ | |
return (int) Math.pow(num, 2); | |
} | |
static void ausgabe (int num) { | |
for (int i = 1; i <= num; i++) | |
System.out.println("Quadrat zahl von " + i + " = " + berechnenQuadrat(i)); | |
} | |
public static void main(String[] args) { | |
ausgabe(100); |
NewerOlder