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
#_preseed_V1 | |
#### Contents of the preconfiguration file (for bullseye) | |
### Localization | |
# Preseeding only locale sets language, country and locale. | |
d-i debian-installer/locale string en_US | |
# The values can also be preseeded individually for greater flexibility. | |
#d-i debian-installer/language string en | |
#d-i debian-installer/country string NL | |
#d-i debian-installer/locale string en_GB.UTF-8 |
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
<?xml version="1.0" encoding="utf-8"?> | |
<kaspi_catalog date="string" | |
xmlns="kaspiShopping" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="kaspiShopping http://kaspi.kz/kaspishopping.xsd"> | |
<company>ИП Казмадиярова</company> | |
<merchantid>6639009</merchantid> | |
<offers> | |
<offer sku="232130213"> | |
<model>Вечернее платье (розовый, размер 44)</model> |
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
const fetch = require('cross-fetch') | |
const fs = require('fs'); | |
const query = `query MyQuery($address: [String!], $currency: [String!]) { | |
ethereum(network: bsc_testnet) { | |
address(address: {in: $address}) { | |
address | |
balances(currency: {in: $currency}) { | |
currency { | |
address |
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
const fetch = require('cross-fetch') | |
const fs = require('fs'); | |
const query = ` | |
query{ | |
ethereum(network: bsc_testnet) { | |
transfers(sender: {is: "0x23e6b56b3874e53d43a065b2a5ebcceba2238635"}) { | |
sender { | |
address | |
} |
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
#include <stdlib.h> | |
#include <stdio.h> | |
#include <string.h> | |
#include "ringfifo.h" | |
#include "rtputils.h" | |
#include "rtspservice.h" | |
#define THIS_FILE "ringfifo.c" | |
#define NMAX 64 |
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
OpenSSL> speed | |
Doing md4 for 3s on 16 size blocks: 1633390 md4's in 2.99s | |
Doing md4 for 3s on 64 size blocks: 1250975 md4's in 3.01s | |
Doing md4 for 3s on 256 size blocks: 738045 md4's in 3.01s | |
Doing md4 for 3s on 1024 size blocks: 279316 md4's in 3.01s | |
Doing md4 for 3s on 8192 size blocks: 41080 md4's in 3.01s | |
Doing md5 for 3s on 16 size blocks: 1213206 md5's in 3.01s | |
Doing md5 for 3s on 64 size blocks: 934686 md5's in 3.01s | |
Doing md5 for 3s on 256 size blocks: 539583 md5's in 3.01s | |
Doing md5 for 3s on 1024 size blocks: 202547 md5's in 3.00s |
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 -ruN a/cfg_file.y b/cfg_file.y | |
--- a/cfg_file.y 2012-07-09 06:01:08.000000000 +0500 | |
+++ b/cfg_file.y 2020-04-30 11:23:43.019097012 +0500 | |
@@ -609,7 +609,7 @@ | |
} | |
/* Clear the VTUN_NAT_HACK flag which are not relevant to the current operation mode */ | |
-inline void clear_nat_hack_flags(int svr) | |
+extern inline void clear_nat_hack_flags(int svr) | |
{ |
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
#ifndef MODEL_H | |
#define MODEL_H | |
//#include "glad/glad.h" | |
#include <GL/glew.h> | |
#include "glm/glm.hpp" | |
#include "glm/gtc/matrix_transform.hpp" | |
#define STB_IMAGE_IMPLEMENTATION | |
#include "stb_image.h" |
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
.container | |
= render 'my/shared/progress', step: 2 | |
= render 'my/shared/profile_step', step: 'contact_data', active: false | |
= render 'my/shared/profile_step', step: 'passport_data', active: false | |
= render 'my/shared/profile_step', step: 'registration_address', active: false | |
= render 'my/shared/profile_step', step: 'residential_address', active: false | |
= render 'my/shared/profile_step', step: 'financial_status', active: false | |
= render 'my/shared/profile_step', step: 'additional_data', active: false | |
= render 'my/shared/profile_step', step: 'documents_photo', active: true | |
.row |
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
class User | |
attr_reader :status | |
def initialize | |
update_user_status UserStatus::NEW | |
end | |
def activate_user | |
if user_status == UserStatus::NEW | |
update_user_status UserStatus::ACTIVE |
NewerOlder