This file contains 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
// change paths based on your django configuration | |
const { series, parallel } = require('gulp'); | |
const gulp = require("gulp"); | |
var rename = require("gulp-rename"); | |
var concat = require("gulp-concat"); | |
const cleanCSS = require('gulp-clean-css'); | |
const minify = require('gulp-minify'); | |
const handlebars = require('gulp-handlebars'); | |
var wrap = require('gulp-wrap'); | |
var browserSync = require('browser-sync').create(); |
This file contains 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
/* change paths based on your project */ | |
const { parallel, src, dest, watch, series } = require('gulp'); | |
const gulp = require("gulp"); | |
let rename = require("gulp-rename"); | |
const cleanCSS = require('gulp-clean-css'); | |
const minify = require('gulp-minify'); | |
let wrap = require('gulp-wrap'); | |
let declare = require('gulp-declare'); |
This file contains 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
<!DOCTYPE html> | |
<html lang="en" dir="ltr"> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> | |
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> | |
<script src="https://cdn.jsdelivr.net/jquery.validation/1.16.0/jquery.validate.min.js"></script> | |
<script src="https://cdn.jsdelivr.net/jquery.validation/1.16.0/additional-methods.min.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script> |
This file contains 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 AjaxListMixin: | |
def get(self, request, *args, **kwargs): | |
self.object_list = self.get_queryset() | |
if request.is_ajax(): | |
data = serializers.serialize("json", self.object_list) | |
return JsonResponse(data, safe=False) | |
context = self.get_context_data() | |
return self.render_to_response(context) | |
This file contains 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
<!DOCTYPE html> | |
<html lang="en" dir="ltr"> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/handlebars@latest/dist/handlebars.js"></script> | |
<script type="text/javascript"> | |
'use strict' | |
$(document).ready(function(){ |
This file contains 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
import json | |
data = [ | |
{ | |
'activity': 'a', | |
"duration": 3, | |
"predecessors": [] | |
}, | |
{ | |
'activity': 'b', | |
"duration": 4, |
This file contains 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
<!DOCTYPE html> | |
<html lang="en" dir="ltr"> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<style media="screen"> | |
.form_img { | |
width:300px; | |
height:300px; | |
padding:2px; |
This file contains 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/sh | |
cd $HOME; | |
PROJECT_NAME=$1; | |
PROJECT_DIR=$HOME/$PROJECT_NAME | |
VENV='env' | |
USER=`whoami` | |
echo $PROJECT_NAME; | |
mkdir $PROJECT_NAME; | |
cd $PROJECT_NAME; | |
python3 -m venv env; |
NewerOlder