-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy-policy.html
820 lines (563 loc) · 33.5 KB
/
privacy-policy.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
<!-- Base Layout Start -->
<!DOCTYPE html>
<html lang="en">
<!-- HEAD Start -->
<head>
<!-- Force HTTPS Start -->
<script>
// Don't force http when serving the website locally
if (!(window.location.host.startsWith("127.0.0.1")) && (window.location.protocol != "https:"))
window.location.protocol = "https";
</script>
<!-- Force HTTPS End -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Blog and website of z3nth10n, blogging mainly for tech.">
<meta name="author" content="z3nth10n">
<meta name="keywords" content="z3nth10n, dev">
<link rel="canonical" href="/privacy-policy">
<title>{ z3nth10n } | Privacy Policy</title>
<!-- Bootstrap Core CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- Custom CSS -->
<link href="/css/responsive-align.css" rel="stylesheet">
<link href="/css/keyframes.css" rel="stylesheet">
<link href="/css/custom.css" rel="stylesheet">
<link href="/css/grayscale.css" rel="stylesheet">
<!-- Custom Fonts -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link href="//fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link href="//fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="/css/rrssb.css" />
<!--- GLIDE -->
<!-- Required Core stylesheet -->
<link rel="stylesheet" href="/css/glide.core.min.css">
<!-- Optional Theme stylesheet -->
<link rel="stylesheet" href="/css/glide.theme.min.css">
<link rel="stylesheet" href="/css/glide.theme-ext.css">
<!--- Google Adsense -->
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-1490601618964659",
enable_page_level_ads: true
});
</script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="shortcut icon" type="image/x-icon" href="/img/favicon.ico">
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.css" />
<script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script>
<script>
window.addEventListener("load", function(){
window.cookieconsent.initialise({
"palette": {
"popup": {
"background": "#424242"
},
"button": {
"background": "#2a7ae2"
}
},
"content": {
"message": "This website uses cookies to ensure you get the best experience on our website.",
"dismiss": "Got it!",
"link": "Learn more",
"href": "/privacy-policy"
}
})});
</script>
<!-- iOS Web App mode -->
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="apple-touch-icon" sizes="36x36" href="/img/web-app/icon-36p.png">
<link rel="apple-touch-icon" sizes="48x48" href="/img/web-app/icon-48p.png">
<link rel="apple-touch-icon" sizes="72x72" href="/img/web-app/icon-72p.png">
<link rel="apple-touch-icon" sizes="96x96" href="/img/web-app/icon-96p.png">
<link rel="apple-touch-icon" sizes="144x144" href="/img/web-app/icon-144p.png">
<link rel="apple-touch-icon" sizes="192x192" href="/img/web-app/icon-192p.png">
<!-- Android Web App mode -->
<link rel="manifest" href="/manifest.json">
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#2f1f1f">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#2f1f1f">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="#2f1f1f">
<!-- Syntax highlight in post pages -->
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.2/styles/monokai_sublime.min.css">
</head>
<!-- HEAD End -->
<body>
<!-- Javascript Start -->
<!-- jQuery -->
<script src="//code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<!--- <script src="//cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script> -->
<!-- Plugin SlabText -->
<script src="/js/plugins/jquery.fittext.min.js"></script>
<!-- Markdownify for JS -->
<script src="//cdnjs.cloudflare.com/ajax/libs/showdown/1.9.0/showdown.min.js"></script>
<!--- JQuery Cookies -->
<script src="//cdn.jsdelivr.net/npm/js-cookie@2/src/js.cookie.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js"></script>
<!--- LINQ for JS -->
<script src="/js/plugins/linq.min.js"></script>
<!--- Liquid for JS -->
<script src="https://unpkg.com/[email protected]/dist/liquid.min.js"></script>
<!--- Linkify -->
<script src="/js/plugins/linkify.min.js"></script>
<script src="/js/plugins/linkify-jquery.min.js"></script>
<!--- Anchorify -->
<script src="/js/plugins/anchorify.min.js"></script>
<!--- Glide -->
<script src="/js/plugins/glide.min.js"></script>
<!--- All together -->
<script>
$(document).ready(function() {
var post = $("#post .col-md-10");
if(post.length > 0)
{
post.linkify({
target: "_blank"
});
post.anchorify();
}
var assetStoreProjects = parseLiquid('{"id"=>"getassetpreview", "title"=>"GetAssetPreview", "url"=>"", "description"=>"“GetAssetPreview in UnityEngine” will provide you a method to create previews for your GameObjects in-game.", "blog-link"=>"", "price"=>"7,5$", "stage"=>"published", "art-stage"=>"artwork"}{"id"=>"uzlib.lite", "title"=>"uzLib.Lite", "url"=>"", "description"=>"The Lite version of my paid uzLib (Unity3D) API used as a dependency of my open-source repos.", "blog-link"=>"", "price"=>"Free", "stage"=>"published", "art-stage"=>"artwork"}{"id"=>"uzsurfacemapper", "title"=>"uzSurfaceMapper", "url"=>"", "description"=>"uzSurfaceMapper is an asset that implements a system that reads “specific format” texture maps and converts it on a 3D map.", "blog-link"=>"", "price"=>"Unknown", "stage"=>"development", "art-stage"=>"no-artwork"}{"id"=>"uzsourcetoolkit", "title"=>"uzSourceToolkit", "url"=>"", "description"=>"uzSourceToolkit is an asset that implements a set of tools to interact with Source’s (company) games. This implements a system to read textures, models, maps, sounds, and import into a Unity3D scene. (This only works if you have a legal copy of the games)", "blog-link"=>"", "price"=>"Unknown", "stage"=>"development", "art-stage"=>"no-artwork"}{"id"=>"uzcraft", "title"=>"uzCraft", "url"=>"", "description"=>"uzCraft is an asset that aims to import Minecraft worlds into Unity3D and export them to 3D model formats (like FBX or OBJ).", "blog-link"=>"", "price"=>"Unknown", "stage"=>"development", "art-stage"=>"no-artwork"}{"id"=>"uzbuildingsystem", "title"=>"uzBuildingSystem", "url"=>"", "description"=>"uzBuildingSystem is an asset that implements a way to build structures easily.", "blog-link"=>"", "price"=>"Unknown", "stage"=>"development", "art-stage"=>"no-artwork"}{"id"=>"uzproceduralcitygen", "title"=>"uzProceduralCityGen", "url"=>"", "description"=>"uzProceduralCityGen is an asset that implements a system to build / generate procedural cities without effort.", "blog-link"=>"", "price"=>"Unknown", "stage"=>"development", "art-stage"=>"no-artwork"}{"id"=>"uzlib", "title"=>"uzLib", "url"=>"", "description"=>"???", "blog-link"=>"", "price"=>"Unknown", "stage"=>"development", "art-stage"=>"no-artwork"}'),
items = 0;
// console.log(assetStoreProjects);
for(var elIndex in assetStoreProjects)
{
var element = assetStoreProjects[elIndex];
appendSlide(element, items);
++items;
}
var glide = new Glide('.glide', {
type: 'carousel',
perView: 4,
focusAt: 'center',
autoplay: 10000,
breakpoints: {
800: {
perView: 2
},
480: {
perView: 1
}
}
});
glide.mount();
});
function attachPopup(popupName) {
// if no cookie
if (getCookie(popupName) != "true") {
var popup = $("." + popupName);
popup.show();
var close = $("<div>");
close.addClass("close");
close.text("X");
close.click(function () {
$("." + popupName).slideUp("slow");
// set the cookie for a year
setCookie(popupName, "true", 365);
});
popup.append(close);
}
}
function appendSlide(el, index) {
$(".product-slider").append(appendProduct(el, index));
$(".product-bullets").append($('<button class="slider__bullet glide__bullet" data-glide-dir="='+index+'"></button>'));
}
function appendProduct(el, index) {
var li = $('<li class="slider__frame glide__slide product"></li>');
var imgUrl = el["art-stage"] == "no-artwork"
? "img/assets/unknown.png"
: 'https://raw.githubusercontent.com/uta-org/artwork/master/asset-store/products/'+el.id+'/small.png';
li.append($("<p class='image'></p>").append($('<img src="'+imgUrl+'" alt="">')));
li.append($("<p class='name'>").text(el.title));
li.append($("<p class='description'>").text(el.description));
li.append($("<p>").text(el.price));
li.append($("<p class='text-center'>").append($("<button>").addClass("btn btn-primary").text("See product"))); // TODO: Implement a href
return li;
}
function setCookie(name,value,days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days*24*60*60*1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + (value || "") + expires + "; path=/";
}
function getCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
document.cookie = name+'=; Max-Age=-99999999;';
}
$(window).on('load', function() {
// executes when complete page is fully loaded, including all frames, objects and images
attachPopup("popup-dserver");
});
</script>
<!--- Disqus Count -->
<script type="text/javascript">
$(document).ready(function () {
var disqusPublicKey = "lseJUNTSxmq0VGKjFtGjYygE0z3Q3DIrYfZuBQy7Gl0Anm8wrMan8oWAe2GJGwyY";
var disqusShortname = "z3nth10n"; // Replace with your own shortname
var urlArray = [];
$('.count-comments').each(function () {
var url = $(this).data('disqus-url');
urlArray.push('link:' + url);
});
var dataObj = { api_key: disqusPublicKey, forum : disqusShortname, thread : urlArray };
/*console.log(urlArray);
console.log('http://z3nth10n.net');
console.log(unescape("https://disqus.com/api/3.0/threads/set.jsonp?" + $.param(dataObj)));*/
$.ajax({
type: 'GET',
url: "https://disqus.com/api/3.0/threads/set.jsonp",
data: dataObj,
cache: false,
dataType: 'jsonp',
success: function (result) {
for (var i in result.response) {
var countText = "Comments",
count = result.response[i].posts;
if (count == 1)
countText = "Comment";
$('span[data-disqus-url="' + result.response[i].link + '"]').html(count + " " + countText);
}
}
});
});
</script>
<!--- Theme Changer -->
<script src="/js/theme-changer.js"></script>
<!-- Lang Utils -->
<script>
function getLangArr() {
var arr = [
"en",
"es",
];
return arr;
}
function redirectLangIfNeed() {
// Set lang url
var curLang = Cookies.get("lang");
if(curLang && !Enumerable.from(window.location.href.split("/")).any(p => p == curLang)) {
if(curLang == "en" && getLocationLang().count() == 0)
return;
doLangDirect(curLang);
}
}
function doLangDirect(lang) {
if(lang == "")
lang = "en";
var url = window.location.protocol + "//" + window.location.host + "/" + lang + "/" + getLesserLangUrl();
// console.log(url);
window.location.href = url;
}
function getLesserLangUrl() {
var langs = getLocationLang(),
curLang = "";
if(langs.count() >= 1)
curLang = langs.first() + "/";
return window.location.href.replace(window.location.protocol + "//" + window.location.host + "/" + curLang, "");
}
function getLocationLang() {
return Enumerable.from(window.location.href.split("/")).where(p => getLangArr().includes(p));
}
</script>
<!--- Only Index Scripts -->
<!-- Custom Theme JavaScript -->
<!--* Start Bootstrap - Grayscale Bootstrap Theme (http://startbootstrap.com)
* Code licensed under the Apache License v2.0.
* For details, see http://www.apache.org/licenses/LICENSE-2.0.-->
<script>
function toggleNavCollapse() {
50 < $(".navbar").offset().top ? $(".navbar-fixed-top").addClass("top-nav-collapse") : $(".navbar-fixed-top").removeClass("top-nav-collapse");
}
$(document).ready(toggleNavCollapse);
$(window).scroll(toggleNavCollapse);
$(function() {
$("a.page-scroll").bind("click", function(b) {
var a = $(this);
$("html, body").stop().animate({
scrollTop: $(a.attr("href")).offset().top - 50
}, 1500, "easeInOutExpo", function() {
a.blur()
});
b.preventDefault()
})
});
$(".navbar-collapse ul li a").click(function() {
$(".navbar-toggle:visible").click()
});
</script>
<!--- Custom scripts out of index -->
<script>
String.prototype.replaceAll = String.prototype.replaceAll || function(string, replaced) {
return this.replace(new RegExp(string, 'g'), replaced);
};
function _parseLiquid(str) {
str = str.replaceAll("=>", ":").replaceAll("}", "},").replaceAll("},,", "},");
str = "[" + str.substr(0, str.length - 1) + "]";
return str;
}
function parseLiquid(str) {
str = str.replaceAll("=>", ":").replaceAll("}", "},");
str = "[" + str.substr(0, str.length - 1) + "]";
return JSON.parse(str);
}
$(document).ready(function() {
redirectLangIfNeed();
$(".language-selection .toggle").click(function() { $(".lang-select").slideToggle(500); });
var timelineJson = parseLiquid('{"image"=>"/img/timeline/high-school.png", "date"=>"February 2019", "description"=>"I started at high school", "url"=>""}{"image"=>"/img/timeline/job-finish.png", "date"=>"December 2018", "description"=>"I finished my professional development course", "url"=>""}{"image"=>"/img/timeline/caja.jpg", "date"=>"November 2016", "description"=>"I bought my second computer (my current one)!", "url"=>""}{"image"=>"/img/timeline/studying.png", "date"=>"September 2016", "description"=>"I started studying my professional development course", "url"=>""}{"image"=>"/img/timeline/graduated.png", "date"=>"June 2016", "description"=>"I finished at school and I created my first Unity3D team (and our first paid assets were published)", "url"=>""}{"image"=>"/img/timeline/domain.png", "date"=>"May 2016", "description"=>"I bought my first domain && used Cloudflare for first time", "url"=>""}{"image"=>"/img/timeline/git.png", "date"=>"May 2016 - Today", "description"=>"Since here I had been using Github (with Git) && Gitlab", "url"=>""}{"image"=>"/img/timeline/java.png", "date"=>"August 2015", "description"=>"I wrote my first Java code && MC plugins for Bukkit", "url"=>"https://github.com/VintageDev-Nukes/SykoCode"}{"image"=>"/img/timeline/minecraft.png", "date"=>"December 2014 - September 2015", "description"=>"We formed a team to build a MC server!", "url"=>""}{"image"=>"/img/timeline/procedural.jpg", "date"=>"July 2014", "description"=>"I tried to create a prodecural terrain generation system (w/ Perlin Noise) in Unity3D", "url"=>""}{"image"=>"/img/timeline/unity3d.png", "date"=>"November 2013", "description"=>"I started with Unity3D (I switched into C#)", "url"=>""}{"image"=>"/img/timeline/default.png", "date"=>"July 2013", "description"=>"I joined Github!", "url"=>""}{"image"=>"/img/timeline/stackoverflow.png", "date"=>"July 2013", "description"=>"I joined Stackoverflow!", "url"=>"https://stackoverflow.com/users/2466790/seazoux"}{"image"=>"/img/timeline/actionscript.png", "date"=>"May 2013", "description"=>"I tried to learn ActionScript (but I abandoned the idea)", "url"=>"https://www.youtube.com/watch?v=t7Sh4BQlzXc"}{"image"=>"/img/timeline/c++.png", "date"=>"April 2013", "description"=>"I tried to learn C && C++ (and my first minigames in SMFL)!", "url"=>"https://github.com/VintageDev-Nukes/SelfLearningCpp"}{"image"=>"/img/timeline/smf.png", "date"=>"January 2013", "description"=>"I started using SMF", "url"=>""}{"image"=>"/img/timeline/php-sql.png", "date"=>"November 2012", "description"=>"I started learning PHP && MySQL!", "url"=>"https://github.com/VintageDev-Nukes/InfiJuegos"}{"image"=>"/img/timeline/redlaptop.jpg", "date"=>"September 2012", "description"=>"I bought my second laptop!", "url"=>""}{"image"=>"/img/timeline/vbnet.png", "date"=>"July 2012 - November 2013", "description"=>"During this peiod I had been coding in VB.NET", "url"=>"https://github.com/VintageDev-Nukes/SEO-Calculator"}{"image"=>"/img/timeline/vbscript.png", "date"=>"June 2012", "description"=>"I started writing my first VBScript scripts", "url"=>"https://github.com/VintageDev-Nukes/VBS-Launcher"}{"image"=>"/img/timeline/msdos.jpg", "date"=>"May 2012", "description"=>"I started writing my first Batch scripts", "url"=>"https://github.com/VintageDev-Nukes/BATCH-Launcher"}{"image"=>"/img/timeline/html-js-css.png", "date"=>"June 2011", "description"=>"I started writing my first HTML, JS and CSS snippets", "url"=>"https://github.com/VintageDev-Nukes/Spirate-n-Miscs"}{"image"=>"/img/timeline/youtube.png", "date"=>"June 2011", "description"=>"I joined YouTube (as a regular user) (my first account was AlvaroAlbox registered in February 2010)", "url"=>"https://socialblade.com/youtube/user/ikillnukes4evertmb"}{"image"=>"/img/timeline/ehn.png", "date"=>"May 2011", "description"=>"I joined ElHacker.Net", "url"=>"https://foro.elhacker.net/profiles/seazoux-u419740.html"}{"image"=>"/img/timeline/maxiuniverse.png", "date"=>"August 2010", "description"=>"I discovered Spirate (and how to use hostings), also, I recreated MaxiUniverse!", "url"=>"https://web.archive.org/web/20190221220205/http://maxiuniverse.activo.mx/"}{"image"=>"/img/timeline/spirate.jpg", "date"=>"April 2010 - June 2010", "description"=>"I created my first forum (MaxiUniverse)", "url"=>"https://web.archive.org/web/20100524184651/http://maxiuniverse.superforo.net/"}{"image"=>"/img/timeline/taringa.png", "date"=>"Q3 2009", "description"=>"I joined Taringa!", "url"=>""}{"image"=>"/img/timeline/freerider2.png", "date"=>"Mid 2009", "description"=>"I started playing Free Rider 2!", "url"=>""}{"image"=>"/img/timeline/foroactivo.png", "date"=>"September 2008", "description"=>"I discovered Foroactivo!", "url"=>""}{"image"=>"/img/timeline/old-laptop.png", "date"=>"June 2008", "description"=>"My uncles bought me my first laptop then I could start using Internet as a regular user && tried to learn VB6!", "url"=>""}{"image"=>"/img/timeline/nintendo.png", "date"=>"July 2007", "description"=>"I had my first Nintendo DS!", "url"=>""}{"image"=>"/img/timeline/old-computer.jpg", "date"=>"April 2003", "description"=>"My parents bought me my first computer!", "url"=>""}{"image"=>"/img/timeline/born.png", "date"=>"July 1998", "description"=>"I was born!", "url"=>""}'),
converter = new showdown.Converter(),
items = 0;
for(var elIndex in timelineJson) {
var element = timelineJson[elIndex];
$(".timeline.expandable").append(appendItem(element, items));
++items;
}
var shownItems = 0,
staticHeight = $(window).width() > 576 ? 100 : 50;
readMoreItems(true);
$(".timeline.only-button button").on('click', function() { readMoreItems(false); });
function readMoreItems(firstTime) {
var curHeight = $(".timeline.expandable").height() - (firstTime ? staticHeight : 0),
sumHeight = 0,
count = 0,
remItems = items - shownItems;
$(".timeline.expandable li").each(function(i) {
if(i < shownItems)
return true;
var height = $(this).outerHeight(true);
sumHeight += height;
if((i + 1) >= shownItems + 5)
return false;
});
shownItems += (remItems >= 5 ? 5 : remItems);
var plusHeight = 0;
if(items - shownItems <= 0) {
$(".timeline.only-button button").hide();
plusHeight = staticHeight;
}
$(".timeline.expandable").height((curHeight + sumHeight + plusHeight) + "px");
}
function appendItem(el, index) {
var li = $("<li " + (index % 2 != 0 ? 'class="timeline-inverted"' : '') + "></li>");
li.append($('<div class="timeline-image"></div>').append('<img class="img-circle img-responsive" src="' + el.image + '" alt="">'));
var panel = $('<div class="timeline-panel"></div>');
panel.append($('<div class="timeline-heading"></div>').append($("<h4></h4>").text(el.date)));
panel.append($('<div class="timeline-body"></div>').html(converter.makeHtml(el.description)));
if(el.url != "")
panel.append($('<div class="timeline-refurl"></div>').append($('<a href="' + el.url + '"></a>').text("See reference...")));
li.append(panel);
return li;
}
// Cookie set
$(".lang-select span").on('click', function(e) {
e.preventDefault();
var dataLang = $(this).data('lang');
Cookies.set("lang", dataLang);
doLangDirect(dataLang);
});
// Draggable theme buttons
if($(window).width() > 992) {
const slider = document.querySelector('.themes');
const speed = 1;
let isDown = false;
let startX;
let scrollLeft;
slider.addEventListener('mousedown', (e) => {
isDown = true;
slider.classList.add('active');
startX = e.pageX - slider.offsetLeft;
scrollLeft = slider.scrollLeft;
});
slider.addEventListener('mouseleave', () => {
isDown = false;
slider.classList.remove('active');
});
slider.addEventListener('mouseup', () => {
isDown = false;
slider.classList.remove('active');
});
slider.addEventListener('mousemove', (e) => {
if(!isDown) return;
e.preventDefault();
const x = e.pageX - slider.offsetLeft;
const walk = (x - startX) * speed; //scroll-fast
slider.scrollLeft = scrollLeft - walk;
// console.log(walk);
});
}
});
</script>
<!-- Syntax highlight in post pages-->
<script>
function loadScript(url) {
var script = document.createElement('script');
document.head.appendChild(script);
script.type = 'text/javascript';
script.src = url;
return script;
}
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.13.1/highlight.min.js"></script>
<script>
$(document).ready(function() {
$('pre code').each(function(i, block) {
hljs.highlightBlock(block);
});
});
</script>
<!-- Google Tracking Id Start -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-136205459-2', 'auto');
ga('send', 'pageview');
</script>
<!-- Google Tracking Id End -->
<!-- Disqus -->
<script>
function addTohistory() {
if (!window.location.host.startsWith("127.0.0.1")) {
history.pushState({}, 'Privacy Policy', 'http://z3nth10n.net/privacy-policy');
}
}
</script>
<!-- Gesture Navigation / Swipe Instruction Start -->
<!-- Gesture Navigation / Swipe Instruction End -->
<!-- Javascript End -->
<!-- Navigation Start -->
<nav class="navbar navbar-custom navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
<i class="fas fa-bars"></i>
</button>
<a class="navbar-brand" href="/">
<div>
<img src="/img/black-lab-glass.ico" alt="">
{ z3nth10n }
</div>
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<ul class="nav navbar-nav">
<li class="language-selection">
<button type="button" class="toggle visible">
<span class="sm-invisible">Language</span>
<i class="fas fa-language sm-visible"></i>
</button>
<ul class="lang-select collapse">
<li>
<span data-lang="en">
<img class="emoji" title=":us:" alt=":us:" src="https://github.githubassets.com/images/icons/emoji/unicode/emoji/unicode/1f1fa-1f1f8.png" height="20" width="20"> English
</span>
</li>
<li>
<span data-lang="es">
<img class="emoji" title=":es:" alt=":es:" src="https://github.githubassets.com/images/icons/emoji/unicode/emoji/unicode/1f1ea-1f1f8.png" height="20" width="20"> Español
</span>
</li>
</ul>
</li>
<!-- Blog, Post, Tag and Error pages -->
<!-- TODO -->
</ul>
</div>
</div>
</nav>
<!-- Navigation End -->
<h1 class="brand-heading"> </h1>
<h1 class="brand-heading"> </h1>
<section class="container content-section text-center">
<div class="row">
<div class="col-md-10 col-md-offset-1 col-xs-10 col-xs-offset-1">
<h1><strong>Privacy Policy</strong></h1>
<h1 id="privacy-policy-for-z3nth10n">Privacy Policy for z3nth10n</h1>
<p>At z3nth10n, accessible from https://z3nth10n.github.io/, one of our main priorities is the privacy of our visitors. This Privacy Policy document contains types of information that is collected and recorded by z3nth10n and how we use it.</p>
<p>If you have additional questions or require more information about our Privacy Policy, do not hesitate to contact us through email at [email protected]</p>
<h2 id="log-files">Log Files</h2>
<p>z3nth10n follows a standard procedure of using log files. These files log visitors when they visit websites. All hosting companies do this and a part of hosting services’ analytics. The information collected by log files include internet protocol (IP) addresses, browser type, Internet Service Provider (ISP), date and time stamp, referring/exit pages, and possibly the number of clicks. These are not linked to any information that is personally identifiable. The purpose of the information is for analyzing trends, administering the site, tracking users’ movement on the website, and gathering demographic information.</p>
<h2 id="cookies-and-web-beacons">Cookies and Web Beacons</h2>
<p>Like any other website, z3nth10n uses ‘cookies’. These cookies are used to store information including visitors’ preferences, and the pages on the website that the visitor accessed or visited. The information is used to optimize the users’ experience by customizing our web page content based on visitors’ browser type and/or other information.</p>
<h2 id="google-doubleclick-dart-cookie">Google DoubleClick DART Cookie</h2>
<p>Google is one of a third-party vendor on our site. It also uses cookies, known as DART cookies, to serve ads to our site visitors based upon their visit to www.website.com and other sites on the internet. However, visitors may choose to decline the use of DART cookies by visiting the Google ad and content network Privacy Policy at the following URL – <a href="https://policies.google.com/technologies/ads">https://policies.google.com/technologies/ads</a></p>
<h2 id="privacy-policies">Privacy Policies</h2>
<p>You may consult this list to find the Privacy Policy for each of the advertising partners of z3nth10n. Our Privacy Policy was created with the help of the <a href="https://privacypolicygenerator.info">GDPR Privacy Policy Generator</a> and the <a href="https://termsandconditionstemplate.net">Terms and Conditions Template</a>.</p>
<p>Third-party ad servers or ad networks uses technologies like cookies, JavaScript, or Web Beacons that are used in their respective advertisements and links that appear on z3nth10n, which are sent directly to users’ browser. They automatically receive your IP address when this occurs. These technologies are used to measure the effectiveness of their advertising campaigns and/or to personalize the advertising content that you see on websites that you visit.</p>
<p>Note that z3nth10n has no access to or control over these cookies that are used by third-party advertisers.</p>
<h2 id="third-pary-privacy-policies">Third Pary Privacy Policies</h2>
<p>z3nth10n’s Privacy Policy does not apply to other advertisers or websites. Thus, we are advising you to consult the respective Privacy Policies of these third-party ad servers for more detailed information. It may include their practices and instructions about how to opt-out of certain options. You may find a complete list of these Privacy Policies and their links here: Privacy Policy Links.</p>
<p>You can choose to disable cookies through your individual browser options. To know more detailed information about cookie management with specific web browsers, it can be found at the browsers’ respective websites. What Are Cookies?</p>
<h2 id="childrens-information">Children’s Information</h2>
<p>Another part of our priority is adding protection for children while using the internet. We encourage parents and guardians to observe, participate in, and/or monitor and guide their online activity.</p>
<p>z3nth10n does not knowingly collect any Personal Identifiable Information from children under the age of 13. If you think that your child provided this kind of information on our website, we strongly encourage you to contact us immediately and we will do our best efforts to promptly remove such information from our records.</p>
<h2 id="online-privacy-policy-only">Online Privacy Policy Only</h2>
<p>This Privacy Policy applies only to our online activities and is valid for visitors to our website with regards to the information that they shared and/or collect in z3nth10n. This policy is not applicable to any information collected offline or via channels other than this website.</p>
<h2 id="consent">Consent</h2>
<p>By using our website, you hereby consent to our Privacy Policy and agree to its Terms and Conditions.</p>
</div>
</div>
</section>
<!-- Footer Start -->
<footer>
<!-- Social Buttons Start -->
<ul class="list-inline social-buttons ">
<li>
<a href="https://facebook.com/Z3nth10n-344166426434567" target="_blank"><i class=" fab fa-facebook fa-fw"></i></a>
</li>
<li>
<a href="https://twitter.com/z3nth10n" target="_blank"><i class=" fab fa-twitter fa-fw"></i></a>
</li>
<li>
<a href="https://github.com/z3nth10n" target="_blank"><i class=" fab fa-github fa-fw"></i></a>
</li>
<li>
<a href="https://instagram.com/z3nth10n" target="_blank"><i class=" fab fa-instagram fa-fw"></i></a>
</li>
<li>
<a href="https://discord.com/users/208235269764284417" target="_blank"><i class=" fab fa-discord fa-fw"></i></a>
</li>
<li>
<a href="https://t.me/z3nth10n" target="_blank"><i class=" fab fa-telegram fa-fw"></i></a>
</li>
<li>
<a href="/feed.xml" target="_blank"><i class=" fas fa-rss fa-fw"></i></a>
</li>
</ul>
<!-- Social Buttons End -->
<p><br><br></p>
<div class="container text-center">
<p>Copyright © z3nth10n 2022</p>
</div>
</footer>
<!-- Footer End -->
</body>
</html>
<!-- Base Layout End -->