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
// DIFFUSE LIGHT | |
float4x4 wvp : WorldViewProjection; | |
float4x4 world : World; | |
float AmbientIntensity = 0.01; | |
float4 AmbientColor : AMBIENT = float4(1,1,1,1); | |
float3 LightDirection : Direction = float3(100,-100,100); |
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
Gerb. John Pankov! | |
Naujo pasto serverio duomenys: | |
POP3 server: mail.ssc.lt | |
IMAP server: mail.ssc.lt | |
SMTP server: mail.ssc.lt (autentifikacija butina!) | |
Jusu pasto dezutes duomenys: | |
Username: [email protected] | |
Password: VJpWPRm7Hw |
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 UnityEngine; | |
using System.Collections; | |
using System.Net; | |
using System.IO; | |
using System; | |
using System.Threading; | |
public class GamePub : MonoBehaviour | |
{ | |
public const string BASE_URI = "http://pub.mobilwerx.com/"; |
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
1. Программа должна брать наименования товаров с их ценами из ..... и сравнивать их с ценами этих же товаров на shop.by | |
2. Мой магазин, наверное, стоит исключить из отображения в результатах (но не поиска), т.к. он тоже выбивается через поисковую систему shop.by | |
3. Программа должна показывать результаты только по тем товарам, которые “есть в наличии/на складе” | |
4. Сравнение стоимости товаров должно идти по бел рублям, а не по $. | |
5. В случае выявления более низкой цены на какую-либо единицу товара в поисковой системе shop.by, чем в моем интернет магазине (rublik.shop.by), программа должна выдавать окошко результатов сканирования. | |
6. Окошко должно представлять из себя таблицу с колонками: наименование товара, цена, ссылка на страницу товара. В случае одинаковой цены с моим магазином строку выделять желтым, в случае обнаружения более низкой цены – красным. Размер окошка мне нужно будет изменять под себя (сделать так, чтобы я мог его растягивать и т.д.). Последний размер окна должен сохраняться. При следующем его |
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
64 hex bytes; SHA512? | |
no ascii/utf8/utf32 text inside | |
no filetype magic bytes found | |
0baac7fd32273cfefd9b6e10e46d52bc16f9a9a70fb3898ac1bb54430eace490b73ce43748daa7130546b62ba9e5559a110ec28fcf4445f98c7d07269122b934 |
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
String.prototype.template = function (data) { | |
var r = this; | |
for (var key in data) | |
r = r.replace('$' + key, (data[key] != undefined) ? data[key] : ''); | |
return r; | |
}; | |
var Schedule = { | |
_data:null, |
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"?> | |
<beans xmlns="http://www.springframework.org/schema/beans" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:context="http://www.springframework.org/schema/context" | |
xmlns:p="http://www.springframework.org/schema/p" | |
xmlns:tx="http://www.springframework.org/schema/tx" | |
xsi:schemaLocation="http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd | |
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd | |
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> |
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
[ERROR] Failed to execute goal on project FKSiS_schedule: Could not resolve dependencies for project by.bsuir.fksis.base:FKSiS_schedule:war:1.0-SNAPSH | |
OT: Could not find artifact by.bsuir.fksis.base:FKSiS_mobile_auth:jar:1.0-SNAPSHOT -> [Help 1] | |
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal on project FKSiS_schedule: Could not resolve dependencies for project b | |
y.bsuir.fksis.base:FKSiS_schedule:war:1.0-SNAPSHOT: Could not find artifact by.bsuir.fksis.base:FKSiS_mobile_auth:jar:1.0-SNAPSHOT | |
at org.apache.maven.lifecycle.internal.LifecycleDependencyResolver.getDependencies(LifecycleDependencyResolver.java:196) | |
at org.apache.maven.lifecycle.internal.LifecycleDependencyResolver.resolveProjectDependencies(LifecycleDependencyResolver.java:108) | |
at org.apache.maven.lifecycle.internal.MojoExecutor.ensureDependenciesAreResolved(MojoExecutor.java:258) | |
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:201) | |
at org.apache.m |
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
package fksis.domain.entities; | |
import javax.persistence.*; | |
@Entity | |
@Table(name = "CLASS", schema = "MAIN") | |
public class ScheduledClass implements java.io.Serializable { | |
private static final long serialVersionUID = 1L; | |
private long id; |
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"?> | |
<web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> | |
<display-name>MessagingPortlets</display-name> | |
<welcome-file-list> | |
<welcome-file>index.html</welcome-file> | |
<welcome-file>index.htm</welcome-file> | |
<welcome-file>index.jsp</welcome-file> | |
<welcome-file>default.html</welcome-file> | |
<welcome-file>default.htm</welcome-file> | |
<welcome-file>default.jsp</welcome-file> |