$ docker run
$ docker create
$ docker run -a
| #!/usr/bin/env bash | |
| # Use this one-liner to produce a JSON literal from the Git log: | |
| git log \ | |
| --pretty=format:'{%n "commit": "%H",%n "author": "%aN <%aE>",%n "date": "%ad",%n "message": "%f"%n},' \ | |
| $@ | \ | |
| perl -pe 'BEGIN{print "["}; END{print "]\n"}' | \ | |
| perl -pe 's/},]/}]/' |
| function imageToBase64(img) | |
| { | |
| var canvas, ctx, dataURL, base64; | |
| canvas = document.createElement("canvas"); | |
| ctx = canvas.getContext("2d"); | |
| canvas.width = img.width; | |
| canvas.height = img.height; | |
| ctx.drawImage(img, 0, 0); | |
| dataURL = canvas.toDataURL("image/png"); |
| Instalar Windows 10 | |
| $ sudo woeusb --tgt-fs NTFS -d /path/of/iso /path/of/dev/usb |
| # Encuentras el idVendor y el idProduct haciendo | |
| cat /proc/bus/input/devices | |
| # Despues de guardar hacer como root (sin necesidad de reboot) | |
| udevadm control --reload-rules && udevadm trigger | |
| # Ubicaciรณn | |
| # /etc/udev/rules.d/80-touchscreen.rules | |
| SUBSYSTEM=="usb", ATTRS{idVendor}=="04f3", ATTRS{idProduct}=="20d0", ATTR{authorized}="0" |
| 1) Instalar | |
| apt-get install xscreensaver-data-extra xscreensaver-gl-extra | |
| 2) ir a | |
| cd /usr/share/applications/screensavers | |
| 3) Cambiar "OnlyShowIn=GNOME;" por "OnlyShowIn=GNOME;MATE;" |
Ok. I'm going to list off some ideas for projects. You will have to determine if any particular idea is good enough to include in a portfolio. These aren't creative ideas. They likely already exist. Some are way too advanced while others are simplistic.
I will recommend to post any project you make to github and make a github project page for it. Explain in as much detail as possible how you made it, how it can be improved etc. Document it.
If you pick an advanced idea, setup a development roadmap and follow it. This will show some project management skills.
Another piece of advice for those who are design challenged. Use different front end frameworks and use different themes for those frameworks to provide appealing designs without looking like yet another bootstrap site.
| ^([A-Zร&]{3,4}) ?(?:- ?)?(\d{2}(?:0[1-9]|1[0-2])(?:0[1-9]|[12]\d|3[01])) ?(?:- ?)?([A-Z\d]{2})([A\d])$ |
EMOJI CHEAT SHEET
Emoji emoticons listed on this page are supported on Campfire, GitHub, Basecamp, Redbooth, Trac, Flowdock, Sprint.ly, Kandan, Textbox.io, Kippt, Redmine, JabbR, Trello, Hall, plug.dj, Qiita, Zendesk, Ruby China, Grove, Idobata, NodeBB Forums, Slack, Streamup, OrganisedMinds, Hackpad, Cryptbin, Kato, Reportedly, Cheerful Ghost, IRCCloud, Dashcube, MyVideoGameList, Subrosa, Sococo, Quip, And Bang, Bonusly, Discourse, Ello, and Twemoji Awesome. However some of the emoji codes are not super easy to remember, so here is a little cheat sheet. โ Got flash enabled? Click the emoji code and it will be copied to your clipboard.
People
๐
| let _peticionesArchivos = []; | |
| postData.archivos.forEach(archivo => { | |
| let formData = new FormData(); | |
| formData.append("comprobante", archivo["$file"]); | |
| // Encolamos peticiones en lista | |
| _peticionesArchivos.push( | |
| axios.post("/archivos", formData, { | |
| headers: { | |
| "Content-Type": "multipart/form-data" |