broomop
Members-
Posts
48 -
Joined
-
Last visited
Content Type
Forums
News
20th
EduGeek EDIT Conference
Blogs
Everything posted by broomop
-
check for loopbacks.
-
you could do a iframe also linking it normally just makes it open in the browser (without the layout of your site).
-
Did you read the post above his. the power of this phone and the brand is quality.
-
Xiaomi is the best try to get an older model with the snapdragon processor. This: http://www.xiaomidevice.com/xiaomi-redmi-note-3-pro.html for a similar sized one to the MOTO G4 new phone. Or get the smaller model. Or if you want to just dive into the latest versions but I went for the older one and I am not disappointed.
-
Qualcomm's Snapdragon 835 to support Windows 10 and run Win32 apps!
broomop replied to Arthur's topic in Windows 10
If its emulated it will never be a threat. -
Regional IP and TLD blocking
broomop replied to Duke5A's topic in Internet Related/Filtering/Firewall
you could maybe download a database that contains ips that are malicious instead. -
image the disk before upgrading??
-
For my birthday i bought myself a zx81 i live life like a "real programmer".
- 4,289 replies
-
- assistance
- background
-
(and 2 more)
Tagged with:
-
is a mainframe a code name for "zimmer frames"?
- 4,289 replies
-
- 1
-
-
- assistance
- background
-
(and 2 more)
Tagged with:
-
I have found some issues with Meraki not working right just because i have not tagged them in DEP. Sounds wierd but thats one thing i did when i had issues with DEP and pushing applications.
-
[for sale] i3 4Gb RAM Lenovo Tiny Machines x 32
broomop replied to CamelMan's topic in Classified Adverts
you might want to drop that price a bit. I would say £100 - £150 each at the most. -
4 post VGA splitter for hall ? with ground loop isolation
broomop replied to kennysarmy's topic in Hardware
Yeah this is what we used (2 port) for splitting and it eliminated the issue. -
4 post VGA splitter for hall ? with ground loop isolation
broomop replied to kennysarmy's topic in Hardware
it is normally the power coming from the output of the VGA and it being split that causes loss of power and the flickering. This can be prevented by moving wires around and earthing etc. But it does come back. you could try a splitter if you have one powered by USB see if it makes a difference (don't have to use the second port just see if this little bit of power makes a difference). I am saying this because i have had issues like this when i split screen to projector and not using powered splitters. -
4 post VGA splitter for hall ? with ground loop isolation
broomop replied to kennysarmy's topic in Hardware
depending on the exact situation, you might be able to get off with a cheaper solution. What exactly are you trying to do? -
its related to azure when i did this. same as localzuk says. If your with LGFL thats how they allow it using the Azure rules, with the SIMs ip ranges. You will have to unblock certain ips i believe it never connects locally thats why they use logins such as hotmail and gmail.
-
I also found something else. If you allocate tags ONLY in Meraki main panel and not the DEP Panel it seems to never work right. I tried everything and as soon as i allocated a TAG on the DEP page everything started working better than it did before. Which is madness. Also make sure you click the tag rather than manually typing it of its entirety. This also affects if it works for properly for some reason too. I had issues with applications not installing before i used DEP as well but for some reason this fixed ALL of my issues. Meraki is buggy and causes hours of pain i think the company do it on purpose so that you buy one of their crappy things.
-
I noticed right away when i typed it out.... it was the double quotes. this is what i quickly wrote and tested and i believe it will work. This should work.
-
that would be line 15 i think. Tomorrow morning i will have a mess around and give you the answer. I could only see the brackets part that would be an issue. try removing the actions.job bits too for now. See if you can at least get it to run without failure.
-
you need brackets "if( n > 0 )" try that. where is the syntax error at... maybe it doesnt even like indexof... function printJobHook(inputs, actions) { var n = inputs.job.documentName.indexOf("%20"); if (n > 0) { actions.job.cancel(); actions.log.debug('Job from user "' + inputs.user.username + '" was canceled.'); } }
-
i normally use https://cloudconvert.com/ however, office might be a better option.
-
you can use SIMs teacher application for this.
-
Yes indexof just responds back with a value where its located @ in the text. If i remember correctly. for example hello%20 would be found at number 6. If it finds nothing its -1. If you look up the documentation on JS and the indexof function it will help you out. Yes there are snippets you can use. I would of given you the full code however at the time i was busy. If you want the full code of how it should work just reply back. Thanks.
-
ok, the same happened to me lol its all ok now. Must of been a server issue.
-
printJobHook(inputs, actions) - use this hook. inputs.job.documentName - this gets the document name. Then do something like. var n = inputs.job.documentName.indexOf("%20"); if n > 0 then is detected it... you could then rename or replace the text of the document.
