https://lukaszadam.com/illustrations
https://sapiens.ui8.net/
https://3dicons.co/
https://www.getillustrations.com/
https://ultima.storytale.io/
https://shapefest.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
node_modules | |
dist | |
.env* | |
vendor/ | |
/vendor | |
public/ | |
.git | |
**/.git | |
package-lock.json | |
composer.lock |
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 | |
openssl req -new -newkey rsa:2048 -nodes -out example_com.csr -keyout example_com.key -subj "/C=US/ST=California/L=Los Angeles/O=My Company Name/OU=IT/CN=example.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
<?php | |
namespace App\Http\Controllers; | |
use Illuminate\Http\Request; | |
class AttachmentController extends Controller | |
{ | |
public function store(Request $request) | |
{ |
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
<?php | |
<x-multi-select | |
model="some_public_property" | |
class="select-custom" | |
placeholderValue="Select all you want" | |
:options="[['label' => 'FOO', 'value' => 'foo'], ['label' => 'BAR', 'value' => 'bar']]" | |
/> |
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 fs = require('fs'); | |
const { Readable } = require('stream'); | |
const sharp = require('sharp'); | |
const svgToPng = (svgString) => { | |
return new Promise((resolve, reject) => { | |
const svgStream = new Readable(); | |
svgStream.push(svgString); | |
svgStream.push(null); | |
svgStream.pipe(sharp() |
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 | |
git log --format='%aN' | sort -u | while read name; do echo -en "$name\t"; git log --author="$name" --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\n", add, subs, loc }' -; done |
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
import { Controller, useForm } from 'react-hook-form' | |
import DatePicker from 'react-datepicker' | |
const App = () => { | |
const { control, register, handleSubmit } = useForm(); | |
const onSubmit = (data) => { | |
alert(JSON.stringify(data)); | |
}; |
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
ul.tree, ul.tree ul { | |
list-style: none; | |
margin: 0; | |
padding: 0; | |
} | |
ul.tree ul { | |
margin-left: 10px; | |
} | |
ul.tree li { | |
margin: 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
{ | |
"AF": { | |
"name": "Afghanistan", | |
"region": "Asia", | |
"timezones": { | |
"Asia\/Kabul": "+04:30" | |
}, | |
"iso": { | |
"alpha-2": "AF", | |
"alpha-3": "AFG", |
NewerOlder