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
| dependencies { | |
| compile fileTree(include: ['*.jar'], dir: 'libs') | |
| testCompile 'junit:junit:4.12' | |
| compile 'com.android.support:appcompat-v7:22.+' | |
| compile 'com.android.support:design:22.+' | |
| compile 'com.android.support:cardview-v7:22.+' | |
| compile 'com.android.support:recyclerview-v7:22.+' | |
| compile files('libs/ijkmediaplayer.jar') | |
| compile files('libs/pldroid-player-1.1.4.jar') | |
| compile project(':vitamio_library') |
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 com.source.aurora.loaders; | |
| import android.content.Context; | |
| import android.util.Log; | |
| import com.crashlytics.android.Crashlytics; | |
| import com.source.aurora.application.AsyncBaseLoader; | |
| import com.source.aurora.entities.response.ResponseMessage; | |
| import com.source.aurora.entities.stream.AuroraStream; | |
| import com.source.aurora.entities.streams.AuroraStreamCollection; |
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
| #i586 | |
| rpm -Uvh \-\-oldpackage http://ftp.altlinux.org/pub/distributions/archive/p7/date/2016/02/13/files/i586/RPMS/libnss-3.20.1-alt0.M70P.1.i586.rpm http://ftp.altlinux.org/pub/distributions/archive/p7/date/2016/02/13/files/i586/RPMS/nss-utils-3.20.1-alt0.M70P.1.i586.rpm | |
| #x86-64 | |
| rpm -Uvh \-\-oldpackage http://ftp.altlinux.org/pub/distributions/archive/p7/date/2016/02/13/files/x86_64/RPMS/libnss-3.20.1-alt0.M70P.1.x86_64.rpm http://ftp.altlinux.org/pub/distributions/archive/p7/date/2016/02/13/files/x86_64/RPMS/nss-utils-3.20.1-alt0.M70P.1.x86_64.rpm |
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
| #! /bin/bash | |
| # | |
| # Diffusion youtube avec ffmpeg | |
| # Configurer youtube avec une résolution 720p. La vidéo n'est pas scalée. | |
| VBR="2500k" # Bitrate de la vidéo en sortie | |
| FPS="30" # FPS de la vidéo en sortie | |
| QUAL="medium" # Preset de qualité FFMPEG | |
| YOUTUBE_URL="rtmp://a.rtmp.youtube.com/live2" # URL de base RTMP youtube |
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 { | |
| import flash.display.MovieClip; | |
| import flash.events.Event; | |
| public class Snow extends MovieClip { | |
| private var speed: Number; | |
| private var step: Number; | |
| public function Snow () { | |
| step = 0; | |
| speed = Math.random() * 5 + 2; |
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 { | |
| import flash.display.MovieClip; | |
| import flash.events.Event; | |
| public class Snow extends MovieClip { | |
| private var speed: Number; | |
| public function Snow () { | |
| speed = Math.random() * 5 + 2; | |
| this. addEventListener (Event.ENTER_FRAME, onEnter); | |
| } |
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
| #!/bin/bash | |
| if [ "$1" ]; then | |
| store="$1" | |
| else | |
| store=MCDONALDS | |
| fi | |
| if [ $2 ]; then | |
| StatFile=$2 | |
| 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
| Const FILL_MACROS_DIR As String = "D:\2015\macro\" | |
| Const FILL_MACROS_DOC As String = "D:\2015\macro\Template\01_zapros_dokumentatsia_O_Fkhd.doc" | |
| Sub MyReplace() | |
| Dim pathh As String | |
| Dim pathhi As String | |
| Dim oCell As Integer | |
| Dim from_text As String, to_text As String | |
| Dim WA As Object |
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 FILL_MACROS_DIR As String = "D:\2015\macro\" | |
| Const FILL_MACROS_OUT As String = FILL_MACROS_DIR & "Result\" | |
| Const MACROS_TEMPLATE As String = FILL_MACROS_DIR & "Template\" | |
| '' Copy files from FILL_MACROS_DIR and replace words by excel cells | |
| Sub MyReplace() | |
| On Error Resume Next | |
| MkDir (FILL_MACROS_OUT) |
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 FILL_MACROS_DIR As String = "D:\2015\macro\" | |
| Const FILL_MACROS_DOC As String = "D:\2015\macro\Template\01_zapros_dokumentatsia_O_Fkhd.doc" | |
| Const DEFAULT_COMP_NAME As String = "ÎÀÎ ""Íîâàÿ ÝÐÀ""" | |
| Const DEFAULT_DIR_NAME As String = "ã-íó Óðóñîâó Ð.À." | |
| Const DEFAULT_DATE_NAME As String = """20"" ôåâðàëÿ 2015 ãîäà" | |
| Sub MyReplace() | |
| Dim pathh As String | |
| Dim pathhi As String |