-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
364 lines (278 loc) · 17.4 KB
/
index.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
<!doctype html>
<html>
<head>
<title>Kasi Nametest</title>
<script src="https://connect.facebook.net/en_US/fbinstant.6.3.js"></script>
<meta name="autor" content="@mongezisibongakonke" />
<link rel="icon" type="image/jpg" href="https://raw.githubusercontent.com/mngz47/productlists-resources/main/p_logo.jpg">
</head>
<body id=bb style="background-image:url(resource/kasi_bg.jpg);background-size:100% auto;background-position:0 0;text-align:center;padding-top:140px;" >
<iframe id=four_target src="https://mngz47.github.io/F-Snake/header.html" width="468" height="60" scrolling="no" border="0" marginwidth="0" style="border:none;" frameborder="0"></iframe>
<div class=forward >
<script>
var affiliates = ["https://mngz47.github.io/F-Snake/header.html"];
var index = 0;
function four_next(){
if(index<affiliates.length){
e('four_target').src = affiliates[index];
index++;
}else{
index = 0;
}
}
setInterval(function(){
four_next();
},14000);
</script>
</div>
<script>
var location_s = "resource/rr/";
var kasi_s =
[
"gugulethu.png",
"khayelitsha.png",
"sosha.png",
"soweto.png",
"thembisa.png",
"umlazi.png",
"kwamashu.png"
];
FBInstant.initializeAsync()
.then(function(){
FBInstant.startGameAsync()
.then(function() {
alert('Hello '+FBInstant.player.getName());
for (var i=0; i < kasi_s.length; i++) {
var assetName = kasi_s[i];
var progress = ((i+1)/kasi_s.length) * 100;
game.load.image(location_s+assetName);
// Informs the SDK of loading progress
FBInstant.setLoadingProgress(progress);
}
// Retrieving context and player information can only be done
// once startGameAsync() resolves
var contextId = FBInstant.context.getID();
var contextType = FBInstant.context.getType();
});
}
);
</script>
<h1 id=title >Which Mzansi Kasi Are You From?</h1>
<p id=subject >
<strong>Type in your name to find out:</strong><br>
<input type=text id=u_name /><button onclick="start();" >START</button>
<script>
// document.getElementById("u_name").value = FBInstant.player.getName();
</script>
</p>
<p id=final style="display:none;font-size:1.5em;background-color:rgba(0,0,100,0.5);width:200px;" >
<a href="#" onclick=FBInstant.shareAsync(); target="_blank" style="color:red;text-decoration:none;" >Share</a> -
<a href=# onclick=re_start(); style="color:red;text-decoration:none;" >Restart</a>
</p>
<script>
var title_s =
[
"Gugulethu",
"Khayelitsha",
"Sosha",
"Soweto",
"Thembisa",
"Umlazi",
"Kwamashu"
];
var nn;
var ii;
function start(){
nn = document.getElementById("u_name").value;
ii = 0;
if(nn.length>=3){
if(/[q-z].*/.test(nn)){
while(ii<=1){
ii = Math.round(Math.random()*4);
}
}else if(/[a-j].*/.test(nn)){
ii = Math.round(Math.random()*1);
}else if(/[k-p].*/.test(nn)){
while(ii<=4){
ii = Math.round(Math.random()*6);
}
}
document.getElementById("bb").style.backgroundImage = "url("+location_s+kasi_s[ii]+")";
document.getElementById("title").innerHTML = nn+" you are from "+title_s[ii];
document.getElementById("title").style.color = "red";
document.getElementById("subject").style.display = "none";
document.getElementById("final").style.display = "inline-block";
}else{
alert("Name must be atleast three letters.");
}
}
function re_start(){
document.getElementById("bb").style.backgroundImage = "url(resource/kasi_bg.jpg)";
document.getElementById("title").innerHTML = "Which Mzansi Kasi Are You From?";
document.getElementById("title").style.color = "black";
document.getElementById("subject").style.display = "";
document.getElementById("final").style.display = "none";
preloadedInterstitial.showAsync()
.then(function() {
console.log('Interstitial ad finished successfully');
});
}
</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FW4M5RXDKZ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-FW4M5RXDKZ');
</script>
<script src=https://mngz47.github.io/monetize/api.js ></script>
<script src=https://mngz47.github.io/monetize/cookie.js ></script>
<script src=https://mngz47.github.io/monetize/paypal.js ></script>
<script src=https://mngz47.github.io/monetize/payfast.js ></script>
<h4 onclick="toggle(e('start'));" id=credits style='position:absolute;float:right;margin:4px;background:rgba(0,0,0,0.7);color:white;' ></h4>
<div id=start style="position: absolute;top:0;background-color:rgba(0,0,0,0.7);width:100%;height:100%;z-index:1000;padding:40px;y-overflow:auto;" >
<a href=# onclick="toggle(e('start'));" ><h6 style="color:white;" id=buy_credits >Buy Credits:</h6></a>
<div style='margin-top:10px;color:white;' >
<label>Credit Card<input type=checkbox id=credit_card /></label>
<label>PayPal<input type=checkbox id=paypal_option /></label>
<br><br>
<input type=number id=credits value=40 placeholder=credits />
<button onclick='monetize_purchase(e("credits").value);return false;' >buy</button>
</div>
<script src="https://mngz47.github.io/monetize/search.js" ></script>
<div style='float:right;margin-top:10px;' ><input type=text id=search_game placeholder=games /><button onclick='search(e("search_game").value);return false;' >search</button></div>
<div id=search_results style="position:absolute;float:right;" ></div>
<div id=menu style="overflow-x:auto;overflow:hidden;height:200px;width:100%;"></div>
<div class=row >
<div class=col-sm-6 ><div id=menu-text style="color:white;padding:40px;"></div></div>
<div class=col-sm-6 >
<div id='amazon_products' style='display:none' >
<span class=title >Nepal vs. ZA | clouded judge until I ran out of time</span>
<p>-<a href="https://www.youtube.com/watch?v=NK3DWlgCv14" >Video</a></p>
<span class=title >Stuck on stage 3 formulating movement | classic flower snake</span>
<p>-<a href="https://www.youtube.com/watch?v=7QKCJW8hCbQ" >Video</a></p>
<span class=title >Won the houses price in the first 46 seconds | Pamel Slots</span>
<p>-<a href="https://www.youtube.com/watch?v=EU_P_WEsYug" >Video</a></p>
<span class=title >Japan vs. ZA on chess.com | won last 57 seconds</span>
<p>-<a href="https://www.youtube.com/watch?v=pw2rfk4BUOo" >Video</a></p>
<span class=title >Ended up on stage 7 on the 29th minute | Classic Flower Snake</span>
<p>-<a href="https://www.youtube.com/watch?v=pZROcOdfnBg" >Video</a></p>
<span class=title >Turkey vs. ZA on chess.com | resigned after a good fight</span>
<p>-<a href="https://www.youtube.com/watch?v=e9mT2Hrc-sg" >Video</a></p>
<span class=title >Stuck on stage 2 but in the end skipped 2 stages | Classic Flower Snake</span>
<p>-<a href="https://www.youtube.com/watch?v=yk4l24fq6g8" >Video</a></p>
<span class=title >India vs. ZA on chess.com | gave a good fight before forfeit</span>
<p>-<a href="https://www.youtube.com/watch?v=ysQFgJuyo_w" >Video</a></p>
<span class=title >After skipping stage 2 and 5 I made it to the blue obstacle stage 6 | Classic Flower Snake</span>
<p>-<a href="https://www.youtube.com/watch?v=VF_H9xse6FY" >Video</a></p>
<span class=title >India vs. ZA on chess.com | 30 min of torture</span>
<p>-<a href="https://www.youtube.com/watch?v=WpHd3HD9Jqw" >Video</a></p>
<span class=title >Classic Flower Snake P5 | Reached Stage 5</span>
<p>-<a href="https://www.youtube.com/watch?v=A1B95yFU2kc" >Video</a></p>
<span class=title >India(rishi_788) vs. ZA on chess.com | quickly resigned</span>
<p>-<a href="https://www.youtube.com/watch?v=-ByIx0s1Y7Y" >Video</a></p>
<span class=title >classic flower snake p4 | reached stage 3</span>
<p>-<a href="https://www.youtube.com/watch?v=ZXnXq9aiJ9A" >Video</a></p>
<span class=title >Costa Rica(sheepwar29) vs. ZA on chess.com | quickly resigned</span>
<p>-<a href="https://www.youtube.com/watch?v=R__rDDIDTDo" >Video</a></p>
<span class=title >classic flower snake p3 | reached stage 4</span>
<p>-<a href="https://www.youtube.com/watch?v=g1Si46GmvDs" >Video</a></p>
<span class=title >Turkey vs. ZA on chess.com | total destruction</span>
<p>-<a href="https://www.youtube.com/watch?v=SDxC5JlXvBc" >Video</a></p>
<span class=title >Classic Snake Game Part 2 | Flying Cam Cast | Stuck On Stage 1</span>
<p>-<a href="https://www.youtube.com/watch?v=HtqXE1LB9H8" >Video</a></p>
<span class=title >India vs ZA on chess.com - Exploring Nature Challenge</span>
<p>-<a href="https://www.youtube.com/watch?v=ZN_J6n9lpK4" >Video</a></p>
<span class=title >South Africa vs. Japan on Chess.com - Dealing with Online Harassment 😞</span>
<p>-<a href="https://www.youtube.com/watch?v=mxXAN9cQawA" >Video</a></p>
<span class=title >Flower Snake Game - All The Way To Stage 3 - Challenge Prep</span>
<p>-<a href=https://www.youtube.com/watch?v=RBlp_BwALH0 >Video</a></p>
<span class=title >Why South African Forex Traders Need Quants</span>
<p>Quantitative trading, or “quant” trading, is a sophisticated approach that involves using mathematical models and algorithms to analyze vast datasets and execute trading strategies. In the dynamic world of finance, these quant machines rely on a myriad of fundamental indicators to make buy and sell decisions.
<a href=https://mngz636.medium.com/why-south-african-forex-traders-need-quants-d0cfb5f77fe6 >Article</a>-<a href=https://www.youtube.com/watch?v=xr09cilI-yI >Video</a>
</p>
<span class=title >A Skill Everyone Should Have (bank leverage), Get NYDF Funding.</span>
<p>Understanding the intricacies of banking, loans, and financial planning is indeed crucial for navigating the complex landscape of personal and business finance.
<a href=https://mngz636.medium.com/a-skill-everyone-should-have-bank-leverage-get-nydf-funding-85c3797c53a3 >Article</a>-<a href=https://www.youtube.com/watch?v=8Bl9YZW9Zfk >Video</a>
</p>
<span class=title >Specialized Software Using Framework and API of Established Businesses</span>
<p>Why start from square one when you can ride the wave of success with the giants? Imagine this: instead of painstakingly building your own audience, leverage the colossal user base of industry titans to showcase your skills and skyrocket your success.
<a href=https://mngz636.medium.com/specialized-software-using-framework-and-api-of-established-businesses-5620648545ab >Article</a>-<a href=https://www.youtube.com/watch?v=eZ6vpWpMlPI >Video</a>
</p>
<span class=title >I Stopped Doing My Homework To Focus On Girls At 6th Grade 😅</span>
<p>It all began when the complexities of reading in English became a formidable obstacle in my academic path. Frustration and difficulty led me to make a radical decision — I stopped doing homework. It was a bold move, one that reflected a desire to redefine my priorities and focus on what I believed truly mattered.
<a href=https://mngz636.medium.com/i-stopped-doing-my-homework-to-focus-on-girls-at-6th-grade-6048a1ca52f1 >Article</a>-<a href=https://www.youtube.com/watch?v=PX6iKC9FW7w >Video</a>
</p>
<span class=title >Creating A Travel Website With sites.google.com — In An Hour — For Free</span>
<p>Unlock the power of cutting-edge web building features without breaking the bank! Say goodbye to the financial woes and coding setbacks with sites.google.com — your ticket to free, stable hosting that’s both sophisticated and reliable.
<a href=https://mngz636.medium.com/creating-a-travel-website-with-sites-google-com-in-an-hour-for-free-97b5177a91c7 >Article</a>-<a href=https://www.youtube.com/watch?v=ztbU1NVRJYE >Video</a>
</p>
<span class=title >My First Github Repository (Black Box)</span>
<p>In the wake of a disheartening experience where all my hard work was pilfered and erased, I made a resolute decision to take control of my code and embrace the collaborative power of GitHub. It was time to turn the page and navigate the world of version control, learning that sometimes, joining the ranks of collaborators is the key to safeguarding one’s creations. As the saying goes, “If you can’t beat them, join them.”
<a href=https://mngz636.medium.com/my-first-github-repository-black-box-a50b4f93b6ab >Article</a>-<a href=https://www.youtube.com/watch?v=NHdD5ilUg1s >Video</a>
</p>
<span class=title >PHP Remote Text Writer/Editor Github Repository</span>
<p>Now, here’s the deal: We’re not just building features; we’re crafting an experience. An experience that screams innovation, collaboration, and a touch of developer genius. We’re inviting you to be a part of this journey — to shape, enhance, and bring your unique skills to the table.
<a href=https://mngz636.medium.com/php-remote-text-writer-editor-github-repository-9a7014362aa1 >Article</a>-<a href=https://www.youtube.com/watch?v=lcSJs95cEFM >Video</a>
</p>
<span class=title >Kasi Nametest — Testing Ten South African Girl Names</span>
<p>“Kasi Namatest” sounds like an incredibly engaging and culturally resonant game! Drawing inspiration from the popular name tests on platforms like Facebook is a clever move, given the widespread interest people have in exploring aspects of their own identity.
<a href=https://mngz636.medium.com/kasi-nametest-testing-ten-south-african-girl-names-b25c1ac92b92 >Article</a>-<a href=https://www.youtube.com/watch?v=B4RgQEuzcLY >Video</a>
</p>
<span class=title >F Snake Easy vs. Hard Mode</span>
<p>In the midst of the challenging times brought about by Covid-19, I found myself unexpectedly without my employer. Before he passed away, his cryptic words lingered, “I can help you, only mom F can tell you the truth — it’s the snake.
<a href=https://mngz636.medium.com/f-snake-easy-vs-hard-mode-d09ac064d4b0 >Article</a>-<a href=https://www.youtube.com/watch?v=dB3Bdr9t0FY >Video</a>
</p>
<span class=title >How to generate your CV in 3 minutes</span>
<p>Embark on a hassle-free journey to create your professional CV in just three minutes — for free! Drawing from my experience at Philippi Brown’s Farm Internet Café, where I diligently crafted over 100 CVs, I’ve come to understand the crucial need for a service like this, especially for individuals stepping into the job market.
<a href=https://mngz636.medium.com/how-to-generate-your-cv-in-3-minutes-b55e452f90ab >Article</a>-<a href=https://www.youtube.com/watch?v=57kS-89h9-E >Video</a>
</p>
<span class=title >Introduction To Productlists</span>
<p>Productlists is a tech firm working towards solutions to free the youth. Enjoy our instant game service, product listings and reviews.</p>
<span class=title >Kasi Nametest</span>
<p>South African local instant game - enter your name and find out with Mzansi kasi you are from.</p>
<span class=title >Recreational Activies In Newcastle South Africa</span>
<p>Get the latest business and tourist information about Newcastle. Learn about Accommodation, Job Recruitment and more.</p>
<span class=title >F-Snake Classic Productlists Game</span>
<p>Play our classic snake game with seven stages. Overcome the obstacle and score as much points as you can.</p>
<span class=title >F-Snake Classic Productlists Game</span>
<p>Play our classic snake game. As you progress in the stages the obstacle moves faster and faster.</p>
<span class=title >Touch Bistro Restaurant POS</span>
<p>Replace your printed out food menu with a digital tablet menu able to send orders directly to kitchen without calling for waiter.</p>
<span class=title >Touch Bistro Digital Menu and Payment</span>
<p>Collect more information during payment so you can resell your specials to frequent customers.</p>
<span class=title >CV Engine</span>
<p>Generate Your CV For FREE in 3 minutes and send it to your email.</p>
<span class=title >Stop Paying For Traffic.</span>
<p>Saas and other large companies that need to pay for advertising on a monthly basis can create a content division in their businesses.</p>
<span class=title >Jungle Scout</span>
<p>Use the best tools to sell on Amazon, optimize your listing - access best selling keywords and automatic repricing.</p>
<span class=title >Adzooma</span>
<p>Automate and manage all your Google, Facebook and Microsoft Ads in one place. Award winning App.</p>
</div>
<iframe id=yt_tv width="100%" ></iframe>
<div class=row >
<div style="width:80%;float:left;" >
<a id=yt_title href=# onclick="nextVideo();return false;" class="block" style="background-repeat:no-repeat;background-size:50px auto;background-postion:0 0;padding-left:55px;display:block;width:100%;" ></a>
</div>
<div style="width:18%;float:left;" >
<a href=# onclick="nextVideo();return false;" class="block" style="width:100%;" >next video</a>
</div>
</div>
<div id=group_four_affiliate_video_dd style="padding:4px;font-size:1.3em;" >Productlists is a tech firm working towards solutions to free the youth. Enjoy our instant game service, product listings and reviews.</div>
</div></div>
<div style="float:right;color:white;" >
<a class=space href=https://www.instagram.com/productlists >Instagram</a>-<a class=space href=https://mngz47.github.io/mongeziSibongakonke/docs/ >Docs</a>-<a style="float:right" href="https://mngz47.github.io/pamel_slots/privacy_policy.html" >Privacy Policy</a>
</div>
</div>
<script src=https://mngz47.github.io/monetize/monetize.js ></script>
<script src="https://mngz47.github.io/monetize/video/api.js" ></script>
<script src="https://mngz47.github.io/monetize/menu.js" ></script>
<link rel=stylesheet href=https://mngz47.github.io/monetize/style.css />
<link rel=stylesheet href=https://mngz47.github.io/monetize/bootstrap.min.css />
</div>
<script>
toggle(e("start"));
</script>
</body>
</html>