basic CSS template for A4 print
Forked from rafaelcastrocouto's Pen A4 CSS page template.
A Pen by Dermot McGuire on CodePen.
| <% | |
| '// Usage: | |
| '// | |
| '// dim l : set l = new logger | |
| '// l.log("Hello")("World") | |
| '// l.includeTimetamp = false | |
| '// l("Lorem ipsum") | |
| '// l.setLogFile("c:\temp\log_2.log").log("This is a new log!") | |
| '// set l = nothing |
| <?xml version="1.0"?> | |
| <!-- | |
| For more information on how to configure your ASP.NET application, please visit | |
| http://go.microsoft.com/fwlink/?LinkId=169433 | |
| --> | |
| <configuration> | |
| <!-- | |
| For a description of web.config changes for .NET 4.5 see http://go.microsoft.com/fwlink/?LinkId=235367. | |
| The following attributes can be set on the <httpRuntime> tag. |
basic CSS template for A4 print
Forked from rafaelcastrocouto's Pen A4 CSS page template.
A Pen by Dermot McGuire on CodePen.
| <?xml version="1.0"?> | |
| <configuration> | |
| <system.webServer> | |
| <staticContent> | |
| <mimeMap fileExtension=".vtt" mimeType="text/vtt" /> | |
| <mimeMap fileExtension=".srt" mimeType="text/srt" /> | |
| <mimeMap fileExtension=".aac" mimeType="audio/aac" /> | |
| <mimeMap fileExtension=".oga" mimeType="audio/ogg" /> | |
| <mimeMap fileExtension=".mp4" mimeType="video/mp4" /> | |
| <mimeMap fileExtension=".webm" mimeType="video/webm" /> |
| INSERT INTO categories (parent_id, name, id) VALUES (null, 'Bavullar ve Çantalar', 5181); | |
| INSERT INTO categories (parent_id, name, id) VALUES (5181, 'Alışveriş Çantaları', 5608); | |
| INSERT INTO categories (parent_id, name, id) VALUES (5181, 'Bavul Aksesuarları', 110); | |
| INSERT INTO categories (parent_id, name, id) VALUES (110, 'Bagaj Rafları ve Sehpaları', 499691); | |
| INSERT INTO categories (parent_id, name, id) VALUES (110, 'Bavul Düzenleyicileri', 5620); | |
| INSERT INTO categories (parent_id, name, id) VALUES (110, 'Bavul Etiketleri', 5651); | |
| INSERT INTO categories (parent_id, name, id) VALUES (110, 'Bavul Kayışları', 5652); | |
| INSERT INTO categories (parent_id, name, id) VALUES (110, 'Bavul Örtüleri', 7521); | |
| INSERT INTO categories (parent_id, name, id) VALUES (110, 'Korumalı Kap Düzenleyicileri ve Bölme Ekleri', 503014); | |
| INSERT INTO categories (parent_id, name, id) VALUES (110, 'Seyahat Keseleri', 5650); |
As a freelancer, I build a lot of web sites. That's a lot of code changes to track. Thankfully, a Git-enabled workflow with proper branching makes short work of project tracking. I can easily see development features in branches as well as a snapshot of the sites' production code. A nice addition to that workflow is that ability to use Git to push updates to any of the various sites I work on while committing changes.
| let hotspot=3; | |
| function getlookat(){ | |
| var krpano = document.getElementById("krpanoSWFObject"); | |
| if (krpano && krpano.get){ | |
| krpano.call("screentosphere(mouse.x, mouse.y, mouseath, mouseatv)"); | |
| var mouse_at_h = krpano.get("mouseath"); | |
| var mouse_at_v = krpano.get("mouseatv"); | |
| let spotname = 'spot_'+hotspot; | |
| let $panoCode = "addhotspot("+spotname+");" |
| var scriptAdded = false; | |
| function TawkRun(RunCode){ | |
| console.log('RunCode:', RunCode); | |
| if(scriptAdded==true && window.Tawk_API !== undefined && typeof window.Tawk_API.hideWidget === 'function'){ | |
| window.Tawk_API.hideWidget(); | |
| } | |
| const scripts = document.getElementsByTagName('script'); | |
| for (let i = 0; i < scripts.length; i++) { |
| <% | |
| ' **************************************************************************** | |
| ' Sub: GetUtcOffsetMinutes | |
| ' Description: Gets the number of minutes between local time and UTC. | |
| ' | |
| ' Params: None | |
| ' **************************************************************************** | |
| Function GetUtcOffsetMinutes() |
| dequeue() { | |
| if (this.workingOnPromise) { | |
| return false; | |
| } | |
| const item = this.queue.shift(); | |
| if (!item) { | |
| return false; | |
| } | |
| try { | |
| this.workingOnPromise = true; |