Show spoilers
You can use the <details> and <summary> tags inside GH issues and pull requests.
puts "That is awesome".upcase| // ==UserScript== | |
| // @name GitHub Actions - Light theme | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2024-06-23 | |
| // @description Remove data-dark-theme attributes from GitHub Actions console | |
| // @author masayoshi haruta | |
| // @match https://github.com/*/*/actions/runs/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=github.com | |
| // @grant none | |
| // ==/UserScript== |
| { | |
| "name": "Thinkific", | |
| "description": "Thinkific Architecture", | |
| "elements": [ | |
| { | |
| "tag": "Element", | |
| "shape": "RoundedBox" | |
| }, | |
| { | |
| "tag": "Software System", |
You can use the <details> and <summary> tags inside GH issues and pull requests.
puts "That is awesome".upcase| javascript:var firebug=document.createElement('script');firebug.setAttribute('src','http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js');document.body.appendChild(firebug);(function(){if(window.firebug.version){firebug.init();}else{setTimeout(arguments.callee);}})();void(firebug); |
| ffmpeg -f avfoundation -i ":0" -t 200 audiocapture.mp3 |
Várias pessoas me mandam mensagens perguntando sobre o curso Web and Mobile App Design and Development da Langara. Gente da Rússia, da Índia e de todo lado então decidi criar esse FAQ já que as perguntas são as mesmas.
TL,DR: nem tudo é um mar de rosas mas isso não é um problema exclusivo desse curso ou dessa instituição.
DISCLAIMER: antes de fazer esse curso eu já trabalhava como desenvolvedor web portanto minha opinião é de uma pessoa com mais experiência do mundo real do que muitos professores (não só da Langara).
DISCLAIMER 2: fui aluno da primeira turma portanto minha turma foi beta. E obviamente betas não funcionam bem (não só da Langara).
| # initialization file (not found) |
| var App = App || {}; | |
| App.About = (function(document) { | |
| 'use strict'; | |
| var init = function() { | |
| console.log('about init called()'); | |
| }; |
| require_relative './time_calculation.rb' | |
| distance = Time.new - Time.parse('2016-1-1') | |
| puts TimeCalculation.humanize(distance)+"\r" | |
| Date_of_birth = '1888-2-15' | |
| 3.times do | |
| distance = Time.new - Time.parse(Date_of_birth) | |
| puts TimeCalculation.humanize(distance, false)+"\r" | |
| sleep 1 |