Skip to content

Instantly share code, notes, and snippets.

View Zerg00s's full-sized avatar
🏠
Working from home

Denis Molodtsov Zerg00s

🏠
Working from home
View GitHub Profile
@Zerg00s
Zerg00s / gulpfile.js
Created November 13, 2016 19:51
default gulp task with prompt
var prompt = require("gulp-prompt");
// Promts you to choose a task
gulp.task('default', function() {
var taskNames = [];
for (var taskName in gulp.tasks) {
if (gulp.tasks.hasOwnProperty(taskName)) {
taskNames.push(taskName);
}
}
@Zerg00s
Zerg00s / controller.js
Created November 14, 2016 16:56
Move element inside Angular ng-repeat
// Move list items up or down or swap
$scope.moveItem = function (array, origin, destination) {
var temp = array[destination];
array[destination] = array[origin];
array[origin] = temp;
};
// Move list item Up
$scope.listItemUp = function (itemIndex, array) {
$scope.moveItem(array, itemIndex, itemIndex - 1);
#include <SPI.h>
#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
#include <Wire.h>
void setup()
{
Wire.begin();
Serial.begin(9600);
while (!Serial);
@Zerg00s
Zerg00s / webpack.config.js
Last active December 9, 2018 23:49
Webpack scss transpiling. minimum
const path = require('path');
const MiniCss = require('mini-css-extract-plugin');
module.exports = (env = {}, argv = {}) => {
const config = {
mode: argv.mode || 'development', // we default to development when no 'mode' arg is passed
// mode: argv.mode || 'production', // we default to development when no 'mode' arg is passed
entry: {
main: path.join(__dirname, 'styles', 'index.scss'),
@Zerg00s
Zerg00s / getFieldNames.js
Created December 20, 2018 03:40
Get all internal field names using JavaScript
async function GetFields(listTitle){
let data = await fetch(`${_spPageContextInfo.siteServerRelativeUrl}/_api/web/lists/GetByTitle('Users')/Fields?$filter=Hidden%20eq%20false`,
{
headers: {"Accept":"application/json;odata=verbose"}
});
let fields = await data.json();
console.log(fields.d.results.map(field=>`${field.Title} | ${field.InternalName}\n\r`).join("") );
}
@Zerg00s
Zerg00s / .eslintrc
Last active December 22, 2018 05:31
TSLint setup
{
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
@Zerg00s
Zerg00s / install.bat
Last active December 22, 2018 06:38
setup mocha and chai
$ npm install mocha chai ts-node -g
$ npm install --save-dev mocha chai ts-node @types/chai @types/mocha
Article: https://medium.com/@FizzyInTheHall/run-typescript-mocha-tests-in-visual-studio-code-58e62a173575
@Zerg00s
Zerg00s / App_Permissions_deployment.bat
Last active February 6, 2024 08:32
Register Azure AD App and Upload a certificate
@ECHO OFF
PowerShell.exe -Command "& '%~dpn0.ps1' -path '%~dp0'"
REM PAUSE
@Zerg00s
Zerg00s / ErrorBoundary.tsx
Created June 1, 2020 00:02
React Error Boundaries
import * as React from "react";
export default class ErrorBoundary extends React.Component<any,
{ hasError: boolean; error: any; errorInfo: any }>{
constructor(props) {
super(props);
this.state = { hasError: false, error: "", errorInfo: "" };
}
public componentDidCatch(error: any, errorInfo: any) {
@Zerg00s
Zerg00s / git logline
Created June 20, 2020 17:55
git logline pretty print
git config --global alias.logline "log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
$ git logline