- CLR via C# 9780735667457
- Refactoring 9780134757599
- The Practice Of Programming 9780201615869
- Everyware 9780321384010
- Simple And Usable 9780134777603
- C# In Depth 9781617294532
- Dependency Injection 9781617294730
- Design Patterns GOF 9780201633610
- The C Programming Language 9780131103627
- Learning Domain-Driven Design 9781098100131
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
2teams() { | |
NOW=$(date +"%Y-%m-%d_%H%M") | |
if [ ! -z $2 ] ; then | |
echo $NOW"_"$2.mp4 | |
ffmpeg -i $1 -codec copy $NOW"_"$2.mp4 | |
else | |
echo $NOW"_teamsvid".mp4 | |
ffmpeg -i $1 -codec copy $NOW"_teamsvideo".mp4 | |
fi | |
} |
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
__________________________________________ | |
| | | |
| Programming with PowerShell | | |
|________________________________________| | |
1. Introduction | |
2. Running PowerShell | |
3. PowerShell Variables | |
4. PowerShell Data Types | |
5. PowerShell Basic Operators |
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
GO | |
PRINT N'Dropping [HangFire].[FK_HangFire_State_Job]...'; | |
GO | |
ALTER TABLE [HangFire].[State] DROP CONSTRAINT [FK_HangFire_State_Job]; | |
GO | |
PRINT N'Dropping [HangFire].[FK_HangFire_JobParameter_Job]...'; | |
GO | |
ALTER TABLE [HangFire].[JobParameter] DROP CONSTRAINT [FK_HangFire_JobParameter_Job]; | |
GO | |
PRINT N'Dropping [HangFire].[Schema]...'; |
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
{ | |
"cmd": ["g++.exe", "-std=c++14", "-o", "$file_base_name", "$file", "&&", "start", "cmd", "/c", "$file_base_name & echo. & echo. & pause"], | |
"shell": true, | |
"selector": "source.c++" | |
} |
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 GfG{ | |
//1. build heap | |
//2. heap sort | |
//http://www.cs.toronto.edu/~krueger/cscB63h/w07/lectures/tut02.txt | |
void buildHeap(int arr[], int n){ | |
//base case: | |
if(n<1) return; | |
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 static IEnumerable<TFirst> ExceptBy<TFirst, TSecond>(this IEnumerable<TFirst> first, Func<TFirst, TSecond> mappingFunc, IEnumerable<TSecond> second) | |
{ | |
if (first == null) throw new ArgumentNullException(nameof(first)); | |
if (second == null) throw new ArgumentNullException(nameof(second)); | |
return ExceptByIterator(first, mappingFunc, second, null); | |
} | |
public static IEnumerable<TFirst> ExceptBy<TFirst, TSecond>(this IEnumerable<TFirst> first, Func<TFirst, TSecond> mappingFunc, IEnumerable<TSecond> second, IEqualityComparer<TSecond> comparer) | |
{ |
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
/// --- BIT Library --- /// | |
template<int SIZE, typename T = ll> | |
struct BIT{ | |
T data[SIZE+1]; | |
int n = SIZE; | |
BIT(){ | |
REP(i, n+1) data[i] = 0; | |
} |
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 GfG{ | |
//1. build heap | |
//2. heap sort | |
//http://www.cs.toronto.edu/~krueger/cscB63h/w07/lectures/tut02.txt | |
void buildHeap(int arr[], int n){ | |
//base case: | |
if(n<1) return; | |
NewerOlder